File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
core/src/main/kotlin/org/evomaster/core/problem/httpws Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,6 @@ abstract class HttpWsCallResult : EnterpriseActionResult {
26
26
const val APPLIED_LINK = " APPLIED_LINK"
27
27
const val LOCATION = " LOCATION"
28
28
29
- // TODO: Seran, add new entry for SSRF detection. boolean?
30
29
const val VULNERABLE_SSRF = " VULNERABLE_SSRF"
31
30
}
32
31
@@ -123,7 +122,7 @@ abstract class HttpWsCallResult : EnterpriseActionResult {
123
122
fun getAppliedLink (): Boolean = getResultValue(APPLIED_LINK )?.toBoolean() ? : false
124
123
125
124
/* *
126
- * FIXME : When dealing with additional vulnerabilities, consider changing the data structure.
125
+ * TODO : When dealing with additional vulnerabilities, consider changing the data structure.
127
126
*/
128
127
fun setVulnerableForSSRF (on : Boolean ) = addResultValue(VULNERABLE_SSRF , on.toString())
129
128
fun getVulnerableForSSRF () : Boolean = getResultValue(VULNERABLE_SSRF )?.toBoolean() ? : false
You can’t perform that action at this time.
0 commit comments