Forwarded from linkmeup
На бескрайних просторах всея интернета, был замечен подозрительно хороший гайд по DMVPN.
https://drive.google.com/file/d/0BwOGoUP3NhxpOFpjSkowaG5iN0E/view
https://drive.google.com/file/d/0BwOGoUP3NhxpOFpjSkowaG5iN0E/view
Google Docs
DMVPN PPT Study Guide - ABLONGO NETWORKS v2.0.pdf
Forwarded from linkmeup
Так, кто там жаловался, что в канале не хватает хардкора?
Получайте по полной!
Монументальный труд из двух статей, описывающий как ядро Linux работает с сетевым стеком, что случается с пакетом пока он идёт от сетевухи до юзерспейса и обратно, что на этом пути надо мониторить и как настраивать.
Соответственно одна статья про отправку пакетов, вторая про получение. Осиливший и понявший обе, автоматически получается статус легенды и начинает обрастать мифами.
https://blog.packagecloud.io/eng/2017/02/06/monitoring-tuning-linux-networking-stack-sending-data/
Получайте по полной!
Монументальный труд из двух статей, описывающий как ядро Linux работает с сетевым стеком, что случается с пакетом пока он идёт от сетевухи до юзерспейса и обратно, что на этом пути надо мониторить и как настраивать.
Соответственно одна статья про отправку пакетов, вторая про получение. Осиливший и понявший обе, автоматически получается статус легенды и начинает обрастать мифами.
https://blog.packagecloud.io/eng/2017/02/06/monitoring-tuning-linux-networking-stack-sending-data/
blog.packagecloud.io
Monitoring and Tuning the Linux Networking Stack: Sending Data | Packagecloud Blog
This post discusses monitoring and tuning the Linux networking stack in great detail with the focus on sending data.
https://www.maketecheasier.com/shrink-your-virtualbox-vm/ #shrink #disk #diskspace #windows #linux #virtualbox
Make Tech Easier
How to Shrink a Virtualbox VM in Windows 10
If you have a need to free up more storage space, here are the steps to shrink a VirtualBox VM and reclaim storage space taken up by the guest OS.
In-depth Linux Guide to Achieve PCI DSS Compliance and Certification - Linux Audit
https://linux-audit.com/linux-systems-guide-to-achieve-pci-dss-compliance-and-certification/
#linux #pcidss
https://linux-audit.com/linux-systems-guide-to-achieve-pci-dss-compliance-and-certification/
#linux #pcidss
Linux Audit
Linux guide to achieve PCI DSS compliance and certification
This is the technical Linux guide to achieve compliance with the PCI DSS standard. Become compliant, with Linux tips for configuration and auditing.
Пентест-лаборатория «Pentestit Test.Lab 11» — полное прохождение https://habrahabr.ru/post/332902/
#pentest #pentestit #writeup #guide
#pentest #pentestit #writeup #guide
Habr
Пентест-лаборатория «Pentestit Test lab v.11» — полное прохождение
30-го июня вновь запустилась пентест лаборатория компании Pentestit. Уже много лет эти лаборатории дают возможность проверить себя в роли пентестера в...
https://www.tecmint.com/find-out-which-process-listening-on-a-particular-port/
#linux #process #cli #port
#linux #process #cli #port
3 Ways to Find Out Which Process Listening on a Particular Port
3 Ways to Find Which Linux Process Listening on a Port
In this short article, we will explain three different ways to find a process or service listening on a particular network port in Linux.
Forwarded from Записки админа
Несколько занятных ссылок от подписчика:
🔗 Постим файлы и сокращаем URL адреса прямо из консоли:
http://0x0.st/
🗂 Шарим файлы прямо из консоли:
https://transfer.sh/
🗒 Ещё один pastebin:
http://sprunge.us/
#фидбечат
🔗 Постим файлы и сокращаем URL адреса прямо из консоли:
http://0x0.st/
$ curl -F'file=@yourfile.png' http://0x0.st$ curl -F'url=http://example.com/image.jpg' http://0x0.st$ curl -F'shorten=http://example.com/some/long/url' http://0x0.st🗂 Шарим файлы прямо из консоли:
https://transfer.sh/
$ curl --upload-file ./hello.txt https://transfer.sh/hello.txt🗒 Ещё один pastebin:
http://sprunge.us/
$ cat file | curl -F 'sprunge=<-' http://sprunge.us#фидбечат
Forwarded from Записки админа
Выполнить несколько команд через sudo можно вот так:
В скриптах можно использовать такую конструкцию:
#будничное #sudo
sudo -- sh -c 'apt-get update; apt-get -y install nano;'sudo -- bash -c 'apt-get update; apt-get -y install wget;'В скриптах можно использовать такую конструкцию:
#!/usr/bin/env bash
sudo -- -sh -c <<EOF
apt-get update
apt-get -y upgrade
apt-get -y install nano
EOF
#будничное #sudo