Skip to content
This repository was archived by the owner on Dec 6, 2023. It is now read-only.

Commit f19f137

Browse files
author
mpgn
committed
Fix smbexec.py decode error
1 parent 84222eb commit f19f137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cme/protocols/smb/smbexec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def execute(self, command, output=False):
6969
return self.__outputBuffer
7070

7171
def output_callback(self, data):
72-
self.__outputBuffer += data.decode("utf-8")
72+
self.__outputBuffer += data
7373

7474
def execute_fileless(self, data):
7575
self.__output = gen_random_string(6)

0 commit comments

Comments
 (0)