Homebrew - is a open-source package manager for Apple macOS.
This repository contains homebrew formulas for RRG/Iceman Proxmark3 project with it dependencies.
[note] The old HID-flasher doesn't compile on this version. You'll need to manually fix/compile it on MacOS but this old flasher software is used if you have firmware from 2012 installed on your device.
-
Install homebrew if you haven't yet already done so: http://brew.sh/
-
Tap this repo:
brew tap rfidresearchgroup/proxmark3
-
Install Proxmark3:
brew install proxmark3
for stable releasebrew install --HEAD proxmark3
for latest non-stable from GitHub (use this if previous command fails)brew install --with-blueshark proxmark3
for blueshark support, stable releasebrew install --HEAD --with-blueshark proxmark3
for blueshark support, latest non-stable from GitHub (use this if previous command fails)
Use brew info proxmark3
to see all available options.
Firmware is built for the Proxmark3 RDV4 device by default. Use the following options to select other platforms:
--with-generic
: build for generic (non-RDV4) devices, see platform.--with-small
: enable build-time size limit for devices with 256kB flash, see 256kb versions.
It's possible to remove features to reduce firmware size for 256kB devices using options such as --without-lf
, --without-hitag
, etc.
--without-foo
corresponds to the SKIP_FOO
compile options listed here.
Firmware is built with the LF_SAMYRUN
standalone mode by default. Use the --with-lf-foo
or --with-hf-foo
options to select a different standalone mode,
or --without-standalone
to disable standalone mode altogether.
--with-lf-foo
corresponds to the STANDALONE=LF_FOO
compile options listed here.
- If you see this message
To reinstall HEAD, run brew reinstall proxmark3
- do this
brew remove proxmark3 brew reinstall proxmark3
brew upgrade --fetch-HEAD proxmark3
Proxmark3 client will be installed in
/usr/local/bin/proxmark3
Firmware will be located in
/usr/local/share/firmware/
The paths mentioned above are symlinks created by Homebrew (brew install
implies brew link
) to your Cellar.