fix bug that was blocking module output (such as mimikatz) from showing on screen

readme-wiki
Carrie Roberts 2017-11-01 09:13:07 -06:00
parent 6a283719f3
commit 2475ef3b9d
1 changed files with 4 additions and 1 deletions

View File

@ -1534,7 +1534,10 @@ class Agents:
pk = (pk + 1) % 65536
cur.execute("INSERT INTO results (id, agent, data) VALUES (?,?,?)",(pk, sessionID, data))
else:
keyLogTaskID = cur.execute("SELECT id FROM taskings WHERE agent=? AND data LIKE \"function Get-Keystrokes%\"", [sessionID]).fetchone()[0]
try:
keyLogTaskID = cur.execute("SELECT id FROM taskings WHERE agent=? AND data LIKE \"function Get-Keystrokes%\"", [sessionID]).fetchone()[0]
except Exception as e:
pass
cur.execute("UPDATE results SET data=data||? WHERE id=? AND agent=?", [data, taskID, sessionID])
finally: