diff --git a/plugins/encode/base64.pm b/plugins/encode/base64.pm index e69de29..06f2de4 100644 --- a/plugins/encode/base64.pm +++ b/plugins/encode/base64.pm @@ -0,0 +1,12 @@ +package Plugins::Encode::Base64 { + use strict; + use warnings; + + sub new { + my ($self, @params) = @_; + + return 1; + } +} + +1; \ No newline at end of file diff --git a/plugins/seeds/BurpSuite.pm b/plugins/seeds/BurpSuite.pm index cde9ca2..80d1a15 100644 --- a/plugins/seeds/BurpSuite.pm +++ b/plugins/seeds/BurpSuite.pm @@ -1,2 +1,12 @@ -use strict; -use warnings; \ No newline at end of file +package Plugins::Seeds::BurpSuite { + use strict; + use warnings; + + sub new { + my ($self, @params) = @_; + + return 1; + } +} + +1; \ No newline at end of file diff --git a/plugins/seeds/openapi.pm b/plugins/seeds/openapi.pm index e69de29..87d9099 100644 --- a/plugins/seeds/openapi.pm +++ b/plugins/seeds/openapi.pm @@ -0,0 +1,12 @@ +package Plugins::Seeds::OpenAPI { + use strict; + use warnings; + + sub new { + my ($self, @params) = @_; + + return 1; + } +} + +1; \ No newline at end of file diff --git a/plugins/seeds/passive_collect.pm b/plugins/seeds/passive_collect.pm index 4ce1d76..b993867 100644 --- a/plugins/seeds/passive_collect.pm +++ b/plugins/seeds/passive_collect.pm @@ -1,8 +1,12 @@ -use strict; -use warnings; - -sub main { +package Plugins::Seeds::Passive_Collect { + use strict; + use warnings; + sub new { + my ($self, @params) = @_; + + return 1; + } } -exit main(); \ No newline at end of file +1; \ No newline at end of file diff --git a/plugins/seeds/robots.pm b/plugins/seeds/robots.pm index 4ce1d76..b0eb986 100644 --- a/plugins/seeds/robots.pm +++ b/plugins/seeds/robots.pm @@ -1,8 +1,12 @@ -use strict; -use warnings; - -sub main { +package Plugins::Seeds::Robots { + use strict; + use warnings; + sub new { + my ($self, @params) = @_; + + return 1; + } } -exit main(); \ No newline at end of file +1; \ No newline at end of file diff --git a/plugins/seeds/scraping.pm b/plugins/seeds/scraping.pm index 4ce1d76..8b1b207 100644 --- a/plugins/seeds/scraping.pm +++ b/plugins/seeds/scraping.pm @@ -1,8 +1,12 @@ -use strict; -use warnings; - -sub main { +package Plugins::Seeds::Scraping { + use strict; + use warnings; + sub new { + my ($self, @params) = @_; + + return 1; + } } -exit main(); \ No newline at end of file +1; \ No newline at end of file diff --git a/plugins/seeds/swagger.pm b/plugins/seeds/swagger.pm index e69de29..3b1cc4a 100644 --- a/plugins/seeds/swagger.pm +++ b/plugins/seeds/swagger.pm @@ -0,0 +1,12 @@ +package Plugins::Seeds::Swagger { + use strict; + use warnings; + + sub new { + my ($self, @params) = @_; + + return 1; + } +} + +1; \ No newline at end of file diff --git a/plugins/seeds/waybackurls.pm b/plugins/seeds/waybackurls.pm index 6e6a88c..d435c57 100644 --- a/plugins/seeds/waybackurls.pm +++ b/plugins/seeds/waybackurls.pm @@ -1,8 +1,12 @@ -use strict; -use warnings; +package Plugins::Seeds::WatBackUrls { + use strict; + use warnings; -sub new { - -} + sub new { + my ($self, @params) = @_; + + return 1; + } +} 1; \ No newline at end of file diff --git a/plugins/seeds/zap.pm b/plugins/seeds/zap.pm index 4ce1d76..dfc523f 100644 --- a/plugins/seeds/zap.pm +++ b/plugins/seeds/zap.pm @@ -1,8 +1,12 @@ -use strict; -use warnings; - -sub main { +package Plugins::Seeds::ZAP { + use strict; + use warnings; + sub new { + my ($self, @params) = @_; + + return 1; + } } -exit main(); \ No newline at end of file +1; \ No newline at end of file