Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ataka/executor/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ async def exec_in_container_and_poll_output():
if message is None:
break

yield message[0], message[1].decode()
yield message[0], message[1].decode(errors='ignore')
except DockerError as e:
print(f"DOCKER EXECUTION ERROR for {execution.exploit.id} (service {execution.exploit.service}) " \
f"by {execution.exploit.author} against target {execution.target.ip}\n" \
Expand Down