-
Notifications
You must be signed in to change notification settings - Fork 486
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
Added feroxbuster and weevely tools. #75
Conversation
Hi @Fastiraz, We would like to suggest some changes before merging your commits.
Use args from user: feroxbuster -u http://127.1 --burp To feroxbuster -u <url> --burp Also for the commit about weevely:
Use default arguments if needed:
To
Thanks again |
The following command was an old one, it's no longer supported. ```bash weevely generate <password> ``` --- Replace `weevely generate <password> web-shell.php` by `weevely generate <password> <output_file|web_shell.php>`.
- Please do not use local path in the cheat. - Reduce the number of cheats for the tool. - Use args from user.
I just made the last commits following your instructions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi, thanks for the modifications, I added some little details to change if possible :)
arsenal/data/cheats/Web/fuzzer.md
Outdated
## default scan | ||
``` | ||
feroxbuster --url <URL> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feroxbuster --url <URL> | |
feroxbuster --url <url> |
We might prefer lowercase for variable name :)
arsenal/data/cheats/Web/fuzzer.md
Outdated
## default scan with wordlist | ||
``` | ||
feroxbuster --url <URL> -w <wordlist> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feroxbuster --url <URL> -w <wordlist> | |
feroxbuster --url <url> -w <wordlist> |
arsenal/data/cheats/Web/fuzzer.md
Outdated
## Multiple headers: | ||
``` | ||
feroxbuster -u <URL> -H Accept:application/json "Authorization: Bearer {token}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feroxbuster -u <URL> -H Accept:application/json "Authorization: Bearer {token}" | |
feroxbuster -u <url> -H "<header>" "<header>" |
arsenal/data/cheats/Web/fuzzer.md
Outdated
``` | ||
|
||
## Multiple headers: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## Multiple headers: | |
## Multiple headers |
arsenal/data/cheats/Web/fuzzer.md
Outdated
## Abort or reduce scan speed to individual directory scans when too many errors have occurred | ||
``` | ||
feroxbuster -u <URL> --auto-bail |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feroxbuster -u <URL> --auto-bail | |
feroxbuster -u <url> --auto-bail |
arsenal/data/cheats/Web/fuzzer.md
Outdated
## IPv6, non-recursive scan with INFO-level logging enabled: | ||
``` | ||
feroxbuster -u http://[::1] --no-recursion -vv |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
feroxbuster -u http://[::1] --no-recursion -vv | |
feroxbuster -u <proto|https>://[<ipv6>] --no-recursion -vv |
Let the user choose the protocol (default https I think), and ipv6
arsenal/data/cheats/Web/fuzzer.md
Outdated
``` | ||
|
||
## IPv6, non-recursive scan with INFO-level logging enabled: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
## IPv6, non-recursive scan with INFO-level logging enabled: | |
## IPv6, non-recursive scan with INFO-level logging enabled |
- Remove of `:` - Replace `http://[::1]` by `<proto|https>://[<ipv6>]` - Lowercase for variables `<url>` - Replace `Accept:application/json "Authorization: Bearer {token}"` by variables `"<header>" "<header>"`
Feroxbuster done, is there anything to edit in weevely file ? |
Hey, |
I've only added the feroxbuster and weevely tools to the cheats.
Feroxbuster is a fast, modern, simple, recursive content discovery tool written in Rust.
Weevely is a stealth PHP web shell that simulate telnet-like connection. It is an essential tool for web application post exploitation, and can be used as stealth backdoor or as a web shell to manage legit web accounts, even free hosted ones.
< Happy hacking! />