-
Notifications
You must be signed in to change notification settings - Fork 227
/
multiselect.py
executable file
·61 lines (52 loc) · 1.79 KB
/
multiselect.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
#!/usr/bin/python
# multiselect.py - continuously select card and display ID
#
# Adam Laurie <[email protected]>
# http://rfidiot.org/
#
# This code is copyright (c) Adam Laurie, 2006, All rights reserved.
# For non-commercial use only, the following terms apply - for all other
# uses, please contact the author:
#
# This code is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This code is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
import rfidiot
import sys
import os
import time
import string
try:
card= rfidiot.card
except:
os._exit(True)
args= rfidiot.args
card.info('multiselect v0.1n')
# force card type if specified
if len(args) == 1:
if not card.settagtype(args[0]):
print 'Could not set tag type'
os._exit(True)
else:
card.settagtype(card.ALL)
while 42:
if card.select('A') or card.select('B'):
print ' Tag ID: ' + card.uid,
if (card.readertype == card.READER_FROSCH and card.tagtype == card.HITAG2 and card.tagmode == card.HITAG2_PASSWORD):
print " Tag Type: Hitag2 (Password mode)"
if (card.readertype == card.READER_FROSCH and card.tagtype == card.HITAG2 and card.tagmode == card.HITAG2_CRYPTO):
print " Tag Type: Hitag2 (Crypto mode)"
if (card.readertype == card.READER_ACG and string.find(card.readername,"LFX") == 0):
print " Tag Type:" + card.LFXTags[card.tagtype]
else:
print
else:
print ' No card present\r',
sys.stdout.flush()