Skip to content

Commit 72f9031

Browse files
authored
Update UsernameCheck.go
Add + Bruno + Georgre, used for runtime analysis (usernames)
1 parent db46e3d commit 72f9031

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AntiVirtualization/UsernameCheck/UsernameCheck.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
// CheckForBlacklistedNames checks if the current username matches any blacklisted names.
99
// It returns true if a blacklisted name is found, otherwise false.
1010
func CheckForBlacklistedNames() bool {
11-
bn := []string{"Johnson", "Miller", "malware", "maltest", "CurrentUser", "Sandbox", "virus", "John Doe", "test user", "sand box", "WDAGUtilityAccount"}
11+
bn := []string{"Johnson", "Miller", "malware", "maltest", "CurrentUser", "Sandbox", "virus", "John Doe", "test user", "sand box", "WDAGUtilityAccount", "Bruno", "george"}
1212
user := strings.ToLower(os.Getenv("USERNAME"))
1313
for _, name := range bn {
1414
if user == strings.ToLower(name) {

0 commit comments

Comments
 (0)