{"id":34713927,"url":"https://github.com/robertdevore/editor-scanner-for-wordpress","last_synced_at":"2026-05-26T11:34:21.877Z","repository":{"id":297872341,"uuid":"992896020","full_name":"robertdevore/editor-scanner-for-wordpress","owner":"robertdevore","description":null,"archived":false,"fork":false,"pushed_at":"2025-05-29T22:11:07.000Z","size":5,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-11T07:04:38.132Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/robertdevore.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-05-29T22:10:02.000Z","updated_at":"2025-05-30T20:22:50.000Z","dependencies_parsed_at":"2025-06-08T03:10:47.575Z","dependency_job_id":"cf9cad78-c4a2-4728-850d-44b0f4a2f6a6","html_url":"https://github.com/robertdevore/editor-scanner-for-wordpress","commit_stats":null,"previous_names":["robertdevore/editor-scanner-for-wordpress"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/robertdevore/editor-scanner-for-wordpress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdevore%2Feditor-scanner-for-wordpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdevore%2Feditor-scanner-for-wordpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdevore%2Feditor-scanner-for-wordpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdevore%2Feditor-scanner-for-wordpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/robertdevore","download_url":"https://codeload.github.com/robertdevore/editor-scanner-for-wordpress/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/robertdevore%2Feditor-scanner-for-wordpress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33519074,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T03:12:49.672Z","status":"ssl_error","status_checked_at":"2026-05-26T03:12:47.976Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-12-25T00:53:02.196Z","updated_at":"2026-05-26T11:34:21.871Z","avatar_url":"https://github.com/robertdevore.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WordPress Editor Scanner\n\nA Python tool to detect which WordPress editor and page builders are being used on any WordPress website.\n\n## Features\n\n- 🔍 **Gutenberg Editor Detection** - Identifies block-based content\n- 📝 **Classic Editor Detection** - Detects TinyMCE-based editing\n- 🏗️ **Page Builder Detection** - Scans for popular page builders:\n  - Elementor\n  - WPBakery (Visual Composer)\n  - Beaver Builder\n  - Divi Builder\n  - Oxygen Builder\n- 🎨 **Colored Output** - Easy-to-read results with green/red indicators\n- 🌐 **Browser Simulation** - Uses realistic headers to avoid blocking\n\n## Installation\n\n### Prerequisites\n\nMake sure you have Python 3.6+ installed on your system.\n\n### Install Dependencies\n\n```bash\npip install requests beautifulsoup4 colorama\n```\n\n### Download the Script\n\n```bash\ngit clone \u003crepository-url\u003e\n# or download editorScanner.py directly\n```\n\n## Usage\n\nRun the script from your terminal:\n\n```bash\npython editorScanner.py\n```\n\nWhen prompted, enter the website URL you want to scan:\n\n```\nEnter the website URL (e.g., https://example.com): https://yoursite.com\n```\n\n### Example Output\n\n```\n🔍 Scanning https://example.com\n\nGutenberg Editor:   YES\nClassic Editor:     NO\nPage Builders:\n  - Elementor      : YES\n  - WPBakery       : NO\n  - Beaver Builder : NO\n  - Divi           : NO\n  - Oxygen         : NO\n```\n\n## How It Works\n\nThe scanner analyzes the HTML source code of a WordPress website to identify:\n\n### Gutenberg Detection\n- Searches for `wp-block` classes\n- Looks for WordPress REST API endpoints (`wp-json/wp/v2`)\n- Identifies block-specific CSS classes\n\n### Classic Editor Detection\n- Checks for TinyMCE editor signatures\n- Looks for `admin-ajax.php` references\n- Only reports positive if Gutenberg is not detected\n\n### Page Builder Detection\n- **Elementor**: Searches for `elementor` in HTML\n- **WPBakery**: Looks for `vc_row` classes\n- **Beaver Builder**: Identifies `fl-builder` signatures\n- **Divi**: Searches for `et_pb_section` classes\n- **Oxygen**: Looks for `ct-section` elements\n\n## Requirements\n\n- Python 3.6+\n- `requests` library for HTTP requests\n- `beautifulsoup4` for HTML parsing\n- `colorama` for colored terminal output\n\n## Error Handling\n\nThe script includes robust error handling for:\n- Network connectivity issues\n- Invalid URLs\n- Timeout errors (10-second limit)\n- HTTP errors (404, 500, etc.)\n\n## Browser Simulation\n\nThe tool uses realistic browser headers to avoid being blocked:\n- User-Agent: Chrome 114 on Windows 10\n- Accept-Language: English (US)\n- Connection: Keep-alive\n\n## Limitations\n\n- Only detects editors/builders that leave identifiable traces in the frontend HTML\n- Some heavily cached or optimized sites may not show all signatures\n- Custom or lesser-known page builders may not be detected\n- Requires the website to be publicly accessible\n\n## Contributing\n\nFeel free to submit issues or pull requests to improve the detection accuracy or add support for additional page builders.\n\n## License\n\nThis project is open source and available under the MIT License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertdevore%2Feditor-scanner-for-wordpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frobertdevore%2Feditor-scanner-for-wordpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frobertdevore%2Feditor-scanner-for-wordpress/lists"}