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 2ce5920 commit 978834bCopy full SHA for 978834b
java/ql/src/Security/CWE/CWE-016/SpringBootActuators.ql
@@ -12,9 +12,8 @@
12
*/
13
14
import java
15
-deprecated import SpringBootActuators
+import SpringBootActuators
16
17
-deprecated query predicate problems(PermitAllCall permitAllCall, string message) {
18
- permitAllCall.permitsSpringBootActuators() and
19
- message = "Unauthenticated access to Spring Boot actuator is allowed."
20
-}
+from PermitAllCall permitAllCall
+where permitAllCall.permitsSpringBootActuators()
+select permitAllCall, "Unauthenticated access to Spring Boot actuator is allowed."
java/ql/src/Security/CWE/CWE-016/SpringBootActuators.qll
@@ -1,5 +1,3 @@
1
-deprecated module;
2
-
3
4
5
/** The class `org.springframework.security.config.annotation.web.builders.HttpSecurity`. */
0 commit comments