Created
August 13, 2018 03:51
-
-
Save subfission/fb00e9594ee5c91c18373888237ac736 to your computer and use it in GitHub Desktop.
Install Proxmark3 for MacOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # | |
| # Proxmark3 automated installer - for those of us | |
| # that love to tinker. | |
| # | |
| # Requires: Homebrew | |
| # Update homebrew | |
| brew update | |
| # Add the proxmark repo to brew | |
| brew tap proxmark/proxmark3 | |
| # Install the package and dependencies | |
| brew install proxmark3 | |
| echo "[+] Installed!" | |
| echo | |
| # Stuff below is just informational | |
| echo "--- Select tty from this list ---" | |
| ls -1 /dev/cu.usbmodem* | |
| echo | |
| echo "Using Proxmark3:" | |
| echo" proxmark3 /dev/cu.usbmodem" | |
| echo | |
| echo "Bruteforcing Mifare:" | |
| echo | |
| echo 'step 1) look for valid sectors' | |
| echo ' hf mf chk * ?' | |
| echo | |
| echo 'step 2) use valid sectors to decrypt and dump' | |
| echo ' hf mf nested 1 0 A ffffffffffff d' | |
| echo | |
| echo "Good Luck!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment