From 41a2553b04f7f56fdefcbcbe408a3bc67e3fa45d Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 29 Sep 2017 14:48:00 +0200 Subject: [PATCH] ADD: a makefile which allows for fast download of some interesting supporting projects, tools to have with the proxmark3. -- get @blapost sourcecode for craptoEV1 v1.1 make get_craptev1 -- get @Blapost sourcecode for crapto v3.3 make get_crapto1 -- get @jbfuzier, @j-run and @iceman1001 tools mf_nonce_brute and mf_key_brute (clones three repositories) make get_nonce_bf --- tools/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tools/Makefile diff --git a/tools/Makefile b/tools/Makefile new file mode 100644 index 000000000..7f06d6726 --- /dev/null +++ b/tools/Makefile @@ -0,0 +1,16 @@ +get_craptev1: +# wget http://crapto1.netgarage.org/craptev1-v1.0.tar.xz + wget http://crapto1.netgarage.org/craptev1-v1.1.tar.xz + tar Jxvf craptev1-v1.1.tar.xz + +get_crapto1: + wget http://crapto1.netgarage.org/crapto1-v3.3.tar.xz + mkdir crapto1-v3.3 + tar Jxvf crapto1-v3.3.tar.xz -C crapto1-v3.3 + +get_nonce_bf: + git clone https://github.com/jbfuzier/mf_nonce_brute.git + #git clone https://github.com/J-Run/mf_nonce_brute.git + git clone https://github.com/J-Run/mf_key_brute.git + git clone https://github.com/iceman1001/mf_nonce_brute + \ No newline at end of file