From 11bf362b8540cfa43b83e6ddc582e7fc7ef77727 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Siedlecki?= Date: Fri, 14 Apr 2023 13:17:09 +0200 Subject: [PATCH] fix typo in README.md --- .../python/bypass-python-sandboxes/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generic-methodologies-and-resources/python/bypass-python-sandboxes/README.md b/generic-methodologies-and-resources/python/bypass-python-sandboxes/README.md index ae76fbb8b..3a3dfaabf 100644 --- a/generic-methodologies-and-resources/python/bypass-python-sandboxes/README.md +++ b/generic-methodologies-and-resources/python/bypass-python-sandboxes/README.md @@ -134,7 +134,7 @@ exec(compile('def myFunc():\n\ta="hello word"\n\tprint(a)\nmyFunc()', '', #Octal exec("\137\137\151\155\160\157\162\164\137\137\50\47\157\163\47\51\56\163\171\163\164\145\155\50\47\154\163\47\51") #Hex -exec("\x5f\x5f\x69\x6d\xIf youca70\x6f\x72\x74\x5f\x5f\x28\x27\x6f\x73\x27\x29\x2e\x73\x79\x73\x74\x65\x6d\x28\x27\x6c\x73\x27\x29") +exec("\x5f\x5f\x69\x6d\x70\x6f\x72\x74\x5f\x5f\x28\x27\x6f\x73\x27\x29\x2e\x73\x79\x73\x74\x65\x6d\x28\x27\x6c\x73\x27\x29") #Base64 exec('X19pbXBvcnRfXygnb3MnKS5zeXN0ZW0oJ2xzJyk='.decode("base64")) #Only python2 exec(__import__('base64').b64decode('X19pbXBvcnRfXygnb3MnKS5zeXN0ZW0oJ2xzJyk='))