Unethical GPT for Programming

CAPITAO CONFUSAO

Power Member
Joined
Jan 8, 2020
Messages
588
Reaction score
268
Is there a good AI for this on the market?
It is for simple things, like creating a script to make bulk emails.

ChatGPT wont do it for me because it is unethical.
 
I didn't try this but I think you need just to rephrase your prompts
 
Do you have some basic programming skills?

If yes, let ChatGPT write the code that sends a simple email then rewrite the code to make it work for bulk mailing.

Or follow up with other prompts
 
Do you have some basic programming skills?

If yes, let ChatGPT write the code that sends a simple email then rewrite the code to make it work for bulk mailing.

Or follow up with other prompts
I do.
i think i missinterpreted what i want.
Trying to creat Bulk Mail Accounts, and not send emaisl in bulk.
After it i will try to create Bulk Reddit accs.

Thats why im looking for a unethical gpt
 
I do think if we share, we get it back later. So here i go:

Code:
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.common.action_chains import ActionChains
import time
import random
import string

def generate_username():
    """Generates a random username."""
    adjective = ["Cool", "Super", "Mystery"]
    noun = ["Coder", "Bot", "User"]
    number = str(random.randint(100, 999))
    return random.choice(adjective) + random.choice(noun) + number

def generate_password(length=12):
    """Generates a random password."""
    characters = string.ascii_letters + string.digits + string.punctuation
    return ''.join(random.choice(characters) for i in range(length))

def read_emails_from_file(filename="email.txt"):
    """Reads email addresses from a file, returning a list."""
    with open(filename, "r") as file:
        emails = [line.strip() for line in file.readlines()]
    return emails

def save_account_details(username, email, password, filename="reddit.txt"):
    """Saves the account details to a file."""
    with open(filename, "a") as file:
        file.write(f"{username},{email},{password}\n")

def create_accounts(emails):
    for email in emails:
        driver = webdriver.Chrome()  # or use Firefox()
        driver.get("https://www.reddit.com/register/")
        
        time.sleep(random.uniform(1.5, 3.0))
        
        username = generate_username()
        password = generate_password()
        
        username_field = driver.find_element_by_id("regUsername")
        password_field = driver.find_element_by_id("regPassword")
        email_field = driver.find_element_by_id("regEmail")

        action = ActionChains(driver)
        action.send_keys_to_element(username_field, username)
        action.send_keys_to_element(password_field, password)
        action.send_keys_to_element(email_field, email)
        action.perform()
        
        sign_up_button = driver.find_element_by_css_selector("button.sign-up")  # Adjust the selector as needed
        sign_up_button.click()
        
        # Assuming account creation was successful without further validation
        save_account_details(username, email, password)
        
        driver.quit()  # Close the browser after each account creation

if __name__ == "__main__":
    emails = read_emails_from_file()
    create_accounts(emails)

still working on it. Thank you for your contribution @BertIsFat
 
That happens, I had to scrape some stuff recently and what worked good was asking it to try with a completely different approach and/or different modules. Also let it explain the code for you to understand what is happening there, found that much easier than watching/reading tutorials...
 
It is working, i just need to be cautious and advance step by step.
Can my GPT4 account be banned cause of that?
 
It is working, i just need to be cautious and advance step by step.
Can my GPT4 account be banned cause of that?
That is a very good question I have myself! I also heard that if you use the API that it has no restrictions but maybe somebody else can shine more light on those...
 
Any script that is produced will still have to be modified to bypass anti bot measures like captcha, verifying with phone number etc. Your better off buying bulk email accounts because they are pretty cheap.
 
Any script that is produced will still have to be modified to bypass anti bot measures like captcha, verifying with phone number etc. Your better off buying bulk email accounts because they are pretty cheap.
Thank you. Working only with the reddit part for now
 
That is a very good question I have myself! I also heard that if you use the API that it has no restrictions but maybe somebody else can shine more light on those...
You can be banned even with the API. The safest way is to assign a session or userId.

https://platform.openai.com/docs/guides/safety-best-practices/end-user-ids
Btw, you still need to be careful since you can still be banned even by implementing this. But, it can help and might be able to save your account.

If a "user" does something against the guidelines you can simply block that user. I'll let you interpret what that means ;)
 
Last edited:
Back
Top