mirror of https://github.com/1N3/Sn1per.git
Sn1per by @xer0dayz
This commit is contained in:
parent
c8cde2ad34
commit
8db5031f98
|
|
@ -1,4 +1,5 @@
|
|||
## CHANGELOG:
|
||||
* v5.8 - Fixed issue with subfinder not working due to lack of wordlist switch
|
||||
* v5.8 - Fixed missing osint directory/file paths
|
||||
* v5.7 - Added libSSH auth bypass scanner CVE-2018-10933
|
||||
* v5.7 - Added HTTP PUT method RCE MSF exploit
|
||||
|
|
|
|||
16
README.md
16
README.md
|
|
@ -79,22 +79,6 @@ To obtain a Sn1per Professional license, go to https://xerosecurity.com.
|
|||
./install.sh
|
||||
```
|
||||
|
||||
## DOCKER INSTALL:
|
||||
|
||||
Credits: @menzow
|
||||
|
||||
Docker Install:
|
||||
https://github.com/menzow/sn1per-docker
|
||||
|
||||
Docker Build:
|
||||
https://hub.docker.com/r/menzo/sn1per-docker/builds/bqez3h7hwfun4odgd2axvn4/
|
||||
|
||||
Example usage:
|
||||
```
|
||||
$ docker pull menzo/sn1per-docker
|
||||
$ docker run --rm -ti menzo/sn1per-docker sniper menzo.io
|
||||
```
|
||||
|
||||
## USAGE:
|
||||
```
|
||||
[*] NORMAL MODE
|
||||
|
|
|
|||
|
|
@ -21,7 +21,7 @@ if [ "$RECON" = "1" ]; then
|
|||
echo -e "${OKGREEN}====================================================================================${RESET}"
|
||||
echo -e "$OKRED GATHERING DNS SUBDOMAINS VIA SUBFINDER $RESET"
|
||||
echo -e "${OKGREEN}====================================================================================${RESET}"
|
||||
subfinder -o $LOOT_DIR/domains/domains-$TARGET-subfinder.txt -b -d $TARGET 2>/dev/null
|
||||
subfinder -o $LOOT_DIR/domains/domains-$TARGET-subfinder.txt -b -w $DOMAINS_DEFAULT -d $TARGET 2>/dev/null
|
||||
fi
|
||||
echo -e "${OKGREEN}====================================================================================${RESET}"
|
||||
echo -e "$OKRED BRUTE FORCING DNS SUBDOMAINS VIA DNSCAN (THIS COULD TAKE A WHILE...) $RESET"
|
||||
|
|
|
|||
Loading…
Reference in New Issue