Skip to content

Commit

Permalink
drafting plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
htrgouvea committed Jan 29, 2023
1 parent 022c1c6 commit 2c85381
Show file tree
Hide file tree
Showing 9 changed files with 93 additions and 27 deletions.
12 changes: 12 additions & 0 deletions plugins/encode/base64.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package Plugins::Encode::Base64 {
use strict;
use warnings;

sub new {
my ($self, @params) = @_;

return 1;
}
}

1;
14 changes: 12 additions & 2 deletions plugins/seeds/BurpSuite.pm
Original file line number Diff line number Diff line change
@@ -1,2 +1,12 @@
use strict;
use warnings;
package Plugins::Seeds::BurpSuite {
use strict;
use warnings;

sub new {
my ($self, @params) = @_;

return 1;
}
}

1;
12 changes: 12 additions & 0 deletions plugins/seeds/openapi.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package Plugins::Seeds::OpenAPI {
use strict;
use warnings;

sub new {
my ($self, @params) = @_;

return 1;
}
}

1;
14 changes: 9 additions & 5 deletions plugins/seeds/passive_collect.pm
Original file line number Diff line number Diff line change
@@ -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();
1;
14 changes: 9 additions & 5 deletions plugins/seeds/robots.pm
Original file line number Diff line number Diff line change
@@ -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();
1;
14 changes: 9 additions & 5 deletions plugins/seeds/scraping.pm
Original file line number Diff line number Diff line change
@@ -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();
1;
12 changes: 12 additions & 0 deletions plugins/seeds/swagger.pm
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package Plugins::Seeds::Swagger {
use strict;
use warnings;

sub new {
my ($self, @params) = @_;

return 1;
}
}

1;
14 changes: 9 additions & 5 deletions plugins/seeds/waybackurls.pm
Original file line number Diff line number Diff line change
@@ -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;
14 changes: 9 additions & 5 deletions plugins/seeds/zap.pm
Original file line number Diff line number Diff line change
@@ -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();
1;

0 comments on commit 2c85381

Please sign in to comment.