Update parse.py

main
witchdocsec 2024-09-21 12:03:20 +01:00 committed by GitHub
parent 4794878bc2
commit b1f624dc92
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -6,6 +6,7 @@ def parser():
parser.add_argument("-e", "--ext",required=True,help="extension to spoof")
parser.add_argument("-n", "--name",required=True,help="field name for file upload")
parser.add_argument("-f", "--filename",required=True,help="file name to upload with")
parser.add_argument("-h2", "--http2",action="store_true",help="use http2 if supported")
args = parser.parse_args()
return args
return args