Merge pull request #1912 from beefproject/update_sw_port_scanner
fixed a few spelling mistakes and changed the name
This commit is contained in:
@@ -43,7 +43,7 @@ beef.websocket = {
|
||||
},
|
||||
|
||||
/**
|
||||
* Send Helo message to the BeEF server and start async polling.
|
||||
* Send Hello message to the BeEF server and start async polling.
|
||||
*/
|
||||
start:function () {
|
||||
new beef.websocket.init();
|
||||
|
||||
@@ -102,7 +102,7 @@ module BeEF
|
||||
|
||||
# new zombie
|
||||
unless msg_hash['cookie'].nil?
|
||||
print_debug("[WebSocket] Browser says helo! WebSocket is running")
|
||||
print_debug("[WebSocket] Browser says hello! WebSocket is running")
|
||||
# insert new connection in activesocket
|
||||
@@activeSocket["#{msg_hash["cookie"]}"] = ws
|
||||
print_debug("[WebSocket] activeSocket content [#{@@activeSocket}]")
|
||||
|
||||
@@ -5,11 +5,11 @@
|
||||
#
|
||||
beef:
|
||||
module:
|
||||
sw_port_scanner:
|
||||
fetch_port_scanner:
|
||||
enable: true
|
||||
category: "Network"
|
||||
name: "SW Port Scanner"
|
||||
description: " Uses web workers to port scan"
|
||||
name: "Fetch Port Scanner"
|
||||
description: " Uses fetch to test the response in order to determine if a port is open or not"
|
||||
authors: ["Crimes by Will", "jcrew99"]
|
||||
# http://caniuse.com/cors
|
||||
target:
|
||||
@@ -3,7 +3,7 @@
|
||||
# Browser Exploitation Framework (BeEF) - http://beefproject.com
|
||||
# See the file 'doc/COPYING' for copying permission
|
||||
#
|
||||
class Sw_port_scanner < BeEF::Core::Command
|
||||
class Fetch_port_scanner < BeEF::Core::Command
|
||||
|
||||
# set and return all options for this module
|
||||
def self.options
|
||||
Reference in New Issue
Block a user