Initial Configuration Push

This commit is contained in:
CCOSTAN
2016-10-11 16:42:06 +00:00
parent b83eeadfcb
commit 5127bc2109
2145 changed files with 298464 additions and 0 deletions

6
deps/nmap/test.py vendored Normal file
View File

@@ -0,0 +1,6 @@
import nmap
nm = nmap.PortScanner()
nm.scan('localhost', arguments= '-S 127.0.0.1')
for host in nm.all_hosts():
print('Host : %s (%s)' % (host, nm[host].hostname()))