A WordPress detection tool, detects if a website is running WordPress. wpdetect is a great tool when you just want to check WordPress' presence but do not want to scan the site for vulnerabilities or issues.
You can install wpdetect using pip,
pip install wpdetect
wpdetect requires Python 3 or above to run. If you have Python 2 installed too, make sure to use the right pip.
wpdetect <website_url>
Example
wpdetect https://wordpress.org
Or feed a text file with a list of domains, each domain should be separated with new lines.
wpdetect -f sites.txt
Where sites.txt
will contain domains like this,
https://wordpress.org
https://www.newyorker.com/
http://www.techcrunch.com/
Please note that, it is not always possible to detect the presence of WordPress, website admins can take extra measures to remove sign of WordPress.
- Fixed #10
- Added
-h
inclick
help options
- Removed manual argument parsing.
- Introduced click and parsing arguments with it.
- Added a sample URL in the repo for ease of testing.
- Minor bug fixes
- Added workflow for linting on code push
- Added workflow for publishing to PyPi on release
- Fixed #8
- Migrated to Hatchling build system
- Updated README
- Fixed minor bugs