From 1f741d7c7091e7f2f043b07ccdf5f51dce4260f1 Mon Sep 17 00:00:00 2001 From: Infected Drake Date: Fri, 29 Mar 2019 23:40:43 +0530 Subject: [PATCH] Update obfu.py --- others/obfu.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/others/obfu.py b/others/obfu.py index 3590277..5910d21 100644 --- a/others/obfu.py +++ b/others/obfu.py @@ -46,7 +46,7 @@ def main(): # Required Options required.add_argument('-s', '--str', help='String to obfuscate', dest='str') - required.add_argument('-e', '--enc', help='Encoding type. eg: ibm037, ibm420, etc', dest='enc') + required.add_argument('-e', '--enc', help='Encoding type. eg: ibm037, utf16, etc', dest='enc') # Optional Arguments (main stuff and necessary) optional.add_argument('-ueo', help='URL Encode Output', dest='ueo', action='store_true') @@ -59,4 +59,4 @@ def main(): print('Output: %s' % (paramEncode(params=args.str, charset=args.enc, urlDecodeInput=args.udi, urlEncodeOutput=args.ueo))) if __name__ == '__main__': - main() \ No newline at end of file + main()