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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
CVE-2022-0853 — UserTransaction을 반복적으로 사용할 때 JBoss 클라이언트의 메모리 누수를 시연하며, CVE-2022-0853에 대한 PoC 및 분석을 포함합니다. | Kitploit
도구/GitHubGitHub/bytehackr/cve-2022-0853
Memory ForensicsVulnerability AnalysisCode AnalysisExploitationDebuggers
GitHubbytehackr/cve-2022-0853

CVE-2022-0853

UserTransaction을 반복적으로 사용할 때 JBoss 클라이언트의 메모리 누수를 시연하며, CVE-2022-0853에 대한 PoC 및 분석을 포함합니다.

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

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

CVE-2022-0853

CVE-2022-0853

jboss 클라이언트 측에서 UserTransaction을 반복적으로 사용할 때 발생하는 메모리 누수입니다.

예를 들어:

private void testTransaction() throws Exception {

root@kitploit:~
 for(int i=1; i< 500000; i++) {
   System.out.println("Starting process " + i);

   // get the UserTransaction and EJB Proxy
   Context ctx = getInitialContext(host, port, username, password);
   UserTransaction tx = getUserTransaction(ctx);
   ControllerRemote cr = (ControllerRemote)
  ctx.lookup("Controller/Controller" + "!com.test.usertransaction.ControllerRemote");

   try {
     tx.begin();
   }
   catch(Exception ex1) {
     ex1.printStackTrace();
   }
   //System.out.println("user transaction started");

   cr.mainCall();

   try {
     tx.commit();;
   }
   catch(Exception ex1) {
     ex1.printStackTrace();
     throw ex1;
   }
   //System.out.println("commited user transaction");

   if(ctx != null)
     ctx.close();
 }

}

트랜잭션은 EAP 7.3에 배포된 EJB에서 원격 클라이언트에 의해 실행됩니다. 트랜잭션은 50000회 반복됩니다. 반복이 끝나면 메모리 누수가 관찰됩니다. 32%의 메모리가 org.wildfly.transaction.client.provider.remoting.TransactionClientChannel에 의해 점유됩니다.

도구 다운로드