Proxmark3 community

Research, development and trades concerning the powerful Proxmark3 device.

Remember; sharing is caring. Bring something back to the community.


"Learn the tools of the trade the hard way." +Fravia

You are not logged in.

Announcement

Time changes and with it the technology
Proxmark3 @ discord

Users of this forum, please be aware that information stored on this site is not private.

#1 2016-09-14 18:02:52

TideZK
Contributor
Registered: 2016-09-14
Posts: 4

How to put hardnested into my Kali Linux

Hi everyone!

I'm trying to put the hardnested repository into my Kali Linux but I can't.

I've downloaded @piwi's repository from https://github.com/pwpiwi/proxmark3.git and from @iceman 's repository https://github.com/iceman1001/proxmark3/blob/master/client/cmdhfmfhard.c#L40 but I don't know very well how to make it go.

I've read that post http://www.proxmark.org/forum/viewtopic.php?id=2120 too and I'm in the same point, stopped.

Can anybody help me and explain step by step how to do it?

Thanks in advance! smile

Offline

#2 2016-09-14 18:07:45

iceman
Administrator
Registered: 2013-04-25
Posts: 9,497
Website

Re: How to put hardnested into my Kali Linux

if you compile and flash piwi's fork,  and run the client from same ,  you will be able to run hardnested.

if you compile and flash my fork,  and run the client from same ,  you will be able to run hardnested and it will run azcid's bruteforcer aswell.

Offline

#3 2016-09-14 19:22:50

TideZK
Contributor
Registered: 2016-09-14
Posts: 4

Re: How to put hardnested into my Kali Linux

Thanks for the quick response!

First af all I want to say where I'm doing to put hardnested in my PC.

In the terminal:

> git clone https://github.com/iceman1001/proxmark3.git
>cd proxmark3
~/proxmark3# make

And I got this result:


make -C client all
make[1]: se entra en el directorio '/root/proxmark3/client'
Compiling liblua, using platform linux
cd ../liblua && make linux
make[2]: se entra en el directorio '/root/proxmark3/liblua'
make all SYSCFLAGS="-DLUA_USE_LINUX" SYSLIBS="-Wl,-E -ldl -lreadline -ltermcap -lncurses"
make[3]: se entra en el directorio '/root/proxmark3/liblua'
gcc -O3 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX    -c -o lua.o lua.c
lua.c:67:31: fatal error: readline/readline.h: No existe el fichero o el directorio
#include <readline/readline.h>
                               ^
compilation terminated.
<integrado>: fallo en las instrucciones para el objetivo 'lua.o'
make[3]: *** [lua.o] Error 1
make[3]: se sale del directorio '/root/proxmark3/liblua'
Makefile:106: fallo en las instrucciones para el objetivo 'linux'
make[2]: *** [linux] Error 2
make[2]: se sale del directorio '/root/proxmark3/liblua'
Makefile:215: fallo en las instrucciones para el objetivo 'lua_build'
make[1]: *** [lua_build] Error 2
make[1]: se sale del directorio '/root/proxmark3/client'
Makefile:12: fallo en las instrucciones para el objetivo 'client/all'
make: *** [client/all] Error 2


Can you help me?

Offline

#4 2016-09-14 19:38:22

iceman
Administrator
Registered: 2013-04-25
Posts: 9,497
Website

Re: How to put hardnested into my Kali Linux

...what does your errormessage say?
...did you follow the instructions on the wiki?

Offline

#5 2016-09-15 15:34:07

TideZK
Contributor
Registered: 2016-09-14
Posts: 4

Re: How to put hardnested into my Kali Linux

Here is the previous error but in english:

root@kali:~/proxmark3# make
make -C client all
make[1]: Entering directory '/root/proxmark3/client'
Compiling liblua, using platform linux
cd ../liblua && make linux
make[2]: Entering directory '/root/proxmark3/liblua'
make all SYSCFLAGS="-DLUA_USE_LINUX" SYSLIBS="-Wl,-E -ldl -lreadline -ltermcap -lncurses"
make[3]: Entering directory '/root/proxmark3/liblua'
gcc -O3 -Wall -DLUA_COMPAT_ALL -DLUA_USE_LINUX    -c -o lua.o lua.c
lua.c:67:31: fatal error: readline/readline.h: No such file or directory
#include <readline/readline.h>
                               ^
compilation terminated.
<builtin>: recipe for target 'lua.o' failed
make[3]: *** [lua.o] Error 1
make[3]: Leaving directory '/root/proxmark3/liblua'
Makefile:106: recipe for target 'linux' failed
make[2]: *** [linux] Error 2
make[2]: Leaving directory '/root/proxmark3/liblua'
Makefile:215: recipe for target 'lua_build' failed
make[1]: *** [lua_build] Error 2
make[1]: Leaving directory '/root/proxmark3/client'
Makefile:12: recipe for target 'client/all' failed
make: *** [client/all] Error 2

Offline

#6 2016-09-16 00:31:16

iceman
Administrator
Registered: 2013-04-25
Posts: 9,497
Website

Re: How to put hardnested into my Kali Linux

nice but do you understand the error?

Offline

#7 2016-09-16 15:59:39

piwi
Contributor
Registered: 2013-06-04
Posts: 704

Re: How to put hardnested into my Kali Linux

What iceman wants you to stare at:

TideZK wrote:

fatal error: readline/readline.h: No such file or directory

You need the readline library and its header files in order to compile the proxmark client. This is not part of the proxmark github repository.

Offline

#8 2016-09-19 22:25:36

YoungJules
Contributor
Registered: 2012-01-29
Posts: 60

Re: How to put hardnested into my Kali Linux

You may also need to install the arm toolchain, so you can do cross-compiling.

For Ubuntu (and, afaik, Kali...), simply:

sudo apt-get install gcc-arm-none-eabi

Offline

Board footer

Powered by FluxBB