Skip to content

Commit

Permalink
Develop (#19)
Browse files Browse the repository at this point in the history
* generic and provisory fix to bug when a workflow have more one step

* better ord

* minify

* create swagger.txt

* added temp/
  • Loading branch information
htrgouvea authored Mar 3, 2023
1 parent 0c2fd49 commit 98bc7eb
Show file tree
Hide file tree
Showing 4 changed files with 255 additions and 235 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
output/
*.DS_Store
.vstags
*~
*~
temp/
24 changes: 12 additions & 12 deletions nozaki.pl
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@ sub main {
delay => 0,
);

Getopt::Long::GetOptions (
"W|workflow=s" => \$workflow,
"u|url=s@" => \@targets,
Getopt::Long::GetOptions (
"A|accept=s" => \$options{accept},
"w|wordlist=s" => \$options{wordlist},
"m|method=s" => \$options{method},
"d|delay=i" => \$options{delay},
"t|timeout=i" => \$options{timeout},
"a|agent=s" => \$options{agent},
"c|content=s" => \$options{content},
"d|delay=i" => \$options{delay},
"e|exclude=s" => \$options{exclude},
"H|header=s%" => \$options{headers},
"w|wordlist=s" => \$options{wordlist},
"W|workflow=s" => \$workflow,
"m|method=s" => \$options{method},
"r|return=s" => \$options{return},
"p|payload=s" => \$options{payload},
"j|json" => \$options{json},
"H|header=s%" => \$options{headers},
"T|tasks=i" => \$options{tasks},
"e|exclude=s" => \$options{exclude},
"S|skip-ssl" => \$options{skipssl},
"T|tasks=i" => \$options{tasks},
"t|timeout=i" => \$options{timeout},
"u|url=s@" => \@targets,
"l|length=s" => \$options{length},
"p|plugin=s" => \$options{plugin},
"c|content=s" => \$options{content}
"p|plugin=s" => \$options{plugin}
);

return Functions::Helper -> new() unless @targets;
Expand Down
Loading

0 comments on commit 98bc7eb

Please sign in to comment.