コード例 #1
0
ファイル: rfidle.py プロジェクト: Crapworks/proxmark
def main():
    cc = CMsg()

    # hail to the chief
    cc.info("RFIDLE V%s - RFID Exploitation Framework\n" % (VERSION, ))
    cc.info("(c) 2010 - Christian Eichelmann\n\n")

    # create new proxmark instance
    prox = Proxmark()

    # open proxmark device
    try:
        endpoints = prox.open_proxmark()
    except DeviceError as e:
        cc.err(e.value + "\n")
        sys.exit(e.error)
    else:
        cc.ok("Connected to Proxmark3 at [0x%x/0x%x]\n" %
              (endpoints[0], endpoints[1]))

    #prox.hf14a_reader()
    prox.tune()
コード例 #2
0
ファイル: proxmark.py プロジェクト: Crapworks/proxmark
 def __init__(self):
     self.dev = None
     self.ep_in = None
     self.ep_out = None
     self.iface = None
     self.cc = CMsg()