BSides Vancoover: 2018 Vuln VM

 

Click to access bsidesvancouver2018.pdf

https://www.vulnhub.com/entry/bsides-vancouver-2018-workshop,231/


 

Host Discovery:

netdiscover – awesome command that watches arp requests to attempt to find devices.

batch script for pinging a network:

for i in $(seq 0 255); do ping -W 1 192.168.139.$i | grep
“64 bytes” ; done

arp-scan
arp-scan 192.168.139.0/24

 

 

 

Leave a comment