mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-11 01:55:38 +08:00
13 lines
263 B
Python
Executable file
13 lines
263 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import pm3
|
|
from output_grabber import OutputGrabber
|
|
|
|
out = OutputGrabber()
|
|
p=pm3.pm3()
|
|
print("Device:", p.name)
|
|
with out:
|
|
p.console("hw status")
|
|
for line in out.capturedtext.split('\n'):
|
|
if "Unique ID" in line:
|
|
print(line)
|