]> git.zerfleddert.de Git - proxmark3-svn/blob - README.txt
added coverty build scan badge
[proxmark3-svn] / README.txt
1 The iceman fork
2 ---------------
3
4 NOTICE:
5
6 The official Proxmark repository is found here: https://github.com/Proxmark/proxmark3
7
8 NEWS:
9
10 ::THIS FORK IS HIGHLY EXPERIMENTAL::
11
12 -- Coverty Build Scan
13 <a href="https://scan.coverity.com/projects/proxmark3-iceman-fork">
14 <img alt="Coverity Scan Build Status"
15 src="https://scan.coverity.com/projects/5117/badge.svg"/>
16 </a>
17
18
19 Whats in this fork? I have scraped the web for different enhancements to the PM3 source code and not all of them ever found their way to the master branch.
20 Among the stuff is
21
22 * Jonor's hf 14a raw timing patch
23 * Piwi's updates. (usually gets into the master)
24 * Piwi's "topaz" branch
25 * Piwi's "hardnested" branch
26 * Holiman's iclass, (usually gets into the master)
27 * Marshmellow's fixes (usually gets into the master)
28 * Midnitesnake's Ultralight, Ultralight-c enhancements
29 * Izsh's lf peak modification / iir-filtering
30 * Aspers's tips and tricks from inside the PM3-gui-tool, settings.xml and other stuff.
31 * My own desfire, Ultralight extras, LF T55xx enhancements, bugs fixes (filelength, hf mf commands ), TNP3xxx lua scripts, Awid26, skidata scripts (will come)
32 * other obscure patches like for the sammy-mode, (offline you know), tagidentifications, defaultkeys.
33 * Minor textual changes here and there.
34 * Simulation of Ultralight/Ntag.
35 * Marshmellow's and my "RevEng" addon for the client. Ref: http://reveng.sourceforge.net/
36 * Someone's alternative bruteforce Mifare changes.. (you need the two other exe to make it work)
37
38 * A Bruteforce for T55XX passwords against tag.
39 * A Bruteforce for AWID 26, starting w a facilitycode then trying all 0xFFFF cardnumbers via simulation. To be used against a AWID Reader.
40
41
42 Give me a hint, and I'll see if I can't merge in the stuff you have.
43
44 I don't actually know how to make small pull-request to github :( and that is the number one reason for me not pushing a lot of things back to the PM3 master.
45
46 PM3 GUI:
47
48 I do tend to rename and move stuff around, the official PM3-GUI from Gaucho will not work so well. *sorry*
49
50
51
52 DEVELOPMENT:
53
54 This fork is adjusted to compile on windows/mingw environment with Qt5.3.1 & GCC 4.8
55 For people with linux you will need to patch some source code 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.
56
57 GC made updates to allow this to build easily on Ubuntu 14.04.2 LTS.
58 - See https://github.com/Proxmark/proxmark3/wiki/Ubuntu%20Linux
59 - Generally speaking, if you're running a "later" Proxmark, installation is very easy.
60 - Run "sudo apt-get install p7zip git build-essential libreadline5 libreadline-dev libusb-0.1-4 libusb-dev libqt4-dev perl pkg-config wget"a
61 - Follow these instructions
62 Get devkitARM release 41 from SourceForge (choose either the 64/32 ¿bit depending on your architecture, it is assumed you know how to check and recognize your architecture):
63
64 (64-bit) http://sourceforge.net/projects/devkitpro/files/devkitARM/previous/devkitARM_r41-x86_64-linux.tar.bz2/download
65 (32-bit) http://sourceforge.net/projects/devkitpro/files/devkitARM/previous/devkitARM_r41-i686-linux.tar.bz2/download
66 Extract the contents of the .tar.bz2:
67 tar jxvf devkitARM_r41-<arch>-linux.tar.bz2
68 Create a directory for the arm dev kit:
69 sudo mkdir -p /opt/devkitpro/
70 Move the ARM developer kit to the newly created directory:
71 sudo mv devkitARM /opt/devkitpro/
72 Add the appropriate environment variable:
73 export PATH=${PATH}:/opt/devkitpro/devkitARM/bin/
74 Add the environment variable to your profile:
75 echo 'PATH=${PATH}:/opt/devkitpro/devkitARM/bin/ ' >> ~/.bashrc
76 - Use the magic build command "make UBUNTU_1404_QT4=1"
77
78 Common errors linux/macOS finds
79
80 Error:
81 * \client\makefile the parameter -lgdi32
82 Solution:
83 * Remove parameter.
84
85 Error:
86 * Using older Qt4.6 gives compilation errors.
87 Solution
88 * Upgrade to Qt5.3.1
89 OR
90 * Change these two line in \client\makefile
91 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui -I$(QTDIR)/include/QtWidgets -I/mingw/include
92 QTLDLIBS = -L$(QTDIR)/lib -lQt5Core -lQt5Gui -lQt5Widgets
93
94 TO
95
96 CXXFLAGS = -I$(QTDIR)/include -I$(QTDIR)/include/QtCore -I$(QTDIR)/include/QtGui
97 QTLDLIBS = -L$(QTDIR)/lib -lQtCore4 -lQtGui4
98
99
100 An old Qt4 version makefile 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.
101
102
103 January 2015, Sweden
104 iceman at host iuse.se
105
106
107 The Proxmark 3 is available for purchase (assembled and tested) from the
108 following locations:
109
110 * http://www.elechouse.com (new and revised hardware package 2015)
111
112
113 Most of the ultra-low-volume contract assemblers could put
114 something like this together with a reasonable yield. A run of around
115 a dozen units is probably cost-effective. The BOM includes (possibly-
116 outdated) component pricing, and everything is available from Digikey
117 and the usual distributors.
118
119 If you've never assembled a modern circuit board by hand, then this is
120 not a good place to start. Some of the components (e.g. the crystals)
121 must not be assembled with a soldering iron, and require hot air.
122
123 The schematics are included; the component values given are not
124 necessarily correct for all situations, but it should be possible to do
125 nearly anything you would want with appropriate population options.
126
127 The printed circuit board artwork is also available, as Gerbers and an
128 Excellon drill file.
129
130
131 LICENSING:
132
133 This program is free software; you can redistribute it and/or modify
134 it under the terms of the GNU General Public License as published by
135 the Free Software Foundation; either version 2 of the License, or
136 (at your option) any later version.
137
138 This program is distributed in the hope that it will be useful,
139 but WITHOUT ANY WARRANTY; without even the implied warranty of
140 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
141 GNU General Public License for more details.
142
143 You should have received a copy of the GNU General Public License
144 along with this program; if not, write to the Free Software
145 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
146
147
148 Jonathan Westhues
149 user jwesthues, at host cq.cx
150
151 May 2007, Cambridge MA
Impressum, Datenschutz