https://github.com/r0oth3x49/wp-plugin-checker
A cross-platform python based utility to identify wordpress plugins used by a website.
https://github.com/r0oth3x49/wp-plugin-checker
Last synced: 5 months ago
JSON representation
A cross-platform python based utility to identify wordpress plugins used by a website.
- Host: GitHub
- URL: https://github.com/r0oth3x49/wp-plugin-checker
- Owner: r0oth3x49
- Created: 2017-08-23T18:26:37.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T16:22:36.000Z (about 4 years ago)
- Last Synced: 2024-08-03T06:04:27.577Z (9 months ago)
- Language: Python
- Homepage:
- Size: 8.82 MB
- Stars: 21
- Watchers: 5
- Forks: 12
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-wordpress - A cross-platform python based utility to identify wordpress plugins used by a website.
README
# wp-plugin-checker
**A cross-platform python based utility to identify wordpress plugins used by a website.**[](https://postimg.org/image/58liso0lb/)
### Requirements
- Python 2
- Python `pip`
- Python module `requests`
- Python module `colorama`
- Python module `beautifulsoup`### Install modules
pip install -r requirements.txt
### Tested on- Windows 7/8
- Kali linux (2017.1)
### Download wp-plugin-checkerYou can download the latest version of cbtnuggets-dl by cloning the GitHub repository.
git clone https://github.com/r0oth3x49/wp-plugin-checker.git
### Usage
***Check using default option***
python wp-check.py -u https://www.abc.com -d
***Check using default option with tor proxy***python wp-check.py -u https://www.abc.com -d --tor
***Check using default option with tor proxy by requesting new identity***python wp-check.py -u https://www.abc.com -d --tor --new-identity
***Check using bruteforce option***python wp-check.py -u https://www.abc.com -b
***Check using bruteforce option by specifying threads***python wp-check.py -u https://www.abc.com -b -t 10
***Check using bruteforce option with tor proxy***python wp-check.py -u https://www.abc.com -b --tor
***Check using bruteforce option with tor proxy by requesting new identity***python wp-check.py -u https://www.abc.com -b --tor --new-identity
***Check using bruteforce option by providing custom wordlist***python wp-check.py -u https://www.abc.com -b -w "/path/to/wordlist/"
### Advanced Usage
Author: Nasir khan (r0ot h3x49)Usage: wp-check.py [OPTIONS] URL
Options:
General:
-h, --help Print this help text and exit
-v, --version Print program version and exitTarget:
-u URL, --url=URL Provide target url (e.g:- http://www.abc.com)Output:
-s, --save Stores plugins in file with target url name.Custom:
-w, --wordlist Provide plugin wordlist else it will use default.
-t, --threads Provide threads default threads = 2Proxy:
--tor Uses tor proxy network to send traffic through
--new-identity Automated request for new identity on ip blockedEnumeration:
-d, --default Analyzes plugins from source code
-b, --bruteforce Analyzes plugins using bruteforce
Example:
python wp-check.py -u https://www.abc.com -d