Advertisement
Guest User

bootbot

a guest
Sep 19th, 2015
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.19 KB | None | 0 0
  1. from subprocess import call
  2. import os
  3. from selenium import webdriver
  4. import time
  5.  
  6.  
  7.  
  8. call('color a', shell=True)
  9. print('Welcome, this is a simple Python script that will allow you to automatically \nboot someone offline.')
  10. print('')
  11. print('If you bought the 50$ package for 600 seconds boot time, this allows you\nunlimited booting time!')
  12. print('')
  13. os.system("pause")
  14. os.system('cls')
  15.  
  16.  
  17. # Getting Username and Password, putting them into variables for later use
  18.  
  19. call('color 9', shell=True)
  20. inbootusername = input("What is your username: ")
  21. if inbootusername == '':
  22.     while inbootusername == '':
  23.         print('')
  24.         print('Looks like you left it blank! Try again?')
  25.         inbootusername = input("What is your username: ")
  26.  
  27. inbootpassword = input("\nWhat is your password: ")
  28. if inbootpassword is '':
  29.     while inbootpassword == '':
  30.         print('')
  31.         print('Looks like you left it blank! Try again?')
  32.         inbootpassword = input("What is your password: ")
  33. os.system('cls')
  34.  
  35. # End
  36.  
  37. # Connecting to login of Inboot
  38.  
  39. browser = webdriver.Chrome()
  40. browser.get('https://inboot.me/members/login.php')
  41. pagetitle = browser.title
  42. print(pagetitle)
  43. os.system("pause")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement