Gality369 / CS-Loader

CS免杀
GNU General Public License v3.0
819 stars 143 forks source link

go追加shellcode报错 #13

Open leojjj opened 3 years ago

leojjj commented 3 years ago

TypeError: a bytes-like object is required, not 'str'

handbye commented 3 years ago

同样的问题:

(hack) C:\Users\bingo\Downloads>python generator.py  aaa 11.jpg
Traceback (most recent call last):
  File "generator.py", line 139, in <module>
    main()
  File "generator.py", line 118, in main
    baseStr = base64.b64encode(shellcode)
  File "C:\Users\bingo\anaconda3\envs\hack\lib\base64.py", line 58, in b64encode
    encoded = binascii.b2a_base64(s, newline=False)
TypeError: a bytes-like object is required, not 'str'
Gality369 commented 3 years ago

这个是由于python版本的问题,按照错误提示把str转byte类型就可以了

handbye commented 3 years ago

用python2解决问题