Skip to content

Commit

Permalink
Merge pull request #75 from Fastiraz/master
Browse files Browse the repository at this point in the history
Added feroxbuster and weevely tools. - thanks @Fastiraz for your contribution to the Arsenal project
  • Loading branch information
v1k1ngfr authored Mar 1, 2024
2 parents 6f28407 + 8837f41 commit a20fab1
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 1 deletion.
14 changes: 14 additions & 0 deletions arsenal/data/cheats/ReverseShell/web_shell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# web shell

% web, shell, webshell, shellweb, weevely
#plateform/linux #target/local #cat/ATTACK/WEB_SHELL

## weevely web shell generation with output file
```
weevely generate <password> <output_file|web_shell.php>
```

## weevely web shell connection
```
weevely <url> <password>
```
32 changes: 31 additions & 1 deletion arsenal/data/cheats/Web/fuzzer.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,4 +84,34 @@ ffuf -w <wordlist> -u <url> -X POST -d "username=admin\&password=FUZZ" -fc 401
nikto -C all -h <url>
```

= wordlist: /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt
# feroxbuster

% fuzzer, fuzz, ffuf, dirsearch, gobuster, dirb
#plateform/linux #target/remote #cat/ATTACK/FUZZ

## default scan
```
feroxbuster --url <url>
```

## default scan with wordlist
```
feroxbuster --url <url> -w <wordlist>
```

## Multiple headers
```
feroxbuster -u <url> -H "<header>" "<header>"
```

## IPv6, non-recursive scan with INFO-level logging enabled
```
feroxbuster -u <proto|https>://[<ipv6>] --no-recursion -vv
```
## Abort or reduce scan speed to individual directory scans when too many errors have occurred
```
feroxbuster -u <url> --auto-bail
```

= wordlist: /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt

0 comments on commit a20fab1

Please sign in to comment.