-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdemo.sh
executable file
·24 lines (20 loc) · 1.2 KB
/
demo.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash
# For demo purposes only, runs demo.py
# Running the propagation script across numerous services (SSH, Web)
echo "Running the propagation script across numerous services (SSH, Web)"
./autocompliance/src/demo.py -t src/test_files/ip_list_short.txt -p 22,25,80 -u admin -f \
src/test_files/passwords_list_short.txt
# Running the propagation script just across SSH
echo "Running the propagation script just across SSH"
./autocompliance/src/demo.py -t src/test_files/ip_list_short.txt -p 22 -u root -f \
src/test_files/passwords_list_short.txt
# Running the propagation script just across SSH and spreading a specific file.
echo "Running the propagation script just across SSH and spreading a \
specific file"
./autocompliance/src/demo.py -t src/test_files/ip_list_short.txt -p 22 -u root -f \
src/test_files/passwords_list_short.txt -d src/test_files/file.txt
# Running the propagation script across SSH but acquiring IPs through a local
# scan and then subsequently self propagating.
echo "Running the propagation script across SSH but acquiring IPs through a \
local scan and then subsequently self propagating."
./autocompliance/src/demo.py -L -p 22 -u root -f src/test_files/passwords_list_short.txt -P