Stupid Simple Arduino LF RFID Tag Spoofer
Stupid Simple Arduino LF RFID Tag Spoofer
Table of Contents
Step 1: Parts . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
File Downloads . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Step 6: Testing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
Step 9: .................................................................................................................. 6
Related Instructables . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
Comments . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 6
http://www.instructables.com/id/Stupid-Simple-Arduino-LF-RFID-Tag-Spoofer/
Intro: Stupid Simple Arduino LF RFID Tag Spoofer
RFID tags are all over the place. They're used in building access control systems, passports, inventory tracking . . . This instructable will show how you can use an
Arduino and a few simple components (wire coil, transistor, capacitor, resistor) to make a device that can spoof an 125 KHz (low frequency) RFID tag. This is version 1,
so there are many enhancements that can be made, but this version is stupid simple, yet it works. I did this in a few hours without much previous knowledge of RFID and
without any fancy equipment (like a radio tuning hardware or an oscilloscope . . .I guess an oscilloscope is fancy, I need to pick up one of those).
UPDATE: Here is a link to an Arduino Mini shield based on these instructions http://wiki.smallroom.net/doku.php?id=terd:projects:rfidspoofer .
Step 1: Parts
Parts:
*Some enamel coated solid core copper wire (I used the green spool from the 3 spool set Radio Shack carries).
*A 10 K Ohm Resistor
*A 10 nF capacitor (0.01 uF). I'm using a Metalized polyester film cap I got from Radio Shack, others should work though
I tested my circuit using a Parallax RFID serial reader connected to a second Arduino
http://www.instructables.com/id/Stupid-Simple-Arduino-LF-RFID-Tag-Spoofer/
Step 2: RFID background
A passive RFID tag has a coil and a chip with data on it. An RFID reader has a coil in it that has a coil in it that creates a varying electronic field (in this case 125 KHz),
which is called the carrier signal. When the tag is close to the RFID reader then the magnetic field powers the chip on the tag, which then responds by tuning and
detuning its own antenna. This all works on the principle of inductive coupling, to learn more about his see www.rfid-handbook.de/rfid/types_of_rfid.html
125 KHz cards use manchester encoding to encode the data to send it to the reader. Manchester encoding basically takes the XOR of the bit that needs to be
transmitted and the clock value. So if the clock value is low (0) and the value to transmit is 1 then it would be 0 XOR 1 which is 1. This has to be done on every clock
cycle. For more information on manchester encoding see en.wikipedia.org/wiki/Manchester_code.
The serial number of a tag is sent over using a fairly simple protocol.
Then it sends 10 sets of 4 bits, then one parity bit (it's using even parity)
Then it sends "column" parity bits (even parity of the rows in the previous step)
Last it sends a 0 stop bit
(start bits)
111111111
11110
10100
10001
11000
10010
11101
11110
00000
00011
01010
(then it sends the column parity bits, even parity of the rows above)
1101
See the pdf in the first link in the references section for more details on this
Image provided by Flickr user at www.flickr.com/photos/kurtisscaletta/2473469841/ and used under the creative commons license.
http://www.instructables.com/id/Stupid-Simple-Arduino-LF-RFID-Tag-Spoofer/
Step 4: Building the circuit
You need to create a coil that's about 150 to about 162 uH (different sources say it should be different values). To determine how many winds to do you can use an
induction calculator like the one here www.crystalradio.net/cal/indcal2.shtml. I used the green spool from the Radio Shack set of wires and wound it about 133 times
around the toilet paper roll (I did this both by working with a calculator and some trial and error, I have no tuning equipment). You probably want to leave a little extra wire
in case you need to wind some more to get your antenna tuned right.
After you have your coil you can connect it to your circuit. The schematic is pretty easy. Just connect pin 9 on the Arudino to a 10 K Ohm resistor, then to the base of the
transistor. Next you can put your capacitor between the collector and emitter of the transistor. The emitter also needs to be connected to ground. Next connect the coil
the the emitter and collector of the transistor.
File Downloads
rfidFaker.pde (1 KB)
[NOTE: When saving, if you see .tmp as the file ext, rename it to 'rfidFaker.pde']
Step 6: Testing
To test the circuit hold the antenna right up to the reader (go ahead and touch it to the reader for the first test), if everything's right you should see the tag ID you're
hoping to see. If not (and you're sure the sketch is uploaded properly and the circuit is connected correctly) start adding and removing winds from the coil and retesting it.
It should be somewhere in the 120-140 range with the green Radio Shack wire I used.
Once it's working at really short ranges (touching the reader) you can mess with the coil some more to tune the antenna better and you should be able to get a range of a
few inches.
http://www.instructables.com/id/Stupid-Simple-Arduino-LF-RFID-Tag-Spoofer/
Step 7: The Video
First I hold up a real tag to the reader, and you'll see by the screen behind it that the tag ID is read and displayed on the screen behind it. Next I hold my coil up and the
reader sees it as a tag and reads the serial number off it.
The second issue is the form factor of the antenna. It should be easy to modify this though by simply collapsing the coil. At that point though you'll need to use a
different calculator that does multi-level coils to figure out how to wind it.
Last, there's the range. By experimenting with the coil winds and the capacitor you should be able to get a few inches of range. More range would probably need some
type of an amplified coil.
The image for this step is from www.flickr.com/photos/exfordy/123900378/ used under the creative commons license.
http://www.instructables.com/id/Stupid-Simple-Arduino-LF-RFID-Tag-Spoofer/
Step 9:
References
PDF on a similar project, good discussion of how it all works and schematic
mrl.cz/projects/rfid/rfid.pdf
Related Instructables
Arduino
How to connect Magstripe Magnetic stripe
Arduino and Emulator by card spoofer by
A Universal AVR/Arduino Arduino RFID
RFID by sketchsk3tch powerpants
RFID Key by RFID Reader Door Lock by
otaviousp
drj113 with UART Code pcmofo
in C by nevdull
Comments
20 comments Add Comment
http://electronics-diy.com/lc_meter.php
http://www.instructables.com/id/Stupid-Simple-Arduino-LF-RFID-Tag-Spoofer/
musick7 says: Sep 8, 2010. 7:01 PM REPLY
Here is a Link for a Simple Meter that will help with this Process. It's an LC Meter it will Read VERY SMALL Amounts.
If you need to MAKE YOUR OWN COIL then this is the Meter for you.
Simple to Build Schematic and Instructions are located here:
http://electronics-diy.com/lc_meter.php
--
Airspace V - international hangar flying!
http://www.airspace-v.com/ggadgets for tools & toys (MODIS image og the day will be repaired soon)
Also in your video, a better view of your computer screen would of been nice.
A video of the screen capture (Camstudio) at the same time of the video would of been nicer.
More work in the editing but that would of ensure more views on youtube and instructables.
http://www.instructables.com/id/Stupid-Simple-Arduino-LF-RFID-Tag-Spoofer/