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