Advertisement
xB4ckdoorREAL

[AVTECH LIST MAKER]

Dec 30th, 2018
1,122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.53 KB | None | 0 0
  1. #JOIN MY DISCORD [FOR PRIVATE NET SERVICE OR PRIVATE EXPLOIT] : https://discord.gg/PTW3yPp
  2.  
  3. #REMEMBER SKIDZ... THIS IS ONLY THE LISTMAKER SO YOU MUST SCAN FIRST THE LIST AND AFTER USE THIS LISTMAKER.... FOR PUT THE 80 PORT FOR #EACH END-IP OF LIST.
  4.  
  5.  
  6. # Ex: python me.py ips.txt 80 new.txt
  7. import sys, os
  8.  
  9. port = int(sys.argv[2])
  10. out_file = sys.argv[3]
  11. ips = open(sys.argv[1], "r").readlines()
  12.  
  13. for ip in ips:
  14.     ip = ip.strip("\r\n")
  15.     ip = ip+":"+str(port)
  16.     cmd = "echo '%s' >> %s" % (ip, out_file)
  17.     os.system(cmd)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement