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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2025-3515 — WordPress 파일 업로드 RCE 익스플로잇 | Kitploit
도구/GitHubGitHub/blueisbeautiful/cve-2025-3515
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationWeb SecurityPenetration Testing
GitHubblueisbeautiful/cve-2025-3515

CVE-2025-3515

WordPress 파일 업로드 RCE 익스플로잇

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2025-3515 - WordPress 파일 업로드 RCE

사용법

root@kitploit:~
python3 exploit.py <target>

개요

CVE-2025-3515는 "Drag and Drop Multiple File Upload for Contact Form 7" WordPress 플러그인의 파일 업로드 취약점으로, 인증되지 않은 공격자가 악성 파일을 업로드하여 원격 코드 실행(RCE)을 달성할 수 있게 합니다.

  • 플러그인: drag-and-drop-multiple-file-upload-contact-form-7
  • 영향받는 버전: ≤ 1.3.8.9
  • 발견자: mikemyers (Wordfence)

기술적 세부사항

취약한 구성 요소

  • 파일: /inc/dnd-upload-cf7.php
  • 함수: dnd_upload_cf7_upload() (856행)

블랙리스트에 누락된 확장자: .phar, .php5, .inc

패치(버전 1.3.9.0)도 취약한 것으로 보임

추가 발견 사항

1. 파일 쓰기 작업

root@kitploit:~
// Line 107-108 - Potential path traversal
if ( $handle = fopen( $htaccess_file, 'w' ) ) {
    fwrite( $handle, "Options -Indexes \n <Files *.php> \n deny from all \n </Files>" );

2. 로그 파일 생성

root@kitploit:~
// Line 523-524 - Unvalidated log writing
$file = fopen( $uploads_dir['upload_dir']."/logs.txt", "a");
fwrite( $file, "\n". ( is_array( $message ) ? print_r( $message, true ) : $message ) );

탐지

파일 시스템 지표

root@kitploit:~
# Search for suspicious uploads
find /wp-content/uploads/ -name "*.phar" -o -name "*.php5" -o -name "*.inc"

# Check for web shells
grep -r "system\|exec\|shell_exec" /wp-content/uploads/

로그 분석

root@kitploit:~
# Apache/Nginx access logs
grep "admin-ajax.php" /var/log/apache2/access.log | grep "dnd_codedropz_upload"

# WordPress debug logs
grep "dnd_upload_cf7_upload" /wp-content/debug.log

참고 자료

  • Wordfence 위협 인텔리전스
  • WordPress 플러그인 저장소
  • Professor6T9 PoC
도구 다운로드