-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added
WorkerSet#load_file
(issue #85).
- Loading branch information
1 parent
440462a
commit 013027b
Showing
3 changed files
with
47 additions
and
0 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
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,23 @@ | ||
require 'ronin/recon/worker' | ||
|
||
module Ronin | ||
module Recon | ||
class TestWorker < Worker | ||
|
||
register 'test_worker' | ||
|
||
summary 'Test worker' | ||
description <<~DESC | ||
This is a test worker. | ||
DESC | ||
author 'Postmodern', email: 'postmodern.mod3@gmail.com' | ||
|
||
intensity :passive | ||
|
||
def process(value) | ||
# no-op | ||
end | ||
|
||
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