Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/iamlizu/wpdetect

A WordPress detect tool
https://github.com/iamlizu/wpdetect

hacktoberfest information-gathering python python3 wordpress

Last synced: 6 days ago
JSON representation

A WordPress detect tool

Awesome Lists containing this project

README

        

# WP DETECT

[![Pylint](https://github.com/IamLizu/wpdetect/actions/workflows/pylint.yml/badge.svg?event=push)](https://github.com/IamLizu/wpdetect/actions/workflows/pylint.yml)
[![Upload Python Package](https://github.com/IamLizu/wpdetect/actions/workflows/pypi-publish.yml/badge.svg?event=release)](https://github.com/IamLizu/wpdetect/actions/workflows/pypi-publish.yml)

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.

## Installation

You can install wpdetect using pip,

```sh
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.

## Usage

| Option | Description |
| ----------------------- | ------------------------------------------------------------------------------------- |
| `url` | The URL to check. No need to pass the `url` flag, just pass the actual domain or url. |
| `-f, --file` | File with a list of URLs to check. |
| `-v, --version` | Print the version. |
| `-ss, --show-signature` | Show by which signature WordPress is detected in a domain. |
| `-q, --quiet` | Only print the detected domains. |
| `-sf, --scan-full` | Scan HTTP & HTTPS of the website for WordPress. |

Here's a few basic examples,

```sh
wpdetect
```

Example

```sh
wpdetect https://wordpress.org
```

Or feed a text file with a list of domains, each domain should be separated with new lines.

```sh
wpdetect -f sites.txt
```

Where `sites.txt` will contain domains like this,

```sh
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.

## Contributing

Initially conceived as an experimental venture for exploring PyPi publication, the `wpdetect` project has flourished, thanks to the invaluable contributions from numerous dedicated individuals. Regarded as an indispensable tool by penetration testers during reconnaissance, any form of engagement, including sharing the project with your team, is highly appreciated. For further details, kindly see the [Contributing Guide](https://github.com/IamLizu/wpdetect/blob/master/CONTRIBUTING.md).

### Code of Conduct

The `wpdetect` project upholds a comprehensive and universally accepted [Code of Conduct](https://github.com/IamLizu/wpdetect/blob/master/CODE_OF_CONDUCT.md), which guides the behavior of all participants involved. This set of guidelines delineates appropriate conduct and outlines the consequences that may ensue should any violations occur.

### Changelog

The project's [changelog](https://github.com/IamLizu/wpdetect/blob/master/CHANGELOG.md) provides a concise and chronological record of modifications made to `wpdetect`. It serves as a vital resource for users, showcasing the evolution of the project, including bug fixes, feature enhancements, and other noteworthy updates.

## Security

The project's [security policy](https://github.com/IamLizu/wpdetect/blob/master/SECURITY.md) ensures the integrity and confidentiality of `wpdetect`. It outlines robust measures to identify, prevent, and respond to security vulnerabilities and incidents. Regular security assessments and prompt resolution of reported issues are essential components of this policy.