From 72f9031c2a632ba494b1b23a5025f4014237d850 Mon Sep 17 00:00:00 2001 From: Codepulze <151552809+EvilBytecode@users.noreply.github.com> Date: Sun, 7 Jul 2024 09:36:57 +0100 Subject: [PATCH] Update UsernameCheck.go Add + Bruno + Georgre, used for runtime analysis (usernames) --- AntiVirtualization/UsernameCheck/UsernameCheck.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AntiVirtualization/UsernameCheck/UsernameCheck.go b/AntiVirtualization/UsernameCheck/UsernameCheck.go index ca007c6..b2b758c 100644 --- a/AntiVirtualization/UsernameCheck/UsernameCheck.go +++ b/AntiVirtualization/UsernameCheck/UsernameCheck.go @@ -8,7 +8,7 @@ import ( // CheckForBlacklistedNames checks if the current username matches any blacklisted names. // It returns true if a blacklisted name is found, otherwise false. func CheckForBlacklistedNames() bool { - bn := []string{"Johnson", "Miller", "malware", "maltest", "CurrentUser", "Sandbox", "virus", "John Doe", "test user", "sand box", "WDAGUtilityAccount"} + bn := []string{"Johnson", "Miller", "malware", "maltest", "CurrentUser", "Sandbox", "virus", "John Doe", "test user", "sand box", "WDAGUtilityAccount", "Bruno", "george"} user := strings.ToLower(os.Getenv("USERNAME")) for _, name := range bn { if user == strings.ToLower(name) {