You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
However, with this hook, exception is raised when generating coverage report.
The cause is, my hook is effective for Pattern.java:1775new ArrayList<>(10);, but the classpath argument does not work here, resulting in a NoClassDefFoundError.
Stacktrace:
Exception in thread "Thread-2" java.lang.NoClassDefFoundError: org/example/hook/HugeArrayHooks
at java.base/java.util.regex.Pattern.compile(Pattern.java:1775)
at java.base/java.util.regex.Pattern.<init>(Pattern.java:1430)
at java.base/java.util.regex.Pattern.compile(Pattern.java:1069)
at com.code_intelligence.jazzer.third_party.nonapi.io.github.classgraph.scanspec.AcceptReject.globToPattern(AcceptReject.java:585)
at com.code_intelligence.jazzer.third_party.nonapi.io.github.classgraph.scanspec.AcceptReject$AcceptRejectWholeString.addToReject(AcceptReject.java:304)
at com.code_intelligence.jazzer.third_party.io.github.classgraph.ClassGraph.rejectPackages(ClassGraph.java:891)
at com.code_intelligence.jazzer.instrumentor.CoverageRecorder.analyzeAllUncoveredClasses(CoverageRecorder.kt:225)
at com.code_intelligence.jazzer.instrumentor.CoverageRecorder.analyzeCoverage(CoverageRecorder.kt:193)
at com.code_intelligence.jazzer.instrumentor.CoverageRecorder.computeFileCoverage(CoverageRecorder.kt:79)
at com.code_intelligence.jazzer.instrumentor.CoverageRecorder.dumpCoverageReport(CoverageRecorder.kt:73)
at com.code_intelligence.jazzer.instrumentor.CoverageRecorder.dumpCoverageReport$default(CoverageRecorder.kt:71)
at com.code_intelligence.jazzer.instrumentor.CoverageRecorder.dumpCoverageReport(CoverageRecorder.kt)
at com.code_intelligence.jazzer.driver.FuzzTargetRunner.shutdown(FuzzTargetRunner.java:445)
at java.base/java.lang.Thread.run(Thread.java:833)
I haven't looked into jazzer's implementation about classloader and instrumention. Some possible fix may be use separate classloaders for fuzzing and others(not hook), or reload/restore after fuzzing.
The text was updated successfully, but these errors were encountered:
@tkmikan - thanks for the feedback on this issue. Are you still using Jazzer?
You may have seen there haven't been any updates for a while....
We stopped maintaining Jazzer/Jazzer.js as open source.
But we'd be happy to understand what you're trying to achieve with it, and help you if we can! For example, maybe our AI-powered fuzz testing platform is the superior choice...
Ping me if interested?
Ping me? david[dot]merian [at] code-intelligence[dot]com
TLDR: Hooks are not removed after fuzz ends, while their classpath is removed.
Details:
I am fuzzing some code taking user input as ArrayList size e.g.
If the fuzzer provides a large int, it will take large memory and long time, so I write a hook to avoid this like:
However, with this hook, exception is raised when generating coverage report.
The cause is, my hook is effective for Pattern.java:1775
new ArrayList<>(10);
, but the classpath argument does not work here, resulting in aNoClassDefFoundError
.Stacktrace:
I haven't looked into jazzer's implementation about classloader and instrumention. Some possible fix may be use separate classloaders for fuzzing and others(not hook), or reload/restore after fuzzing.
The text was updated successfully, but these errors were encountered: