gpt4 book ai didi

Python 3 - 类型错误 : can only concatenate str (not "bytes") to str

转载 作者:行者123 更新时间:2023-12-03 11:05:45 25 4
gpt4 key购买 nike

我有这个错误的代码,找不到修复程序。

49         os.system('powershell -enc 
'+base64.b64encode(addpermissions.encode('utf_16_le')))
.
.
.
137 HexRegHash, HexRegSysk, jd, skew1, gbg, data = getRegistryValues(HexRID)

我有这个错误:

    Traceback (most recent call last):
File "hash.py", line 137, in <module>
HexRegHash, HexRegSysk, jd, skew1, gbg, data =
getRegistryValues(HexRID)
File "hash.py", line 49, in getRegistryValues
os.system('powershell -enc
'+base64.b64encode(addpermissions.encode('utf_16_le')))
TypeError: can only concatenate str (not "bytes") to str

最佳答案

base64.b64encode 生成字节流,而不是字符串。因此,为了使串联工作正常,您必须首先使用 str(base64.b64encode(addpermissions.encode('utf_16_le')))

将其转换为字符串
b64cmd = base64.b64encode(cmd.encode('utf_16_le')).decode('utf-8')
os.system('powershell -enc ' + b64cmd)

编辑:正常的字符串转换不适用于 os.system,而是使用 decode('utf-8')

关于Python 3 - 类型错误 : can only concatenate str (not "bytes") to str,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57172737/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com