@@ -10,6 +10,7 @@ java_fuzz_target_test(
1010 "com.code_intelligence.jazzer.api.FuzzerSecurityIssueHigh" ,
1111 "java.lang.ExceptionInInitializerError" ,
1212 ],
13+ tags = ["dangerous" ],
1314 target_class = "com.example.ObjectInputStreamDeserialization" ,
1415)
1516
@@ -22,6 +23,7 @@ java_fuzz_target_test(
2223 "com.code_intelligence.jazzer.api.FuzzerSecurityIssueHigh" ,
2324 "java.lang.ExceptionInInitializerError" ,
2425 ],
26+ tags = ["dangerous" ],
2527 target_class = "com.example.ReflectiveCall" ,
2628)
2729
@@ -33,6 +35,7 @@ java_fuzz_target_test(
3335 allowed_findings = [
3436 "com.code_intelligence.jazzer.api.FuzzerSecurityIssueHigh" ,
3537 ],
38+ tags = ["dangerous" ],
3639 target_class = "com.example.LibraryLoad" ,
3740 # loading of native libraries is very slow on macos,
3841 # especially using Java 17
@@ -49,6 +52,7 @@ java_fuzz_target_test(
4952 ],
5053 allowed_findings = ["com.code_intelligence.jazzer.api.FuzzerSecurityIssueHigh" ],
5154 expected_warning_or_error = "WARN: Some hooks could not be applied to class files built for Java 7 or lower." ,
55+ tags = ["dangerous" ],
5256 target_class = "com.example.ExpressionLanguageInjection" ,
5357 # The reproducer can't find jaz.Zer and thus doesn't crash.
5458 verify_crash_reproducer = False ,
@@ -159,6 +163,7 @@ java_fuzz_target_test(
159163 "OsCommandInjectionProcessBuilder.java" ,
160164 ],
161165 allowed_findings = ["com.code_intelligence.jazzer.api.FuzzerSecurityIssueCritical" ],
166+ tags = ["dangerous" ],
162167 target_class = "com.example.OsCommandInjectionProcessBuilder" ,
163168 verify_crash_reproducer = False ,
164169)
@@ -169,6 +174,7 @@ java_fuzz_target_test(
169174 "OsCommandInjectionRuntimeExec.java" ,
170175 ],
171176 allowed_findings = ["com.code_intelligence.jazzer.api.FuzzerSecurityIssueCritical" ],
177+ tags = ["dangerous" ],
172178 target_class = "com.example.OsCommandInjectionRuntimeExec" ,
173179 verify_crash_reproducer = False ,
174180)
@@ -243,6 +249,7 @@ java_fuzz_target_test(
243249 # Reproducer does not find the honeypot library and doesn't have the hook.
244250 "java.lang.ExceptionInInitializerError" ,
245251 ],
252+ tags = ["dangerous" ],
246253 target_class = "com.example.ClassLoaderLoadClass" ,
247254)
248255
@@ -489,6 +496,7 @@ java_fuzz_target_test(
489496 allowed_findings = [
490497 "com.code_intelligence.jazzer.api.FuzzerSecurityIssueMedium" ,
491498 ],
499+ tags = ["dangerous" ],
492500 target_class = "com.example.SsrfSocketConnect" ,
493501 verify_crash_reproducer = False ,
494502)
@@ -501,6 +509,7 @@ java_fuzz_target_test(
501509 allowed_findings = [
502510 "com.code_intelligence.jazzer.api.FuzzerSecurityIssueMedium" ,
503511 ],
512+ tags = ["dangerous" ],
504513 target_class = "com.example.SsrfSocketConnectToHost" ,
505514 verify_crash_reproducer = False ,
506515)
@@ -513,6 +522,7 @@ java_fuzz_target_test(
513522 allowed_findings = [
514523 "com.code_intelligence.jazzer.api.FuzzerSecurityIssueMedium" ,
515524 ],
525+ tags = ["dangerous" ],
516526 target_class = "com.example.SsrfUrlConnection" ,
517527 verify_crash_reproducer = False ,
518528)
@@ -525,7 +535,10 @@ java_fuzz_target_test(
525535 allowed_findings = [
526536 "com.code_intelligence.jazzer.api.FuzzerSecurityIssueMedium" ,
527537 ],
528- tags = ["no-jdk8" ],
538+ tags = [
539+ "dangerous" ,
540+ "no-jdk8" ,
541+ ],
529542 target_class = "com.example.SsrfHttpClient" ,
530543 verify_crash_reproducer = False ,
531544)
0 commit comments