Releases: Snesnopic/chisel
v1.0.1
First maintenance release addressing CLI behavior and logging.
What's New
- Fixed
-o(output) behavior: The-oflag now correctly supports renaming single files. Previously, it incorrectly treated the output path as a directory in single-file mode. - New
--log-fileoption: Added a specific flag to write logs to a file (e.g.,--log-file chisel.log). Chisel no longer creates achisel.logfile in the working directory by default. - Logging improvements: The default log level has been corrected to
ERRORto reduce console noise. - Version reporting: Fixed the output of
--versionto correctly display the release number.
If you're having problems on Linux/macOS, run chisel with --regenerate-magic.
macOS: removing the Gatekeeper quarantine
When downloading binaries from the internet, macOS automatically marks them as “quarantined”.
If you try to run chisel and macOS shows a warning like:
“chisel cannot be opened because it is from an unidentified developer”
…you need to remove the quarantine attribute manually.
How to remove the quarantine flag
Open Terminal in the folder where you downloaded chisel and run:
xattr -d com.apple.quarantine ./chisel
To verify that the quarantine flag is gone:
xattr ./chisel
If com.apple.quarantine no longer appears, you're good to go.
Now you can run:
./chisel ...
Note
This issue does not occur if you compile chisel yourself.
Nightly Build
Latest successful build from 'development' branch. Not a stable release.
v1.0.0
First release! Most formats should work pretty well.
If you're having problems on Linux/macOS, run chisel with --regenerate-magic.
Known issues
- The
-ooption is broken when used in single‑file processing. - The default logging level is
WARNINGinstead ofERROR.
macOS: removing the Gatekeeper quarantine
When downloading binaries from the internet, macOS automatically marks them as “quarantined”.
If you try to run chisel and macOS shows a warning like:
“chisel cannot be opened because it is from an unidentified developer”
…you need to remove the quarantine attribute manually.
How to remove the quarantine flag
Open Terminal in the folder where you downloaded chisel and run:
xattr -d com.apple.quarantine ./chiselTo verify that the quarantine flag is gone:
xattr ./chiselIf com.apple.quarantine no longer appears, you're good to go.
Now you can run:
./chisel ...Note
This issue does not occur if you compile chisel yourself.