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