language
stringlengths
0
24
filename
stringlengths
9
214
code
stringlengths
99
9.93M
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/common.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 // var zombie_execute_button_text = 'Execute' var zombie_reexecute_button_text = 'Re-execute' var re_execute_command_title = 'Re-execute ...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/HooksTab.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 // HooksTab = function() { /* * The panel used to configure the hook. ********************************************/ var hooks_pane...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/Logout.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 // DoLogout = function() { var button = Ext.get('do-logout-menu'); after_logout = function() { // will redirect the UA to the log...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/LogsDataGrid.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 // LogsDataGrid = function(url, page, base) { this.page = page; this.url = url; this.base = typeof(base) != 'undefined' ? ba...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/MainPanel.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 // MainPanel = function(){ this.preview = new Ext.Panel({ id: 'preview', region: 'south', cls:'preview', ...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/ModuleSearching.js
/* * Keyword search for command module panel. * Words in query are searched as separated queries. You can search for exact matching using double qoutes arround query */ function search_module(module_tree, query_string) { if ( query_string.search(/\w/) == -1 ) return tree_array; // copy module tree w/o ExtJ...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/PanelStatusBar.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 // /* * The Beef_StatusBar class provides the functionality of the status bar * at the bottom of each tab in the UI * * @param: {Str...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/PanelViewer.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 // PanelViewer = {}; var mainPanel, zombiesTreeLists, zombieTabs, zombiesManager; Ext.onReady(function() { Ext.QuickTips.init(); zo...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/WelcomeTab.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 // WelcomeTab = function() { <% hook_url = BeEF::Core::Configuration.instance.hook_url %> var bookmarklet = "javascript:%20...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/ZombieDataGrid.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 // ZombieDataGrid = function(url, page, base) { this.page = page; this.url = url; this.base = typeof(base) != 'undefined' ? base :...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/ZombiesMgr.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 // var ZombiesMgr = function(zombies_tree_lists) { //save the list of trees in the object this.zombies_tree_lists = zombies_tree_lists...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/zombiesTreeList.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 // /* * The zombie panel located on the left hand side of the interface. */ zombiesTreeList = function(id) { var title = id.slice...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/ZombieTab.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 // ZombieTab = function(zombie) { main_tab = new ZombieTab_DetailsTab(zombie); log_tab = new ZombieTab_LogTab(zombie); commands_tab = ...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/ZombieTabs.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 // ZombieTabs = function(zombie_tree_list) { //a variable to store the list of trees. this.tree_items = new Array; //we store the ...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabCommands.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 // /* * The command tab panel. Listing the list of commands sent to the zombie. * Loaded in /ui/panel/index.html */ ZombieTab_Command...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabDetails.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 // /* * The main Tab panel for the selected zombie. */ ZombieTab_DetailsTab = function(zombie) { var zombieDetails = new BrowserDeta...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabLogs.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 // /* * The log Tab panel for the selected zombie. */ ZombieTab_LogTab = function(zombie) { var zombieLog = new LogsDataGrid('/api/lo...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabNetwork.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 // /* * The Network tab panel for the selected zombie browser. * Loaded in /ui/panel/index.html */ ZombieTab_Network = function(zombie...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRider.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 // /* * The request Tab panel for the selected zombie. * Loaded in /ui/panel/index.html */ ZombieTab_Requester = function(zombie) { ...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabRTC.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 // /* * The RTC tab panel for the selected zombie browser. * Loaded in /ui/panel/index.html */ ZombieTab_Rtc = function(zombie) { va...
JavaScript
beef/extensions/admin_ui/media/javascript/ui/panel/tabs/ZombieTabXssRays.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 // /* * The XssRays Tab panel for the selected zombie. */ ZombieTab_XssRaysTab = function(zombie) { var commands_statusbar = new Bee...
JavaScript
beef/extensions/admin_ui/media/javascript/ux/PagingStore.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 // /* * PagingStore for Ext 3.2 - v0.5 */ Ext.ns('Ext.ux.data'); Ext.ux.data.PagingStore = Ext.extend(Ext.data.Store, { add: functi...
JavaScript
beef/extensions/admin_ui/media/javascript/ux/StatusBar.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 // /*! * Ext JS Library 3.1.1 * Copyright(c) 2006-2010 Ext JS, LLC * licensing@extjs.com * http://www.extjs.com/license */ /** * @c...
JavaScript
beef/extensions/admin_ui/media/javascript/ux/TabCloseMenu.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 // /*! * Ext JS Library 3.1.1 * Copyright(c) 2006-2010 Ext JS, LLC * licensing@extjs.com * http://www.extjs.com/license */ /** * @c...
JavaScript
beef/extensions/admin_ui/media/javascript/vis.js/vis.min.js
/** * vis.js * https://github.com/almende/vis * * A dynamic, browser-based visualization library. * * @version 4.21.0 * @date 2017-10-12 * * @license * Copyright (C) 2011-2017 Almende B.V, http://almende.com * * Vis.js is dual licensed under both * * * The Apache 2.0 License * http://www.apache.org/...
beef/extensions/admin_ui/media/javascript-min/readme
This directory will contain minified JavaScript files used by the Web UI. Those files are excluded from the GIT report through the .gitignore file.
YAML
beef/extensions/autoloader/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: extension: autoloader: enable: false name: 'Autoloader'
Ruby
beef/extensions/autoloader/extension.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 # module BeEF module Extension module Autoloader end end end require 'extensions/autoloader/model'
Ruby
beef/extensions/autoloader/model.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 # module BeEF module Core module Models class Autoloading < BeEF::Core::Model belongs_to :command end end end ...
Ruby
beef/extensions/customhook/api.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 # module BeEF module Extension module Customhook module RegisterHttpHandlers BeEF::API::Registrar.instance.register(BeEF::...
YAML
beef/extensions/customhook/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: extension: customhook: enable: false name: 'Custom Hook Points with iFrame Impersonation' ...
Ruby
beef/extensions/customhook/extension.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 # module BeEF module Extension module Customhook extend BeEF::API::Extension @short_name = 'customhook' @full_name =...
Ruby
beef/extensions/customhook/handler.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 # module BeEF module Extension module Customhook class Handler def call(env) @body = '' @request = Rac...
HTML
beef/extensions/customhook/html/index.html
<!-- Copyright (c) 2006-2023Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission --> <% @configuration = BeEF::Core::Configuration.instance hook_file = @configuration.get("beef.http.hook_file") %> <html> <head> ...
Ruby
beef/extensions/demos/api.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 # module BeEF module Extension module Demos module RegisterHttpHandlers BeEF::API::Registrar.instance.register(BeEF::Exten...
YAML
beef/extensions/demos/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: extension: demos: enable: false name: 'Demos'
Ruby
beef/extensions/demos/extension.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 # module BeEF module Extension module Demos extend BeEF::API::Extension @short_name = 'demos' @full_name = 'demonstra...
Ruby
beef/extensions/demos/handler.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 # module BeEF module Extension module Demos class Handler < BeEF::Core::Router::Router set :public_folder, File.expand_pat...
HTML
beef/extensions/demos/html/basic.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <!-- Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission --> <head> <tit...
HTML
beef/extensions/demos/html/plain.html
<!-- Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission --> <html> <head> <script src="/hook.js"></script> </head> <body> </body> </html>
HTML
beef/extensions/demos/html/report.html
<!-- Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission --> <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>Loading</title> <script src="/hook.js"></script> </head><b...
HTML
beef/extensions/demos/html/secret_page.html
<!-- Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission --> <html> <head> <title>Secret Page</title> </head> <body> <h1>Secret page</h1> <p> This page is not hooked by <a href="http:...
beef/extensions/demos/html/butcher/butch.css
/* * Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net * Browser Exploitation Framework (BeEF) - http://beefproject.com * See the file 'doc/COPYING' for copying permission */ html { height: 100%; } body { background: #fff; padding: 0; margin: 0; height: 100%; } #content { position: relative; width: 8...
HTML
beef/extensions/demos/html/butcher/index.html
<!-- Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission --> <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html lang="en"> <head...
JavaScript
beef/extensions/demos/html/butcher/jquery-1.12.4.min.js
/*! jQuery v1.12.4 | (c) jQuery Foundation | jquery.org/license */ !function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,fu...
HTML
beef/extensions/demos/html/clickjacking/clickjack_attack.html
<!-- Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html ...
HTML
beef/extensions/demos/html/clickjacking/clickjack_victim.html
<!-- Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net Browser Exploitation Framework (BeEF) - http://beefproject.com See the file 'doc/COPYING' for copying permission --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html x...
Ruby
beef/extensions/dns/api.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 # module BeEF module Extension module Dns module API module NameserverHandler BeEF::API::Registrar.instance.regi...
YAML
beef/extensions/dns/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: extension: dns: enable: false name: 'DNS Server' authors: ['soh_cah_toa'] ...
Ruby
beef/extensions/dns/dns.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 # module BeEF module Extension module Dns # Provides the core DNS nameserver functionality. The nameserver handles incoming reques...
Ruby
beef/extensions/dns/extension.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 # require 'async/dns' module BeEF module Extension module Dns extend BeEF::API::Extension @short_name = 'dns' @full_...
Ruby
beef/extensions/dns/logger.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 # # Disables the logger used by RubyDNS due to its excessive verbosity. class Logger def debug(msg = ''); end def info(msg = ''); end d...
Ruby
beef/extensions/dns/model.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 # module BeEF module Core module Models module Dns # Represents an individual DNS rule. class Rule < BeEF::Core::M...
Ruby
beef/extensions/dns/rest/dns.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 # module BeEF module Extension module Dns # This class handles the routing of RESTful API requests that query BeEF's DNS server ...
Ruby
beef/extensions/dns_rebinding/api.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 # module BeEF module Extension module DNSRebinding module API module ServHandler BeEF::API::Registrar.instance.r...
YAML
beef/extensions/dns_rebinding/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: extension: dns_rebinding: enable: false name: 'DNS Rebinding' authors: ['Milovanov T.I...
Ruby
beef/extensions/dns_rebinding/dns_rebinding.rb
module BeEF module Extension module DNSRebinding # Very simple HTTP server. Its task is only hook victim class Server @debug_mode = false def self.log(msg) warn msg.to_s if @debug_mode end def self.run_server(address, port) server = TCPServer.new(ad...
Ruby
beef/extensions/dns_rebinding/extension.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 # module BeEF module Extension module DNSRebinding extend BeEF::API::Extension @short_name = 'DNS Rebinding' @full_n...
HTML
beef/extensions/dns_rebinding/views/index.html
<html> <head> <script> var commandModuleStr = '<script src="path_to_hookjs_template" type="text/javascript"><\/script>'; document.write(commandModuleStr); </script> </head> </html>
Ruby
beef/extensions/etag/api.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 # module BeEF module Extension module ETag module API module ETagHandler BeEF::API::Registrar.instance.register(...
YAML
beef/extensions/etag/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: extension: etag: enable: false name: 'Server-to-Client Etag Tunnel' authors: ["ovbrosl...
Ruby
beef/extensions/etag/etag.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 # module BeEF module Extension module ETag require 'sinatra/base' require 'singleton' class ETagMessages incl...
Ruby
beef/extensions/etag/extension.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 # module BeEF module Extension module ETag extend BeEF::API::Extension @short_name = 'ETag' @full_name = 'Server-t...
YAML
beef/extensions/evasion/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: extension: evasion: enable: false name: 'Evasion' authors: ["antisnatchor"] ...
Ruby
beef/extensions/evasion/evasion.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 # module BeEF module Extension module Evasion class Evasion include Singleton @@config = BeEF::Core::Configuratio...
Ruby
beef/extensions/evasion/extension.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 # module BeEF module Extension module Evasion extend BeEF::API::Extension @short_name = 'evasion' @full_name = 'Evasi...
Ruby
beef/extensions/evasion/obfuscation/base_64.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 # module BeEF module Extension module Evasion class Base_64 include Singleton def need_bootstrap? true ...
Ruby
beef/extensions/evasion/obfuscation/minify.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 # module BeEF module Extension module Evasion require 'uglifier' class Minify include Singleton def need_bo...
Ruby
beef/extensions/evasion/obfuscation/scramble.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 # module BeEF module Extension module Evasion class Scramble include Singleton def need_bootstrap? fals...
Ruby
beef/extensions/evasion/obfuscation/whitespace.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 # module BeEF module Extension module Evasion class Whitespace include Singleton def need_bootstrap? tr...
Ruby
beef/extensions/events/api.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 # module BeEF module Extension module Events # Mounts the handler for processing browser events. # # @param beef_serve...
YAML
beef/extensions/events/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: extension: events: enable: false name: 'Events'
Ruby
beef/extensions/events/extension.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 # module BeEF module Extension module Events extend BeEF::API::Extension @short_name = 'events_logger' @full_name = '...
Ruby
beef/extensions/events/handler.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 # module BeEF module Extension module Events # # The http handler that manages the Events. # class Handler ...
Ruby
beef/extensions/metasploit/api.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 # module BeEF module Extension module Metasploit module API module MetasploitHooks BeEF::API::Registrar.instance...
YAML
beef/extensions/metasploit/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 # # Enable MSF integration by changing beef.extension.metasploit.enable # to true in BeEF's main config.yaml file. # # Ensure you load the ms...
Ruby
beef/extensions/metasploit/extension.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 # module BeEF module Extension module Metasploit extend BeEF::API::Extension @short_name = 'msf' @full_name = 'Metasp...
Ruby
beef/extensions/metasploit/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 # # This is a dummy module to fool BeEF's loading system class Msf_module < BeEF::Core::Command def output command = BeEF::Core::Models...
Ruby
beef/extensions/metasploit/rpcclient.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 # module BeEF module Extension module Metasploit class RpcClient < ::Msf::RPC::Client include Singleton def initi...
Ruby
beef/extensions/metasploit/rest/msf.rb
require_relative '../../../core/main/router/router' # # Copyright (c) 2006-2023 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # module BeEF module Extension module Metasploit # This class handles the rout...
Ruby
beef/extensions/network/api.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 # module BeEF module Extension module Network module RegisterHttpHandler BeEF::API::Registrar.instance.register(BeEF::Exte...
YAML
beef/extensions/network/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: extension: network: name: 'Network' enable: false authors: ["bcoles"] desc...
Ruby
beef/extensions/network/extension.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 # module BeEF module Extension # # This extension provides a simple interface for interacting with hosts # on a zombie browser's...
Ruby
beef/extensions/network/models/network_host.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 # module BeEF module Core module Models # # Table stores each host identified on the zombie browser's network(s) # ...
Ruby
beef/extensions/network/models/network_service.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 # module BeEF module Core module Models # # Table stores each open port identified on the zombie browser's network(s) ...
Ruby
beef/extensions/network/rest/network.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 # module BeEF module Extension module Network # This class handles the routing of RESTful API requests that interact with network ...
YAML
beef/extensions/notifications/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: extension: notifications: enable: false name: Notifications email: enabl...
Ruby
beef/extensions/notifications/extension.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 # module BeEF module Extension module Notifications extend BeEF::API::Extension @short_name = 'notifications' @full_n...
Ruby
beef/extensions/notifications/notifications.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 # require 'extensions/notifications/channels/email' require 'extensions/notifications/channels/pushover' require 'extensions/notifications/ch...
Ruby
beef/extensions/notifications/channels/email.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 # # # require 'net/smtp' module BeEF module Extension module Notifications module Channels class Email # ...
Ruby
beef/extensions/notifications/channels/pushover.rb
require 'rushover' module BeEF module Extension module Notifications module Channels class Pushover def initialize(message) @config = BeEF::Core::Configuration.instance # Configure the Pushover Client client = Rushover::Client.new(@config.get('beef.ext...
Ruby
beef/extensions/notifications/channels/slack_workspace.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 # require 'slack-notifier' module BeEF module Extension module Notifications module Channels class SlackWorkspace ...
Ruby
beef/extensions/proxy/api.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 # module BeEF module Extension module Proxy module API module RegisterHttpHandler BeEF::API::Registrar.instance....
YAML
beef/extensions/proxy/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: extension: proxy: name: 'Proxy' enable: false address: "127.0.0.1" port: 6...
Ruby
beef/extensions/proxy/extension.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 # module BeEF module Extension module Proxy extend BeEF::API::Extension @short_name = 'proxy' @full_name = 'proxy' ...
Ruby
beef/extensions/proxy/proxy.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 # require 'openssl' module BeEF module Extension module Proxy class Proxy HB = BeEF::Core::Models::HookedBrowser ...
Ruby
beef/extensions/proxy/rest/proxy.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 # module BeEF module Extension module Proxy # This class handles the routing of RESTful API requests for the proxy class Pro...
YAML
beef/extensions/qrcode/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: extension: qrcode: name: 'QR Code Generator' enable: false authors: ["xntrik", "bcoles...
Ruby
beef/extensions/qrcode/extension.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 # module BeEF module Extension module Qrcode extend BeEF::API::Extension @short_name = 'qrcode' @full_name = 'QR Code...
Ruby
beef/extensions/qrcode/qrcode.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 # module BeEF module Extension module Qrcode module QrcodeGenerator BeEF::API::Registrar.instance.register(BeEF::Extension...