Expand TUI guidance and host detection coverage

This commit is contained in:
Luna 2026-07-09 19:16:27 -07:00
parent 3b037646d2
commit 8194d13734
20 changed files with 414 additions and 42 deletions

View file

@ -112,6 +112,14 @@ class TestOtherSignatures(unittest.TestCase):
self.assertIn("memory_obfuscation_allow_comms", v.suggest)
self.assertIn('"jit-runtime"', v.suggest)
def test_process_injection_library_is_review(self):
a = alert("process_injection_library",
"pid=45 comm=sshd executable library mapped from writable/runtime path: /tmp/libinject.so",
sid=100049)
v = triage_alert(a, [], Config(), is_owned=NONE)
self.assertEqual(v.label, REVIEW)
self.assertIn("writable path", v.reason)
if __name__ == "__main__":
unittest.main()