Delete lib directory

main
witchdocsec 2024-09-20 11:26:29 +01:00 committed by GitHub
parent 71f4dd190c
commit 4816121f89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 11 deletions

View File

@ -1,11 +0,0 @@
import argparse
def parser():
parser = argparse.ArgumentParser(description="expload args")
parser.add_argument("-u", "--url",required=True,help="url to upload to")
parser.add_argument("-p", "--payload",required=True,help="path to file to upload")
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")
args = parser.parse_args()
return args