-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
128 changed files
with
814 additions
and
817 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
### BeEF ### | ||
beef.db | ||
beef.log | ||
test/msf-test | ||
extensions/admin_ui/media/javascript-min/ | ||
custom-config.yaml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
class CreateCommandModules < ActiveRecord::Migration[6.0] | ||
|
||
def change | ||
|
||
create_table :command_modules do |t| | ||
t.text :name | ||
t.text :path | ||
end | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
class CreateHookedBrowsers < ActiveRecord::Migration[6.0] | ||
|
||
def change | ||
|
||
create_table :hooked_browsers do |t| | ||
t.text :session | ||
t.text :ip | ||
t.text :firstseen | ||
t.text :lastseen | ||
t.text :httpheaders | ||
t.text :domain | ||
t.integer :port | ||
t.integer :count | ||
t.boolean :is_proxy | ||
end | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
class CreateLogs < ActiveRecord::Migration[6.0] | ||
|
||
def change | ||
|
||
create_table :logs do |t| | ||
t.text :logtype | ||
t.text :event | ||
t.datetime :date | ||
t.references :hooked_browser | ||
end | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
class CreateCommands < ActiveRecord::Migration[6.0] | ||
|
||
def change | ||
|
||
create_table :commands do |t| | ||
t.references :command_module | ||
t.references :hooked_browser | ||
t.text :data | ||
t.datetime :creationdate | ||
t.text :label | ||
t.boolean :instructions_sent, default: false | ||
end | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
class CreateResults < ActiveRecord::Migration[6.0] | ||
|
||
def change | ||
|
||
create_table :results do |t| | ||
t.references :command | ||
t.references :hooked_browser | ||
t.datetime :date | ||
t.integer :status | ||
t.text :data | ||
end | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
class CreateOptionCaches < ActiveRecord::Migration[6.0] | ||
|
||
def change | ||
|
||
create_table :option_caches do |t| | ||
t.text :name | ||
t.text :value | ||
end | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
class CreateBrowserDetails < ActiveRecord::Migration[6.0] | ||
|
||
def change | ||
|
||
create_table :browser_details do |t| | ||
t.text :session_id | ||
t.text :detail_key | ||
t.text :detail_value | ||
end | ||
|
||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
class CreateExecutions < ActiveRecord::Migration[6.0] | ||
|
||
def change | ||
|
||
create_table :executions do |t| | ||
t.text :session_id | ||
t.integer :mod_count | ||
t.integer :mod_successful | ||
t.text :mod_body | ||
t.text :exec_time | ||
t.text :rule_token | ||
t.boolean :is_sent | ||
end | ||
|
||
end | ||
|
||
end |
Oops, something went wrong.