NGL Spammer is a command-line interface (CLI) application written in Python that allows you to spam people in the NGL community with a specified username and count.
This NGL Spammer is optimized for exceptional speed, capable of sending 500 messages in around 5 - 6 seconds. Leveraging the power of aiohttp
and asyncio
, it excels in quickly and efficiently sending multiple requests concurrently.
-
Clone the repository:
git clone https://github.com/JethroNatividad/ngl-spammer.git
-
Navigate to the project directory:
cd ngl-spammer
-
Create a virtual environment:
python -m venv env
-
Activate the virtual environment:
On Windows:
.\env\Scripts\activate
On Linux and Mac:
source env/bin/activate
-
Install the required dependencies using pip:
pip install -r requirements.txt
Before running the NGL Spammer, ensure you have obtained the necessary Cloudflare cookie and user agent.
-
Visit ngl.link.
-
Complete the CAPTCHA if prompted. If not, it is often automatically completed.
-
Right-click anywhere on the page and select "Inspect" or press
F12
to open the developer tools. -
Go to the "Application" tab.
-
In the left sidebar, under "Storage," expand the "Cookies" section.
-
Replace the value in
clearance.txt
with the copiedcf_clearance
.
Please note that due to the security measures on ngl.link, you might need to repeat the process above approximately every 30 minutes.
- In the developer tools, navigate to the "Console" tab.
- Type
navigator.userAgent
and press Enter. - Copy the displayed user agent. Make sure not to include the single quotes
''
around the user agent. - Paste the user agent into the
user_agent.txt
file.
To run the NGL Spammer, use the following command:
python main.py -u <target_username> -c <spam_count>
Replace <target_username>
with the NGL username you want to spam and <spam_count>
with the number of spam messages you want to send.
python main.py -u john_doe -c 100
python main.py
--help
: Display help and information about available parameters.
python main.py --help
You can customize the messages sent by editing the messages.txt
file. Each line in this file represents a separate message, and the spambot will randomly select messages from this file to send.
To add or remove messages, simply edit the messages.txt
file with your desired texts.
Use this tool responsibly! The NGL Spammer is intended for educational and testing purposes only. Misuse of this tool for spamming or any malicious activities is strictly discouraged. The developer is not responsible for any consequences resulting from the misuse of this application.
This project is licensed under the MIT License - see the LICENSE file for details.