Skip to content

Commit

Permalink
Merge pull request #13 from unix-ninja/experimental
Browse files Browse the repository at this point in the history
v0.10.1
  • Loading branch information
unix-ninja authored Sep 16, 2022
2 parents d308623 + 79bb9b2 commit 5db9903
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@ pyvenv.cfg
.flake8
shellfire.egg-info
dist
.vscode
.vscode
Makefile
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
long_description = fh.read()

setup(name='shellfire',
version='0.10',
version='0.10.1',
description=(
'shellfire is an exploitation shell focusing on exploiting command '
'injection vulnerabilities, eg., LFI, RFI, SSTI, etc.'
Expand Down
9 changes: 6 additions & 3 deletions shellfire/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -646,7 +646,8 @@ def send_payload():
"description": "",
"help_text": [
".cookies - show current cookies to be sent with each request.\n",
".cookies <json> - a json string representing cookies you wish to send.\n",
".cookies <string> - a string representing cookies you wish to send.\n",
" strings can be json or url encoded.\n",
" use '{}' to specify where command injection goes.\n",
],
},
Expand Down Expand Up @@ -691,7 +692,8 @@ def send_payload():
"description": "",
"help_text": [
".headers default - sets the headers back to the shellfire defaults.\n",
".headers <json> - upserts the headers in the JSON object to the header config.\n",
".headers <string> - upserts the headers from your string into the header config.\n",
" strings can be json or url encoded.\n",
" use '{}' to specify where command injection goes.\n",
],
},
Expand Down Expand Up @@ -762,7 +764,8 @@ def send_payload():
"func": cmd_post,
"description": "",
"help_text": [
".post <json> - a json string representing post data you wish to send.\n",
".post <string> - a string representing post data you wish to send.\n",
" strings can be json or url encoded.\n",
" use '{}' to specify where command injection goes.\n",
]
},
Expand Down

0 comments on commit 5db9903

Please sign in to comment.