This script automates the process of registering on gptinf.com, a website that makes text undetectable by AI detection tools. The script uses Selenium for browser automation, including bypassing reCAPTCHA, registering with temporary email addresses, and paraphrasing large blocks of text. If the input text exceeds the website's limit, the script creates new accounts as needed and continues processing.
- Automated Account Creation: Automatically registers new accounts using temporary email addresses.
- reCAPTCHA Bypass: Bypass reCAPTCHA challenges during the registration process using audio bypass technique.
- Text Paraphrasing: Breaks down large text into chunks, paraphrases each chunk, and saves the results.
- Account Management: When paraphrasing exceeds the word limit per account, the script creates a new account and continues.
- Clipboard Integration: Retrieves paraphrased text directly from the clipboard.
- Clone this repository to your local machine
git clone https://github.com/obaskly/AiDetectionBypass.git
cd AiDetectionBypass
- Install the required Python packages
pip install -r requirements.txt
- Install FFmpeg
-
Linux:
sudo apt-get update sudo apt-get install ffmpeg
-
Windows:
Follow this tutorial: https://www.wikihow.com/Install-FFmpeg-on-Windows
- Run the script
Prepare your article in a text file (e.g., article.txt), or paste it directly.
python main.py
- The script will create an
accounts.txt
file with temporary email accounts and save the paraphrased content toparaphrased_text.txt
. Sit back and relax while the script paraphrases your article!
- Python 3.x
- Google Chrome installed (chromedriver is used by Selenium)