Fix Python + EncodeBlobs bug

Change to bytes
This commit is contained in:
Nick Landers
2019-08-23 15:02:12 -06:00
committed by GitHub
parent d69a262a71
commit 5c4fae4a9f
+3 -3
View File
@@ -17,8 +17,8 @@ DotNetTemplate = """
"""
PythonTemplate = """
rdiShellcode32 = "{}"
rdiShellcode64 = "{}"
rdiShellcode32 = b'{}'
rdiShellcode64 = b'{}'
"""
def main():
@@ -109,4 +109,4 @@ def main():
print("")
if __name__ == '__main__':
main()
main()