mirror of https://github.com/1N3/Sn1per.git
Sn1per Community Edition by @xer0dayz - https://xerosecurity.com
This commit is contained in:
parent
e72a1c54b7
commit
bc9b482256
|
|
@ -185,15 +185,15 @@ sniper -u|--update
|
|||
```
|
||||
## DOCKER USAGE:
|
||||
```
|
||||
# After Docker Install successfull:
|
||||
### After the Docker installation is successfull:
|
||||
|
||||
# A) Run container and get shell inside:
|
||||
#### A) Run container and get a shell:
|
||||
docker run -it sn1per-docker /bin/bash
|
||||
|
||||
# B) Run container, run sniper and get shell output (better integration):
|
||||
#### B) Run a container, run sniper and get a shell (better integration):
|
||||
docker run -it sn1per-docker sniper $@ -t <TARGET>
|
||||
|
||||
# C) Even better you can :
|
||||
#### C) Even better you can create an alias:
|
||||
alias sniper='docker run -it sn1per-docker sniper $@'
|
||||
sniper -t <TARGET>
|
||||
```
|
||||
|
|
|
|||
3
sniper
3
sniper
|
|
@ -354,7 +354,8 @@ function init {
|
|||
touch $LOOT_DIR/scans/scheduled/weekly.sh 2> /dev/null
|
||||
touch $LOOT_DIR/scans/scheduled/monthly.sh 2> /dev/null
|
||||
TARGET="$(echo $TARGET | sed 's/https:\/\///g' | sed 's/http:\/\///g')"
|
||||
/etc/init.d/metasploit start 2> /dev/null > /dev/null 2>&1 &
|
||||
service postgresql start
|
||||
service metasploit start
|
||||
msfdb start 2> /dev/null > /dev/null
|
||||
|
||||
if [ "$AUTOBRUTE" == "1" ]; then
|
||||
|
|
|
|||
Loading…
Reference in New Issue