-
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 all 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,75 @@ | ||
| # 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 <website_url> | ||
| wpdetect https://www.wordpress.com/ | ||
| ``` | ||
| Example | ||
|
|
||
|
|
||
| ```sh | ||
| wpdetect https://iamlizu.com/ | ||
| wpdetect --url https://www.wordpress.com/ | ||
| ``` | ||
| Or feed a text file with a list of domains, each domain should be separated with new lines. | ||
|
|
||
|
|
||
| ```sh | ||
| wpdetect -f sites.txt | ||
| cat URLs.txt | wpdetect | ||
| ``` | ||
| Where `sites.txt` will contain domains like this, | ||
|
|
||
| ```sh | ||
| https://iamlizu.com/ | ||
| echo https://www.wordpress.com | wpdetect | ||
| ``` | ||
|
|
||
|
|
||
| ```sh | ||
| wpdetect --file urls.txt | ||
| ``` | ||
|
|
||
|
|
||
| Where `urls.txt` will contain domains like this, | ||
| ```sh | ||
| https://www.wordpress.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 | ||
|
|
||
| ## Options | ||
|
serialfuzzer marked this conversation as resolved.
|
||
|
|
||
| | Option | Description | Default Value (Behavior) | | ||
| |--------|-------------|--------------| | ||
| | --file, -f | Path of the file containing URLs separated by new line characters | Empty String | | ||
| | --url, -u | URL of the target | | | ||
| |--threads, -tr| Number of threads |1 | | ||
| |--timeout, -t| Timeout of the HTTP request in seconds |5 | | ||
| |--silent, -s| Only display URLs using wordpress, don't display banners and any other text | False| | ||
| |--preferhttp, -ph| If URL doesn't have http or https, only scan http | Scan both| | ||
| |--preferhttps, -phs| If URL doesn't have http or https, only scan https | Scan both | | ||
|
|
||
|
|
||
| ## 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. | ||
|
|
||
|
|
||
| ### What's new in version 1.3.7 | ||
| 1. Improved performance | ||
| 2. Multi-Threading | ||
| 3. Silent Mode | ||
| 4. Ability to feed targets from standard input | ||
| 5. Ability to tune HTTP Request timeout | ||
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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.