Advertisement
Condomenium

iLLuCiDe Port scanner #FuckMipsel

Jun 16th, 2017
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. import socket
  2. import sys
  3. import time
  4. from multiprocessing import Process
  5.  
  6. #iLLSeC was HeRe
  7. #LeTs CuCk SomE DuCkS
  8. #RiP mY CoDe AnD iLl FucK ur AsS
  9. #RuN SkIdDy SkIdDy
  10. #If ThiS WaS SoLd To YoU Its PRoLY Cuz Of these skids, udp aka mipsel, Serlo, m3nthol, B1nary, Syphor, reggie, Ghost, LiGht
  11.  
  12. if len(sys.argv) < 4:
  13. sys.exit("python illsec.py <ip?> <starting port?> <stop port?>\niLLSeC made this u skid stop fuukin")
  14.  
  15. for port in range(int(sys.argv[2]),int(sys.argv[3])):
  16. TCP_IP = sys.argv[1]
  17. TCP_PORT = port
  18.  
  19.  
  20. s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  21. try:
  22. s.connect((TCP_IP, TCP_PORT))
  23. except Exception:
  24. print "PORT",port,"IS CLOSED MY NIGGA"
  25. else:
  26. print "PORT",port,"ITS A GLORY HOLE MY G"
  27.  
  28. s.close()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement