-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmain.py
executable file
·187 lines (172 loc) · 3.45 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
#!/usr/bin/env python
# MagTek MSR100 Mini Swipe Card Reader
# Written By: Jeffrey Ness
#
# Some Thanks need to go out to
# http://www.micahcarrick.com/credit-card-reader-pyusb.html
# for helping me get on the right track
import usb.core
import usb.util
# MagTek Device MSR100 Mini Swipe
vendorid = 0x0801
productid = 0x0001
# Define our Character Map per Reference Manual
# http://www.magtek.com/documentation/public/99875206-17.01.pdf
chrMap = {
4: 'a',
5: 'b',
6: 'c',
7: 'd',
8: 'e',
9: 'f',
10: 'g',
11: 'h',
12: 'i',
13: 'j',
14: 'k',
15: 'l',
16: 'm',
17: 'n',
18: 'o',
19: 'p',
20: 'q',
21: 'r',
22: 's',
23: 't',
24: 'u',
25: 'v',
26: 'w',
27: 'x',
28: 'y',
29: 'z',
30: '1',
31: '2',
32: '3',
33: '4',
34: '5',
35: '6',
36: '7',
37: '8',
38: '9',
39: '0',
40: 'KEY_ENTER',
41: 'KEY_ESCAPE',
42: 'KEY_BACKSPACE',
43: 'KEY_TAB',
44: ' ',
45: '-',
46: '=',
47: '[',
48: ']',
49: '\\',
51: ';',
52: '\'',
53: '`',
54: ',',
55: '.',
56: '/',
57: 'KEY_CAPSLOCK'
}
shiftchrMap = {
4: 'A',
5: 'B',
6: 'C',
7: 'D',
8: 'E',
9: 'F',
10: 'G',
11: 'H',
12: 'I',
13: 'J',
14: 'K',
15: 'L',
16: 'M',
17: 'N',
18: 'O',
19: 'P',
20: 'Q',
21: 'R',
22: 'S',
23: 'T',
24: 'U',
25: 'V',
26: 'W',
27: 'X',
28: 'Y',
29: 'Z',
30: '!',
31: '@',
32: '#',
33: '$',
34: '%',
35: '^',
36: '&',
37: '*',
38: '(',
39: ')',
40: 'KEY_ENTER',
41: 'KEY_ESCAPE',
42: 'KEY_BACKSPACE',
43: 'KEY_TAB',
44: ' ',
45: '_',
46: '+',
47: '{',
48: '}',
49: '|',
51: ':',
52: '"',
53: '~',
54: '<',
55: '>',
56: '?',
57: 'KEY_CAPSLOCK'
}
# find our device by id
device = usb.core.find(idVendor=vendorid, idProduct=productid)
if device is None:
raise Exception('Could not find USB Card Reader')
# remove device from kernel, this should stop
# reader from printing to screen and remove /dev/input
if device.is_kernel_driver_active(0):
try:
device.detach_kernel_driver(0)
except usb.core.USBError as e:
raise Exception("Could not detatch kernel driver: %s" % str(e))
# load our devices configuration
try:
device.set_configuration()
device.reset()
except usb.core.USBError as e:
raise Exception("Could not set configuration: %s" % str(e))
# get device endpoint information
endpoint = device[0][(0,0)][0]
swiped = False
data = []
datalist = []
print 'Swipe Card:'
while True:
try:
results = device.read(endpoint.bEndpointAddress, endpoint.wMaxPacketSize, timeout=5)
data += results
datalist.append(results)
swiped = True
except usb.core.USBError as e:
if e.args[1] == 'Operation timed out' and swiped:
break # timeout and swiped means we are done
# create a list of 8 bit bytes and remove
# empty bytes
ndata = []
for d in datalist:
if d.tolist() != [0, 0, 0, 0, 0, 0, 0, 0]:
ndata.append(d.tolist())
# parse over our bytes and create string to final return
sdata = ''
for n in ndata:
# handle non shifted letters
if n[2] in chrMap and n[0] == 0:
sdata += chrMap[n[2]]
# handle shifted letters
elif n[2] in shiftchrMap and n[0] == 2:
sdata += shiftchrMap[n[2]]
print sdata