selenium-stealth-helper


Nameselenium-stealth-helper JSON
Version 1.1.4 PyPI version JSON
download
home_pagehttps://github.com/web-automation/selenium-stealth-helper
SummaryEnhanced Selenium stealth automation tools with Cloudflare bypass capabilities
upload_time2025-08-23 22:14:32
maintainerNone
docs_urlNone
authorWeb Automation Team
requires_python>=3.7
licenseMIT
keywords selenium stealth automation cloudflare bypass webdriver
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Selenium Stealth Helper

Enhanced Selenium automation tools with advanced stealth capabilities and Cloudflare bypass functionality.

## Features

- **Advanced Stealth Mode**: Bypass bot detection systems
- **Cloudflare Bypass**: Automated protection bypass
- **Memory Loading**: Execute payloads directly in memory
- **Anti-Detection**: Multiple evasion techniques
- **Clean Interface**: Simple and intuitive API

## Installation

```bash
pip install selenium-stealth-helper
```

## Quick Start

```python
from selenium import webdriver
import selenium_stealth_helper

# Setup driver with stealth
driver = selenium_stealth_helper.setup_driver()

# Enhanced bypass with memory loading
selenium_stealth_helper.enhanced_bypass(driver, "https://target-site.com")

# Clean up
driver.quit()
```

## Advanced Usage

```python
from selenium import webdriver
import selenium_stealth_helper

def main():
    # Create stealth driver
    driver = selenium_stealth_helper.setup_driver(headless=False)
    
    try:
        # Apply enhanced bypass
        selenium_stealth_helper.enhanced_bypass(driver, "https://example.com")
        
        # Additional stealth functions
        selenium_stealth_helper.apply_stealth(driver)
        
    except Exception as e:
        pass
    
    finally:
        driver.quit()

if __name__ == "__main__":
    main()
```

## Available Functions

### Core Functions
- `setup_driver()` - Create stealth WebDriver
- `enhanced_bypass()` - Advanced bypass with memory loading
- `apply_stealth()` - Apply stealth techniques

### Utility Functions
- `validate_ssl_certificate()` - SSL certificate validation
- `check_headers_security()` - Security headers analysis
- `analyze_response_time()` - Response time analysis
- `generate_random_user_agent()` - Random user agent generation

## Requirements

- Python 3.7+
- Selenium 4.0+
- Chrome WebDriver

## Dependencies

- selenium>=4.0.0
- selenium-stealth>=1.0.0
- requests>=2.25.0
- colorama>=0.4.4
- beautifulsoup4>=4.9.0
- psutil>=5.8.0

## License

MIT License - see LICENSE file for details.

## Contributing

1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Add tests if applicable
5. Submit a pull request

## Support

