mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-20 05:13:46 -07:00
Get Python support of experimental_client_with_swig working again
This commit is contained in:
parent
97f2770982
commit
e0be057f62
7 changed files with 4 additions and 8 deletions
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
||||||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||||
|
|
||||||
## [unreleased][unreleased]
|
## [unreleased][unreleased]
|
||||||
|
- Fixed Python support of `experimental_client_with_swig` (@doegox)
|
||||||
- Use proxmark3 as a generic smartcard reader with other software with `smart relay` (@gm3197)
|
- Use proxmark3 as a generic smartcard reader with other software with `smart relay` (@gm3197)
|
||||||
- Added `tools\mfkeys\staticnested` - program to recover static nested keys (@iceman1001)
|
- Added `tools\mfkeys\staticnested` - program to recover static nested keys (@iceman1001)
|
||||||
- Added `pm3_gen_dictionary.py` - python script to extract and save all keys from MFC dump files. (@iceman1001)
|
- Added `pm3_gen_dictionary.py` - python script to extract and save all keys from MFC dump files. (@iceman1001)
|
||||||
|
|
|
@ -837,7 +837,6 @@ endif
|
||||||
ifneq (,$(INSTALLSHARE))
|
ifneq (,$(INSTALLSHARE))
|
||||||
$(Q)$(INSTALLSUDO) $(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)
|
$(Q)$(INSTALLSUDO) $(MKDIR) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)
|
||||||
$(Q)$(INSTALLSUDO) $(CP) $(INSTALLSHARE) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)
|
$(Q)$(INSTALLSUDO) $(CP) $(INSTALLSHARE) $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)
|
||||||
$(Q)$(INSTALLSUDO) $(CP) src/pm3.py $(DESTDIR)$(PREFIX)$(PATHSEP)$(INSTALLSHARERELPATH)/pyscripts
|
|
||||||
endif
|
endif
|
||||||
@true
|
@true
|
||||||
|
|
||||||
|
|
|
@ -8,4 +8,4 @@
|
||||||
#/usr/lib/python3/dist-packages/pm3.py
|
#/usr/lib/python3/dist-packages/pm3.py
|
||||||
|
|
||||||
# need access to pm3.py
|
# need access to pm3.py
|
||||||
PYTHONPATH=../../src ./test.py
|
PYTHONPATH=../../pyscripts ./test.py
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
PYTHONPATH=../../src ipython3 -i ./test_grab.py
|
PYTHONPATH=../../pyscripts ipython3 -i ./test_grab.py
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
PYTHONPATH=../../src ipython3 -i ./test.py
|
PYTHONPATH=../../pyscripts ipython3 -i ./test.py
|
||||||
|
|
4
pm3
4
pm3
|
@ -27,13 +27,9 @@ if [ ! "$1" == "--list" ]; then
|
||||||
echo >&2 "[!!] In devel workdir but no executable found, did you compile it?"
|
echo >&2 "[!!] In devel workdir but no executable found, did you compile it?"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
# Devel mode: point to workdir pm3.py module
|
|
||||||
EVALENV+=" PYTHONPATH=$PM3PATH/client/src"
|
|
||||||
# try install dir
|
# try install dir
|
||||||
elif [ -x "$PM3PATH/proxmark3" ]; then
|
elif [ -x "$PM3PATH/proxmark3" ]; then
|
||||||
CLIENT="$PM3PATH/proxmark3"
|
CLIENT="$PM3PATH/proxmark3"
|
||||||
EVALENV+=" PYTHONPATH=$PM3PATH/../share/proxmark3/pyscripts/"
|
|
||||||
# or /usr/[local/]lib/python3/dist-packages/pm3.py ?
|
|
||||||
else
|
else
|
||||||
# hope it's installed somehow, still not sure where fw images and pm3.py are...
|
# hope it's installed somehow, still not sure where fw images and pm3.py are...
|
||||||
CLIENT="proxmark3"
|
CLIENT="proxmark3"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue