Iceman Fork - Proxmark3
Find a file
Iceman 7c5f70dd9f Merge pull request #1 from bforbort/master
Added DES AUTH command support
2015-01-01 23:02:23 +01:00
armsrc Merge pull request #1 from bforbort/master 2015-01-01 23:02:23 +01:00
bootrom updated code to follow same blinking patterns with leds during flashing/holding button 2013-03-02 06:28:28 +00:00
client Updated the README.txt 2015-01-01 14:07:42 +01:00
common Updated the README.txt 2015-01-01 14:07:42 +01:00
doc Added documentation. 2012-02-06 20:07:35 +00:00
driver add linux modem manager de-confliction file 2013-10-11 09:15:05 +00:00
fpga fpga/min_max_tracker.v: english 2014-06-27 23:28:56 +02:00
include ADD: midnitesnakes desfire, ultralight changes from Unstable branch. 2014-12-31 11:35:43 +01:00
liblua Removed lua binary which shouldn't be in version control 2013-09-01 19:08:40 +00:00
recovery changed version.c, compile time is now always present, even when svn is not working 2013-03-27 10:27:14 +00:00
tools Small fixes, 2014-10-16 15:05:27 +02:00
traces ADD: midnitesnakes desfire, ultralight changes from Unstable branch. 2014-12-31 11:35:43 +01:00
.gitattributes git housekeeping: 2014-06-27 19:23:42 +02:00
.gitignore add *.eml to .gitignore 2014-08-05 18:45:37 +02:00
COMPILING.txt added more cards to iso15693 uid database, and some minor cleanups 2012-06-20 17:15:21 +00:00
cp2tau chg: LF t55xx trace 2014-10-06 19:42:50 +02:00
HACKING.txt
iceman.txt chg: LF t55xx trace 2014-10-06 19:42:50 +02:00
LICENSE.txt setting svn:eol-style=native on files, part 1 2010-02-22 19:18:49 +00:00
Makefile added port name to flasher command line (introduced in r655) 2013-04-24 10:57:06 +00:00
README.txt Updated the README.txt 2015-01-01 14:07:42 +01:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

The iceman fork.

NOTICE:

The official Proxmark repository is found here: https://github.com/Proxmark/proxmark3


NEWS:      

Whats in this fork?  I have scraped the web for different enhancements to the PM3 sourcecode and not all of them ever found their way to the master branch. 
Among the stuff is
	* jonor's hf 14a raw timing patch
	* Piwi's updates. (usually gets into the master)
	* Holimans iclass, (usually gets into the master)
	* Marshmellows LF fixes (will go into the master)
	* Midnitesnakes Ultralight,  Ultralight-c enhancements
	* My desfire, Ultralight extras, LF T55xx enhancements, bugs fixes (filelength, hf mf commands ), TNP3xxx lua scripts,  Awid26,  skidata scripts (will come)
	* other osbscury patches like for the sammy-mode,  (offline you know), tagidentifications, defaultkeys. 
	
Give me a hint, and I'll see if I can't merge in the stuff you have. 
	
PM3 GUI:

I do tend to rename and move stuff around, the official PM3-GUI from Gaucho will not work so good. *sorry*	

	  
DEVELOPMENT:

This fork is adjusted to compile on windows/mingw environment with Qt5.3.1 & GCC 4.8
For people with linux you will need to patch some sourcecode and some small change to one makefile.  If you are lazy, you google the forum and find asper's or holimans makefile or you find your solution below.

Common errors linux/macOS finds
Error:
	* loclass/fileutils.c:15:2: warning: implicit declaration of function _stat [-Wimplicit-function-declaration]
Solution:
	* Remove the "unscore" sign.   In linux you use without underscore, in windows you need a underscore. 
	
Error:  
	* \client\makefile  the parameter -lgdi32 
Solution:
	* Remove parameter.
	
Error:  
	* Using older Qt4.6 gives compilation errors.  
Solution
	* Upgrade to Qt5.3.1 
	OR 
	* Change these two line in  \client\makefile
		CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets  -I/mingw/include
		QTLDLIBS = -L$(QTDIR)/lib  -lQt5Core -lQt5Gui -lQt5Widgets 
		
		TO
		
		CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
		QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
	

And old Qt4 version is found here: http://www.icesql.se/proxmark3/code/linuxmakefile.txt  but this one doesn't have all new files in it. So I don't recommend it.



January 2015, Sweden
iceman at host iuse.se