Replies: 2 comments 3 replies
-
|
@BigAlQ |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
the same thing happened to me. it printed a report.md file with the findings, but the program crashed at the end. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Whenever I run
Adery .I keep on getting this message:thread 'main' panicked at /home/palestine/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/aderyn-0.1.9/src/lib.rs:122:86:
called
Result::unwrap()on anErrvalue: Error("unexpected character 'a' while parsing major version number")note: run with
RUST_BACKTRACE=1environment variable to display a backtraceHowever, this is what ChatGPT has to say: The error here:
unexpected character 'a' while parsing major version number
This usually happens when Aderyn tries to read a Solidity compiler version or some other version string and encounters something unexpected, like:
0.8.20+commit.a1b79de6
The +commit.a1b79de6 part is not a plain number, so unwrap() fails while trying to parse it.
4️⃣ What this means
This is a bug in Aderyn: it doesn’t fully support the full Solc version string format that Foundry or Solidity uses.
Your analysis did run partially (it printed a report), but the program crashed at the end.
The report.md file should still contain useful findings.
Is this a problem on Aderyn's part? (For context I still got a report and Aderyn successfully detected vulnerabilities.)
Beta Was this translation helpful? Give feedback.
All reactions