We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db46e3d commit 72f9031Copy full SHA for 72f9031
AntiVirtualization/UsernameCheck/UsernameCheck.go
@@ -8,7 +8,7 @@ import (
8
// CheckForBlacklistedNames checks if the current username matches any blacklisted names.
9
// It returns true if a blacklisted name is found, otherwise false.
10
func CheckForBlacklistedNames() bool {
11
- 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"}
12
user := strings.ToLower(os.Getenv("USERNAME"))
13
for _, name := range bn {
14
if user == strings.ToLower(name) {
0 commit comments