Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pudochu/stealthbot
🔬 Educational web automation tool showcasing advanced techniques. 🚫 Not for malicious use. 🎓 Learn responsibly!
https://github.com/pudochu/stealthbot
automation-tool browser-automation javascript nodejs puppeteer user-simulation web-automation web-testing
Last synced: 10 days ago
JSON representation
🔬 Educational web automation tool showcasing advanced techniques. 🚫 Not for malicious use. 🎓 Learn responsibly!
- Host: GitHub
- URL: https://github.com/pudochu/stealthbot
- Owner: Pudochu
- License: mit
- Created: 2024-07-14T15:39:52.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-14T15:46:04.000Z (4 months ago)
- Last Synced: 2024-10-17T22:27:24.697Z (29 days ago)
- Topics: automation-tool, browser-automation, javascript, nodejs, puppeteer, user-simulation, web-automation, web-testing
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Advanced Stealth Web Automation Bot
## Disclaimer
This project is for educational purposes only. Using this script to access websites may violate their terms of service. Always ensure you have permission before automating interactions with any website.
## Description
This project demonstrates advanced techniques for web automation while attempting to mimic human-like behavior and avoid detection. It uses Puppeteer with various stealth plugins and techniques to create a sophisticated web automation tool.
## Features
- Advanced browser fingerprint evasion
- Realistic mouse movements and user behavior simulation
- Random device and user-agent emulation
- Custom HTTP header manipulation
- Proxy support (optional)
- CAPTCHA solving capability (placeholder)## Installation
1. Clone this repository:
```
git clone https://github.com/pudochu/advanced-stealth-bot.git
```2. Navigate to the project directory:
```
cd advanced-stealth-bot
```3. Install the required dependencies:
```
npm install
```## Usage
1. Modify the target URL in the `advancedStealthBot` function:
```javascript
await page.goto('https://example.com/register', {
waitUntil: 'networkidle2',
timeout: 60000
});
```2. Customize the form filling process in the `fillForm` function to match your target website.
3. Run the script:
```
node index.js
```## Configuration
- To use a proxy, uncomment and modify the following line in the `advancedStealthBot` function:
```javascript
// await proxy(page, 'http://username:password@proxy_address:port');
```- Adjust the `formFields` array in the `fillForm` function to match the form on your target website.
## Contributing
Contributions to improve the project are welcome. Please follow these steps:
1. Fork the repository
2. Create a new branch (`git checkout -b feature/your-feature`)
3. Make your changes
4. Commit your changes (`git commit -am 'Add some feature'`)
5. Push to the branch (`git push origin feature/your-feature`)
6. Create a new Pull Request## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Disclaimer
The authors of this project are not responsible for any misuse or for any damages that you may cause. This tool is designed for educational purposes only. Ensure you have permission from the target website before using this tool.
## Contact
If you have any questions, feel free to open an issue or contact the maintainer directly.