Skip to content

Commit 321e8c5

Browse files
committed
enabling by default SQLi, XSS and SSRF
1 parent 596a0eb commit 321e8c5

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

core/src/main/kotlin/org/evomaster/core/EMConfig.kt

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2866,20 +2866,17 @@ class EMConfig {
28662866
var security = true
28672867

28682868

2869-
@Experimental
28702869
@Cfg("To apply SSRF detection as part of security testing.")
28712870
@DependsOnTrueFor("security")
2872-
var ssrf = false
2871+
var ssrf = true
28732872

2874-
@Experimental
28752873
@Cfg("To apply XSS detection as part of security testing.")
28762874
@DependsOnTrueFor("security")
2877-
var xss = false
2875+
var xss = true
28782876

2879-
@Experimental
28802877
@Cfg("To apply SQLi detection as part of security testing.")
28812878
@DependsOnTrueFor("security")
2882-
var sqli = false
2879+
var sqli = true
28832880

28842881
@Experimental
28852882
@Cfg("Injected sleep duration (in seconds) used inside the malicious payload to detect time-based vulnerabilities.")

0 commit comments

Comments
 (0)