Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve IAST sampling defaults #7944

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ public final class ConfigDefaults {
static final int DEFAULT_APPSEC_MAX_STACK_TRACE_DEPTH = 32;
static final String DEFAULT_IAST_ENABLED = "false";
static final boolean DEFAULT_IAST_DEBUG_ENABLED = false;
public static final int DEFAULT_IAST_MAX_CONCURRENT_REQUESTS = 4;
public static final int DEFAULT_IAST_MAX_CONCURRENT_REQUESTS = 1;
public static final int DEFAULT_IAST_VULNERABILITIES_PER_REQUEST = 2;
public static final int DEFAULT_IAST_REQUEST_SAMPLING = 33;
public static final int DEFAULT_IAST_REQUEST_SAMPLING = 100;
static final Set<String> DEFAULT_IAST_WEAK_HASH_ALGORITHMS =
new HashSet<>(asList("SHA1", "SHA-1", "MD2", "MD5", "RIPEMD128", "MD4"));
static final String DEFAULT_IAST_WEAK_CIPHER_ALGORITHMS =
Expand Down
Loading