-
Notifications
You must be signed in to change notification settings - Fork 4
Made some improvements #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
serialfuzzer
wants to merge
24
commits into
IamLizu:master
Choose a base branch
from
serialfuzzer:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
2353506
Added new features and disabled banner for integration with other tools
88ce8ba
Updated README
756a8ec
Deleted unimportant files
3b4c78a
Updated readme
96f404c
Added multi threading support
2bb59e3
Some updates
0104ef4
Update README.md
c34a9af
Update README.md
af38b7c
Update README.md
3f2e963
Update README.md
02b9b30
Update README.md
4075b14
Update README.md
47b7dee
Changed code structure and added multi-threading support
db90044
Changes to READMEs, removed pyfiglet
4695883
Made some changes
1ff002b
Added options
d28b31c
Updated the default number of threads.
d29cc7b
Some minor changes
697679a
Removed helper file
90c2377
Update README.md
e42da3c
Update README.md
e45f619
Added backward compatibility features
4a53d21
Update readme
1519f56
Updated documentation
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| .vscode | ||
| build/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,33 +1,56 @@ | ||
| # WP DETECT | ||
| 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 | ||
|
|
||
| #### Installing from pip | ||
| 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 | ||
| Syntax | ||
|
|
||
|
|
||
| ```sh | ||
| wpdetect --url https://www.malcare.com/ | ||
| ``` | ||
|
|
||
|
|
||
| ```sh | ||
| wpdetect <website_url> | ||
| cat URLs.txt | wpdetect | ||
| ``` | ||
| Example | ||
|
|
||
| ```sh | ||
| wpdetect https://iamlizu.com/ | ||
| echo https://hackerone.com | wpdetect | ||
|
serialfuzzer marked this conversation as resolved.
Outdated
|
||
| ``` | ||
| Or feed a text file with a list of domains, each domain should be separated with new lines. | ||
|
|
||
|
|
||
| ```sh | ||
| wpdetect -f sites.txt | ||
| wpdetect --file urls.txt | ||
| ``` | ||
| Where `sites.txt` will contain domains like this, | ||
|
|
||
|
|
||
| Where `urls.txt` will contain domains like this, | ||
| ```sh | ||
| https://iamlizu.com/ | ||
| https://www.malcare.com/ | ||
|
serialfuzzer marked this conversation as resolved.
Outdated
|
||
| 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. | ||
|
|
||
| ### What's new in version 1.3.6 | ||
|
serialfuzzer marked this conversation as resolved.
|
||
| * Fixed minor bugs | ||
| ## Options | ||
|
serialfuzzer marked this conversation as resolved.
|
||
|
|
||
| | Option | Description | Default Vaue | | ||
| |--------|-------------|--------------| | ||
| | --file | Path of the file containing URLs separated by new line characters | Empty String | | ||
| | --url | URL of the target | | | ||
| |--threads| Number of threads|1| | ||
| |--timeout| Timeout of the HTTP request in seconds | 5 | | ||
|
|
||
| ## Upcoming features | ||
|
serialfuzzer marked this conversation as resolved.
|
||
| 1. **Asynchronous**: We're designing the tool to work in an asynchronous way, this means that there will be further improvements in speed. | ||
|
serialfuzzer marked this conversation as resolved.
Outdated
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,54 +1,41 @@ | ||
| WP Detect | ||
| ========= | ||
|
|
||
| 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 | ||
| ~~~~~~~~~~~~ | ||
|
|
||
| # WP DETECT | ||
| 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. | ||
|
|
||
| .. code:: 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 | ||
| ~~~~~ | ||
|
|
||
| ### Usage | ||
| Syntax | ||
|
|
||
| .. code:: sh | ||
|
|
||
| wpdetect <website_url> | ||
| ```sh | ||
| wpdetect --url https://iamlizu.com/ | ||
| ``` | ||
|
|
||
| Example | ||
|
|
||
| .. code:: sh | ||
| ```sh | ||
| cat URLs.txt | wpdetect | ||
| ``` | ||
|
|
||
| wpdetect https://iamlizu.com/ | ||
| ```sh | ||
| echo https://hackerone.com | wpdetect | ||
| ``` | ||
|
|
||
| Or feed a text file with a list of domains, each domain should be separated with new lines. | ||
|
|
||
| .. code:: sh | ||
| ```sh | ||
| wpdetect --file urls.txt | ||
| ``` | ||
|
|
||
| wpdetect -f sites.txt | ||
|
|
||
| Where sites.txt will contain domains like this, | ||
| Where `urls.txt` will contain domains like this, | ||
| ```sh | ||
| https://iamlizu.com/ | ||
| https://www.newyorker.com/ | ||
| http://www.techcrunch.com/ | ||
| ``` | ||
|
|
||
| .. code:: sh | ||
|
|
||
| https://iamlizu.com/ | ||
| 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. | ||
|
|
||
| What's new in version 1.3.6 | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
| * Fixed minor bugs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
serialfuzzer marked this conversation as resolved.
Outdated
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,40 +1,40 @@ | ||
| WP Detect | ||
| ========= | ||
|
|
||
| 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 | ||
| ~~~~~~~~~~~~ | ||
|
|
||
| # WP DETECT | ||
| 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. | ||
|
|
||
| .. code:: sh | ||
| ### Usage | ||
| Syntax | ||
|
|
||
| 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. | ||
| ```sh | ||
| wpdetect --url https://iamlizu.com/ | ||
| ``` | ||
|
|
||
| Usage | ||
| ~~~~~ | ||
|
|
||
| Syntax | ||
| ```sh | ||
| cat URLs.txt | wpdetect | ||
| ``` | ||
|
|
||
| .. code:: sh | ||
| ```sh | ||
| echo https://hackerone.com | wpdetect | ||
| ``` | ||
|
|
||
| wpdetect <website_url> | ||
|
|
||
| Example | ||
| ```sh | ||
| wpdetect --file urls.txt | ||
| ``` | ||
|
|
||
| .. code:: sh | ||
|
|
||
| wpdetect https://iamlizu.com/ | ||
| Where `urls.txt` will contain domains like this, | ||
| ```sh | ||
| https://iamlizu.com/ | ||
| 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. | ||
|
|
||
| What's new in version 1.3.3 | ||
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~ | ||
| * Minor bug fixes. |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.