From b5392df7a92c74857e798222f6c88c1bb0ddfc28 Mon Sep 17 00:00:00 2001 From: "Jeffrey A. Robinson" Date: Tue, 11 Jan 2022 13:03:23 -0800 Subject: [PATCH] Analyze now outputs if a server has a backdoor installed or not --- src/Terminal/Terminal.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Terminal/Terminal.ts b/src/Terminal/Terminal.ts index e46281a82..806e79fa7 100644 --- a/src/Terminal/Terminal.ts +++ b/src/Terminal/Terminal.ts @@ -315,6 +315,7 @@ export class Terminal implements ITerminal { this.print("Root Access: " + (hasAdminRights ? "YES" : "NO")); this.print("Can run scripts on this host: " + (hasAdminRights ? "YES" : "NO")); if (currServ instanceof Server) { + this.print("Backdoor: " + (currServ.backdoorInstalled ? "YES" : "NO")); const hackingSkill = currServ.requiredHackingSkill; this.print("Required hacking skill for hack() and backdoor: " + (!isHacknet ? hackingSkill : "N/A")); const security = currServ.hackDifficulty;