mirror of
https://github.com/monoxgas/sRDI
synced 2026-06-06 16:14:36 +00:00
Fix Python + EncodeBlobs bug
Change to bytes
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user