Open Source is a great idea and it has changed the world!
Open Source forever ....
While you do not know attack, how can you know about defense? (未知攻,焉知防?)
Do BAD things .... for the RIGHT reasons -- OWASP ZAP
It is easier to port a shell than a shell script. -- Larry Wall
Most of you are familiar with the virtues of a programmer. There are three, of course: laziness, impatience, and hubris. -- Larry Wall
为天地立心, 为生民立命, 为往圣继绝学, 为万世开太平。 -- 王炜
Sunday, March 22, 2020
Tuesday, March 10, 2020
[HOWTO] Fix netdiscover not working properly on Kali 2020.1
The libpcap0.8 is upgraded from 1.8.1-6 to 1.9.1-2 since Kali 2019.4. The "-r" switch of netdiscover is no longer workable since then as it is no longer updated since Oct 8, 2019.
It is required to downgrade the libpcap0.8 to the version 1.8.1-6 and it should be held in order to prevent it from upgrade automatically in the future until netdiscover is upgraded accordingly.
Now, you can run it with "-r" switch.
That's all! See you.
It is required to downgrade the libpcap0.8 to the version 1.8.1-6 and it should be held in order to prevent it from upgrade automatically in the future until netdiscover is upgraded accordingly.
wget http://ftp.us.debian.org/debian/pool/main/libp/libpcap/libpcap0.8_1.8.1-6_amd64.deb
sudo dpkg -i libpcap0.8_1.8.1-6_amd64.deb
sudo apt-mark hold libpcap0.8
Now, you can run it with "-r" switch.
sudo netdiscover -r 10.0.2.0/24
That's all! See you.