InstaReport is a script that takes bulk Instagram accounts and uses web automation to report a victim's account in a loop.
The previous version, from which this is forked, did not meet any of its original expectations. There was no loop, and there was poor error handling and retries. This new script has improved functionalities including robust error handling, automatic retries, and continuous looping to report accounts efficiently.
[+] A tool with the capability to automatically report any account.
apt update
apt upgrade
pkg install python
pkg install python3
pkg install git
git clone https://github.com/KJdotIO/InstaReport
cd instareport
pip install -r requirements.txt
chmod +x *
- Create a file
acc.txt
and runpython main.py
orpython main.py -u <TARGET_USERNAME> -f acc.txt
- Download Python and Git
git clone https://github.com/KJdotIO/InstaReport
cd instareport
pip install -r requirements.txt
- Create a file
acc.txt
and runpython main.py
orpython main.py -u <TARGET_USERNAME> -f acc.txt
sudo apt install python
sudo apt install python3
sudo apt install git
git clone https://github.com/KJdotIO/InstaReport
cd instareport
pip3 install -r requirements.txt
chmod +x *
- Create a file
acc.txt
and runpython main.py
orpython main.py -u <TARGET_USERNAME> -f acc.txt
Where acc.txt
is populated with one or more premade accounts that will bot for you. The format is username:password, separated by a new line.
This tool is intended for educational and research purposes only. Misuse of this tool for unauthorized access to computer systems or networks is strictly prohibited and may result in legal consequences. The author of this tool takes no responsibility for any damage or harm caused by its usage. It is the user's responsibility to ensure compliance with all applicable laws and regulations while using this tool. By downloading, installing, or using this tool, you agree to use it responsibly and lawfully.
This script includes:
- Automatic Looping: Continuously reports the target account.
- Error Handling: Manages various exceptions such as
NoSuchElementException
,TimeoutException
, and more. - Retry Mechanism: Retries failed operations to ensure completion.
- Multiprocessing: Handles multiple accounts simultaneously for efficient processing.
- WebDriver Management: Manages WebDriver sessions effectively, including initialization and cleanup.
The script employs Selenium WebDriver for automating web interactions, ensuring that the account reporting process is robust and reliable.