aboutsummaryrefslogtreecommitdiffstats
path: root/checker/src/checker.py
diff options
context:
space:
mode:
authorLouis Burda <quent.burda@gmail.com>2021-06-24 11:32:26 +0200
committerLouis Burda <quent.burda@gmail.com>2021-06-24 11:32:48 +0200
commitcc1bbb8f1e827863b679932496cf06fa3d5bf81a (patch)
treea84ffa9661d70d0170860cfaea6342c754709e63 /checker/src/checker.py
parenta0bd3d833d916cadd23d17d0b3784e28c729967d (diff)
downloadenowars5-service-stldoctor-cc1bbb8f1e827863b679932496cf06fa3d5bf81a.tar.gz
enowars5-service-stldoctor-cc1bbb8f1e827863b679932496cf06fa3d5bf81a.zip
bumped enochecker to handle closed connections correctly, fixed added code that prevented exploiting flagstore 2
Diffstat (limited to 'checker/src/checker.py')
-rw-r--r--checker/src/checker.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/checker/src/checker.py b/checker/src/checker.py
index 8f9334d..f65a033 100644
--- a/checker/src/checker.py
+++ b/checker/src/checker.py
@@ -371,7 +371,7 @@ class STLDoctorChecker(BaseChecker):
self.debug(b"Retrieving file " + fhash + b" at index " + index_dict[fhash])
conn.write(index_dict[fhash] + b"\ny\n")
fileinfo = conn.recvuntil(self.prompt)
- # self.debug("File contents:\n" + fileinfo.decode("latin1"))
+ #self.debug("File contents:\n" + fileinfo.decode("latin1"))
found = self.search_flag_bytes(fileinfo)
if found is not None or i == len(targets) - 1:
break