]> git.zerfleddert.de Git - proxmark3-svn/blame - README.md
FIX: Undo one of my fixes.. *sigh* need to be more specific when / where to call...
[proxmark3-svn] / README.md
CommitLineData
02b6f355 1The iceman fork
2---------------
3
4NOTICE:
5
c0bab227 6::THIS FORK IS HIGHLY EXPERIMENTAL::
7
02b6f355 8The official Proxmark repository is found here: https://github.com/Proxmark/proxmark3
9
10NEWS:
11
02b6f355 12## Build Status Travis CI
13[![Build Status](https://travis-ci.org/iceman1001/proxmark3.svg?branch=master)](https://travis-ci.org/iceman1001/proxmark3)
14
15## Build Status Coverity Scan
16[![Coverity Scan Build Status](https://scan.coverity.com/projects/5117/badge.svg)](https://scan.coverity.com/projects/proxmark3-iceman-fork)
17
18
b112787d 19## Coverity Scan Config && Run
20
21Download the Coverity Scan Self-buld and install it.
22You will need to configure ARM-NON-EABI- Compiler for it to use:
23
24:: Configure
25cov-configure --comptype gcc --compiler /opt/devkitpro/devkitARM/bin/arm-none-eabi-gcc
26
27::run it (I'm running on Ubuntu)
c0bab227 28cov-build --dir cov-int make all
b112787d 29
30:: make a tarball
31tar czvf proxmark3.tgz cov-int
32
33:: upload it to coverity.com
34
35## Whats changed?
36
02b6f355 37Whats 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.
38Among the stuff is
39
40 * Jonor's hf 14a raw timing patch
41 * Piwi's updates. (usually gets into the master)
42 * Piwi's "topaz" branch
43 * Piwi's "hardnested" branch
44 * Holiman's iclass, (usually gets into the master)
45 * Marshmellow's fixes (usually gets into the master)
46 * Midnitesnake's Ultralight, Ultralight-c enhancements
47 * Izsh's lf peak modification / iir-filtering
48 * Aspers's tips and tricks from inside the PM3-gui-tool, settings.xml and other stuff.
49 * My own desfire, Ultralight extras, LF T55xx enhancements, bugs fixes (filelength, hf mf commands ), TNP3xxx lua scripts, Awid26, skidata scripts (will come)
50 * other obscure patches like for the sammy-mode, (offline you know), tagidentifications, defaultkeys.
51 * Minor textual changes here and there.
52 * Simulation of Ultralight/Ntag.
53 * Marshmellow's and my "RevEng" addon for the client. Ref: http://reveng.sourceforge.net/
54 * Someone's alternative bruteforce Mifare changes.. (you need the two other exe to make it work)
55
56 * A Bruteforce for T55XX passwords against tag.
57 * A Bruteforce for AWID 26, starting w a facilitycode then trying all 0xFFFF cardnumbers via simulation. To be used against a AWID Reader.
c0bab227 58 * A Bruteforce for HID, starting w a facilitycode then trying all 0xFFFF cardnumbers via simulation. To be used against a HID Reader.
b112787d 59 * Blaposts Crapto1 v3.3
60
02b6f355 61
62Give me a hint, and I'll see if I can't merge in the stuff you have.
63
64I 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.
65
66PM3 GUI:
c0bab227 67--------
02b6f355 68I do tend to rename and move stuff around, the official PM3-GUI from Gaucho will not work so well. *sorry*
69
70
71
72DEVELOPMENT:
c0bab227 73------------
74This fork now compiles just fine on
75 windows/mingw environment with Qt5.3.1 & GCC 4.8
76 Ubuntuu 1404, 1510
77 Mac OS X
78
79SETUP AND BUILD FOR UBUNTU
80--------------------------
02b6f355 81
c0bab227 82GC made updates to allow this to build easily on Ubuntu 14.04.2 LTS or 15.10
83See https://github.com/Proxmark/proxmark3/wiki/Ubuntu%20Linux
02b6f355 84
c0bab227 85Run
86 -> sudo apt-get install p7zip git build-essential libreadline5 libreadline-dev libusb-0.1-4 libusb-dev libqt4-dev perl pkg-config wget"a
87
88Follow these instructions
02b6f355 89Get 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):
90
91(64-bit) http://sourceforge.net/projects/devkitpro/files/devkitARM/previous/devkitARM_r41-x86_64-linux.tar.bz2/download
92(32-bit) http://sourceforge.net/projects/devkitpro/files/devkitARM/previous/devkitARM_r41-i686-linux.tar.bz2/download
c0bab227 93
02b6f355 94Extract the contents of the .tar.bz2:
c0bab227 95 -> tar jxvf devkitARM_r41-<arch>-linux.tar.bz2
96
02b6f355 97Create a directory for the arm dev kit:
c0bab227 98 -> sudo mkdir -p /opt/devkitpro/
99
02b6f355 100Move the ARM developer kit to the newly created directory:
c0bab227 101 -> sudo mv devkitARM /opt/devkitpro/
102
02b6f355 103Add the appropriate environment variable:
c0bab227 104 -> export PATH=${PATH}:/opt/devkitpro/devkitARM/bin/
105
02b6f355 106Add the environment variable to your profile:
c0bab227 107 -> echo 'PATH=${PATH}:/opt/devkitpro/devkitARM/bin/ ' >> ~/.bashrc
108
109Clone iceman fork
110 -> git clone https://github.com/iceman1001/proxmark3.git
02b6f355 111
c0bab227 112Get the latest commits
113 -> git pull
114
115CLEAN COMPILE
116 -> make clean && make all
02b6f355 117
c0bab227 118Flash the BOOTROM
119 -> client/flasher -b /dev/ttyACM0 bootrom/obj/bootrom.elf
120
121Flash the FULLIMAGE
122 -> client/flasher /dev/ttyACM0 armsrc/obj/fullimage.elf
02b6f355 123
c0bab227 124Change into the client folder.
125 -> cd client
02b6f355 126
c0bab227 127Run the client
128 -> ./proxmark3 /dev/ttyACM0
129
02b6f355 130
131January 2015, Sweden
132iceman at host iuse.se
133
c0bab227 134BUYING A PROXMARK 3
135-------------------
136
137The Proxmark 3 device is available for purchase (assembled and tested) from the following locations:
138
139 * http://www.elechouse.com (new and revised hardware package 2015)
02b6f355 140
c0bab227 141 I recommend you to buy this version.
02b6f355 142
c0bab227 143--------------------------------------------------------------------------
02b6f355 144
145Most of the ultra-low-volume contract assemblers could put
146something like this together with a reasonable yield. A run of around
147a dozen units is probably cost-effective. The BOM includes (possibly-
148outdated) component pricing, and everything is available from Digikey
149and the usual distributors.
150
151If you've never assembled a modern circuit board by hand, then this is
152not a good place to start. Some of the components (e.g. the crystals)
153must not be assembled with a soldering iron, and require hot air.
154
155The schematics are included; the component values given are not
156necessarily correct for all situations, but it should be possible to do
157nearly anything you would want with appropriate population options.
158
159The printed circuit board artwork is also available, as Gerbers and an
160Excellon drill file.
161
162
163LICENSING:
164
165This program is free software; you can redistribute it and/or modify
166it under the terms of the GNU General Public License as published by
167the Free Software Foundation; either version 2 of the License, or
168(at your option) any later version.
169
170This program is distributed in the hope that it will be useful,
171but WITHOUT ANY WARRANTY; without even the implied warranty of
172MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
173GNU General Public License for more details.
174
175You should have received a copy of the GNU General Public License
176along with this program; if not, write to the Free Software
177Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
178
179
180Jonathan Westhues
181user jwesthues, at host cq.cx
182
183May 2007, Cambridge MA
Impressum, Datenschutz