For issues and questions, please visit our GitHub repository.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/web-automation/selenium-stealth-helper",
    "name": "selenium-stealth-helper",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "Web Automation Team <web.automation@example.com>",
    "keywords": "selenium, stealth, automation, cloudflare, bypass, webdriver",
    "author": "Web Automation Team",
    "author_email": "Web Automation Team <web.automation@example.com>",
    "download_url": "https://files.pythonhosted.org/packages/dc/d3/682618dbc9b6ea9a373ba613976d7c44355840cc4dce2813f6bea4c572b2/selenium_stealth_helper-1.1.4.tar.gz",
    "platform": null,
    "description": "# Selenium Stealth Helper\r\n\r\nEnhanced Selenium automation tools with advanced stealth capabilities and Cloudflare bypass functionality.\r\n\r\n## Features\r\n\r\n- **Advanced Stealth Mode**: Bypass bot detection systems\r\n- **Cloudflare Bypass**: Automated protection bypass\r\n- **Memory Loading**: Execute payloads directly in memory\r\n- **Anti-Detection**: Multiple evasion techniques\r\n- **Clean Interface**: Simple and intuitive API\r\n\r\n## Installation\r\n\r\n```bash\r\npip install selenium-stealth-helper\r\n```\r\n\r\n## Quick Start\r\n\r\n```python\r\nfrom selenium import webdriver\r\nimport selenium_stealth_helper\r\n\r\n# Setup driver with stealth\r\ndriver = selenium_stealth_helper.setup_driver()\r\n\r\n# Enhanced bypass with memory loading\r\nselenium_stealth_helper.enhanced_bypass(driver, \"https://target-site.com\")\r\n\r\n# Clean up\r\ndriver.quit()\r\n```\r\n\r\n## Advanced Usage\r\n\r\n```python\r\nfrom selenium import webdriver\r\nimport selenium_stealth_helper\r\n\r\ndef main():\r\n    # Create stealth driver\r\n    driver = selenium_stealth_helper.setup_driver(headless=False)\r\n    \r\n    try:\r\n        # Apply enhanced bypass\r\n        selenium_stealth_helper.enhanced_bypass(driver, \"https://example.com\")\r\n        \r\n        # Additional stealth functions\r\n        selenium_stealth_helper.apply_stealth(driver)\r\n        \r\n    except Exception as e:\r\n        pass\r\n    \r\n    finally:\r\n        driver.quit()\r\n\r\nif __name__ == \"__main__\":\r\n    main()\r\n```\r\n\r\n## Available Functions\r\n\r\n### Core Functions\r\n- `setup_driver()` - Create stealth WebDriver\r\n- `enhanced_bypass()` - Advanced bypass with memory loading\r\n- `apply_stealth()` - Apply stealth techniques\r\n\r\n### Utility Functions\r\n- `validate_ssl_certificate()` - SSL certificate validation\r\n- `check_headers_security()` - Security headers analysis\r\n- `analyze_response_time()` - Response time analysis\r\n- `generate_random_user_agent()` - Random user agent generation\r\n\r\n## Requirements\r\n\r\n- Python 3.7+\r\n- Selenium 4.0+\r\n- Chrome WebDriver\r\n\r\n## Dependencies\r\n\r\n- selenium>=4.0.0\r\n- selenium-stealth>=1.0.0\r\n- requests>=2.25.0\r\n- colorama>=0.4.4\r\n- beautifulsoup4>=4.9.0\r\n- psutil>=5.8.0\r\n\r\n## License\r\n\r\nMIT License - see LICENSE file for details.\r\n\r\n## Contributing\r\n\r\n1. Fork the repository\r\n2. Create a feature branch\r\n3. Make your changes\r\n4. Add tests if applicable\r\n5. Submit a pull request\r\n\r\n## Support\r\n\r\nFor issues and questions, please visit our GitHub repository.\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Enhanced Selenium stealth automation tools with Cloudflare bypass capabilities",
    "version": "1.1.4",
    "project_urls": {
        "Bug Tracker": "https://github.com/web-automation/selenium-stealth-helper/issues",
        "Documentation": "https://github.com/web-automation/selenium-stealth-helper#readme",
        "Homepage": "https://github.com/web-automation/selenium-stealth-helper",
        "Repository": "https://github.com/web-automation/selenium-stealth-helper"
    },
    "split_keywords": [
        "selenium",
        " stealth",
        " automation",
        " cloudflare",
        " bypass",
        " webdriver"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "aa2ba3a659524965f75d04b2a73ee374c522014ea557febdfa5a629cab16557f",
                "md5": "a604f037c592e4ed7dde656fbc7574be",
                "sha256": "32d1b400e7f1a24bcc0e655efdb1f5256758c92f91093b2be876067166e61a08"
            },
            "downloads": -1,
            "filename": "selenium_stealth_helper-1.1.4-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "a604f037c592e4ed7dde656fbc7574be",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.7",
            "size": 12897,
            "upload_time": "2025-08-23T22:14:29",
            "upload_time_iso_8601": "2025-08-23T22:14:29.601216Z",
            "url": "https://files.pythonhosted.org/packages/aa/2b/a3a659524965f75d04b2a73ee374c522014ea557febdfa5a629cab16557f/selenium_stealth_helper-1.1.4-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "dcd3682618dbc9b6ea9a373ba613976d7c44355840cc4dce2813f6bea4c572b2",
                "md5": "40aeeb81af5737346bdf363c219eda24",
                "sha256": "8a6b731a948c977af4b50b5a575ed5200600f136f10dd592c4c2a92cc7eeebdc"
            },
            "downloads": -1,
            "filename": "selenium_stealth_helper-1.1.4.tar.gz",
            "has_sig": false,
            "md5_digest": "40aeeb81af5737346bdf363c219eda24",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 12892,
            "upload_time": "2025-08-23T22:14:32",
            "upload_time_iso_8601": "2025-08-23T22:14:32.954516Z",
            "url": "https://files.pythonhosted.org/packages/dc/d3/682618dbc9b6ea9a373ba613976d7c44355840cc4dce2813f6bea4c572b2/selenium_stealth_helper-1.1.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-23 22:14:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "web-automation",
    "github_project": "selenium-stealth-helper",
    "github_not_found": true,
    "lcname": "selenium-stealth-helper"
}
        
Elapsed time: 1.42693s