added xploit payloads, move things to util folder, tool needs alot of work, scanner cleaned up, bunch of database features
This commit is contained in:
19
scanner/pop_database_test.src
Normal file
19
scanner/pop_database_test.src
Normal file
@@ -0,0 +1,19 @@
|
||||
import_code("/dev/scanner/libbindb.src")
|
||||
import_code("/dev/scanner/database.src")
|
||||
import_code("/dev/scanner/util_import.src")
|
||||
import_code("/dev/scanner/scanner.src")
|
||||
|
||||
//sometimes giving out non existing IP, maybe whois to filter those out.
|
||||
myDB = database()
|
||||
count = params[0]
|
||||
|
||||
i = 0
|
||||
while true
|
||||
if(i == count.to_int) then break
|
||||
ip = randomIp()
|
||||
print("\n" + ip)
|
||||
scanner(ip)
|
||||
i= i + 1
|
||||
end while
|
||||
|
||||
print("Done")
|
||||
Reference in New Issue
Block a user