Name:
Anonymous
2011-02-28 21:23
import socket
HOST = '0.0.0.0'
for x in range(0, 70000):
. . . try:
. . . . . . s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
. . . . . . s.bind((HOST, x))
. . . . . . s.listen(1)
. . . except:
. . . . . . pass
Problem nmap?
Name:
Anonymous
2011-02-28 21:27
Lol'd. But I'm sure there are better ways to do this. I have
http://art-exploitation.org.ua/7261final/lib0021.html in my bookmarks.
Name:
Anonymous
2011-02-28 21:44
THIS THREAD IS NOW
????????????????????????????????????????
Name:
Anonymous
2011-03-01 2:34
hope you're using python 3.0, otherwise fail for not using xrange()
Name:
Anonymous
2011-03-01 5:20
The forced dot spacing of indentation.