Craftrise accont

ilk acc geni selenium ile ben yapmıştım, çok laf edilmişti ondan sonra birçok kişi yaptı, aynı proje bunlara herhangi bir şey denilmedi. çok garibime gidiyor
 
Bu kullanıcıyla herhangi bir iş veya ticaret yapmak istiyorsanız, forumdan uzaklaştırıldığını sakın unutmayın.
from selenium.webdriver.common.by import By
from selenium import webdriver
from time import sleep
import random
import string
import requests


CraftriseURL = ' '


webhook_url = 'YOUR_DISCORD_WEBHOOK_URL'


driver = webdriver.Chrome()

def Create_Account(posta, name, password):
driver.get(CraftriseURL)
sleep(3)


Email = driver.find_element(By.NAME, 'email')
Email.send_keys(posta)

Username = driver.find_element(By.NAME, 'username')
Username.send_keys(name)

Password = driver.find_element(By.NAME, 'password')
Password.send_keys(password)

PasswordConfirm = driver.find_element(By.NAME, 'password_confirmation')
PasswordConfirm.send_keys(password)


SignupButton = driver.find_element(By.ID, 'register_button') # Butonun doğru ID'sini kontrol edin
SignupButton.click()

sleep(5)

def AccountSave(name, password):
with open("CraftriseAccounts.txt", 'a') as dosya:
dosya.write(f"Kullanıcı Adı: {name}, Şifre: {password}\n")
send_to_webhook(name, password) # Kaydedilen hesabı webhook'a gönder

def send_to_webhook(name, password):
data = {
"content": f"Yeni Craftrise hesabı oluşturuldu! \nKullanıcı Adı: {name} \nŞifre: {password}"
}
response = requests.post(webhook_url, json=data)

if response.status_code == 204:
print(f"Hesap başarıyla gönderildi: {name}")
else:
print(f"Hata oluştu: {response.status_code}")

def Main():
while True:
# Rastgele hesap bilgileri oluşturma
alphas = ''.join(random.choices(string.ascii_letters + string.digits, k=8))
num = random.randint(1000, 9999)

combined = alphas + str(num)
name_list = list(combined)
random.shuffle(name_list)
username = ''.join(name_list)

password = ''.join(random.choices(string.ascii_letters + string.digits, k=12))
email = f"{username}@gmail.com"

print(f"Oluşturulan Hesap - Kullanıcı Adı: {username}, Şifre: {password}, E-posta: {email}")


Create_Account(email, username, password)
AccountSave(username, password)

# Programı başlat
Main()
driver.quit()



al bakalım
 
Bu kullanıcıyla herhangi bir iş veya ticaret yapmak istiyorsanız, forumdan uzaklaştırıldığını sakın unutmayın.
from selenium.webdriver.common.by import By
from selenium import webdriver
from time import sleep
import random
import string
import requests


CraftriseURL = ' '


webhook_url = 'YOUR_DISCORD_WEBHOOK_URL'


driver = webdriver.Chrome()

def Create_Account(posta, name, password):
driver.get(CraftriseURL)
sleep(3)


Email = driver.find_element(By.NAME, 'email')
Email.send_keys(posta)

Username = driver.find_element(By.NAME, 'username')
Username.send_keys(name)

Password = driver.find_element(By.NAME, 'password')
Password.send_keys(password)

PasswordConfirm = driver.find_element(By.NAME, 'password_confirmation')
PasswordConfirm.send_keys(password)


SignupButton = driver.find_element(By.ID, 'register_button') # Butonun doğru ID'sini kontrol edin
SignupButton.click()

sleep(5)

def AccountSave(name, password):
with open("CraftriseAccounts.txt", 'a') as dosya:
dosya.write(f"Kullanıcı Adı: {name}, Şifre: {password}\n")
send_to_webhook(name, password) # Kaydedilen hesabı webhook'a gönder

def send_to_webhook(name, password):
data = {
"content": f"Yeni Craftrise hesabı oluşturuldu! \nKullanıcı Adı: {name} \nŞifre: {password}"
}
response = requests.post(webhook_url, json=data)

if response.status_code == 204:
print(f"Hesap başarıyla gönderildi: {name}")
else:
print(f"Hata oluştu: {response.status_code}")

def Main():
while True:
# Rastgele hesap bilgileri oluşturma
alphas = ''.join(random.choices(string.ascii_letters + string.digits, k=8))
num = random.randint(1000, 9999)

combined = alphas + str(num)
name_list = list(combined)
random.shuffle(name_list)
username = ''.join(name_list)

password = ''.join(random.choices(string.ascii_letters + string.digits, k=12))
email = f"{username}@gmail.com"

print(f"Oluşturulan Hesap - Kullanıcı Adı: {username}, Şifre: {password}, E-posta: {email}")


Create_Account(email, username, password)
AccountSave(username, password)

# Programı başlat
Main()
driver.quit()



al bakalım
tr proxy lazım tek ipden sadece günde 3 hesap açabilirsin.
 
from selenium.webdriver.common.by import By
from selenium import webdriver
from time import sleep
import random
import string
import requests


CraftriseURL = ' '


webhook_url = 'YOUR_DISCORD_WEBHOOK_URL'


driver = webdriver.Chrome()

def Create_Account(posta, name, password):
driver.get(CraftriseURL)
sleep(3)


Email = driver.find_element(By.NAME, 'email')
Email.send_keys(posta)

Username = driver.find_element(By.NAME, 'username')
Username.send_keys(name)

Password = driver.find_element(By.NAME, 'password')
Password.send_keys(password)

PasswordConfirm = driver.find_element(By.NAME, 'password_confirmation')
PasswordConfirm.send_keys(password)


SignupButton = driver.find_element(By.ID, 'register_button') # Butonun doğru ID'sini kontrol edin
SignupButton.click()

sleep(5)

def AccountSave(name, password):
with open("CraftriseAccounts.txt", 'a') as dosya:
dosya.write(f"Kullanıcı Adı: {name}, Şifre: {password}\n")
send_to_webhook(name, password) # Kaydedilen hesabı webhook'a gönder

def send_to_webhook(name, password):
data = {
"content": f"Yeni Craftrise hesabı oluşturuldu! \nKullanıcı Adı: {name} \nŞifre: {password}"
}
response = requests.post(webhook_url, json=data)

if response.status_code == 204:
print(f"Hesap başarıyla gönderildi: {name}")
else:
print(f"Hata oluştu: {response.status_code}")

def Main():
while True:
# Rastgele hesap bilgileri oluşturma
alphas = ''.join(random.choices(string.ascii_letters + string.digits, k=8))
num = random.randint(1000, 9999)

combined = alphas + str(num)
name_list = list(combined)
random.shuffle(name_list)
username = ''.join(name_list)

password = ''.join(random.choices(string.ascii_letters + string.digits, k=12))
email = f"{username}@gmail.com"

print(f"Oluşturulan Hesap - Kullanıcı Adı: {username}, Şifre: {password}, E-posta: {email}")


Create_Account(email, username, password)
AccountSave(username, password)

# Programı başlat
Main()
driver.quit()



al bakalım
düzeltim aga chatgpt yapınca olmuyor
 

  Şuanda konuyu görüntüleyen kullanıcılar


Üst Alt