Update FileAnalysis.cs

This commit is contained in:
Carlos Polop 2022-11-02 18:37:11 +00:00 committed by GitHub
parent d382de1cb1
commit 3039ce555d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -367,7 +367,7 @@ namespace winPEAS.Checks
timer.Stop();
TimeSpan timeTaken = timer.Elapsed;
if (timeTaken.TotalMilliseconds > 1000)
if (timeTaken.TotalMilliseconds > 5000)
Beaprint.PrintDebugLine($"\nThe regex {regex.regex} took {timeTaken.TotalMilliseconds}s in {f.FullPath}");
}
}