mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2024-11-04 12:40:23 -08:00
92 lines
3.2 KiB
Python
Executable File
92 lines
3.2 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
#-----------------------------------------------------------------------------
|
|
# Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
#
|
|
# This program 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 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program 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.
|
|
#
|
|
# See LICENSE.txt for the text of the license.
|
|
#-----------------------------------------------------------------------------
|
|
|
|
# python3 -m pip install urllib unidecode
|
|
|
|
import urllib.request
|
|
import unidecode
|
|
|
|
ATR_URL='https://raw.githubusercontent.com/LudovicRousseau/pcsc-tools/master/smartcard_list.txt'
|
|
|
|
C_HEADER="""//-----------------------------------------------------------------------------
|
|
// Borrowed initially from
|
|
// """ + ATR_URL + """
|
|
// Copyright (C) 2002-2021 Ludovic Rousseau
|
|
// Copyright (C) Proxmark3 contributors. See AUTHORS.md for details.
|
|
//
|
|
// This program 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 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program 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.
|
|
//
|
|
// See LICENSE.txt for the text of the license.
|
|
//-----------------------------------------------------------------------------
|
|
// *DO NOT EDIT MANUALLY*
|
|
// Autogenerated with atr_scrap_pcsctools.py
|
|
//-----------------------------------------------------------------------------
|
|
#ifndef ATRS_H__
|
|
|
|
#define ATRS_H__
|
|
#include <stddef.h>
|
|
|
|
typedef struct atr_s {
|
|
const char *bytes;
|
|
const char *desc;
|
|
} atr_t;
|
|
|
|
const char *getAtrInfo(const char *atr_str);
|
|
|
|
// atr_t array is expected to be NULL terminated
|
|
const static atr_t AtrTable[] = {
|
|
{ "3BDF18FFC080B1FE751F033078464646462026204963656D616E1D", "Cardhelper by 0xFFFF and Iceman" },
|
|
{ "3B90969181B1FE551FC7D4", "IClass SE Processor (Other) https://www.hidglobal.com/products/embedded-modules/iclass-se/sio-processor"},
|
|
"""
|
|
|
|
C_FOOTER=""" {NULL, "n/a"}
|
|
};
|
|
|
|
#endif
|
|
"""
|
|
|
|
def main():
|
|
with open('src/atrs.h','w') as fatr:
|
|
s = urllib.request.urlopen(ATR_URL).read().decode()
|
|
atr = None
|
|
desc = ''
|
|
fatr.write(C_HEADER)
|
|
for line in s.split('\n'):
|
|
if len(line) == 0 or line[0] == '#':
|
|
continue
|
|
if line[0] == '\t':
|
|
desc += ['\\n',''][len(desc)==0] + unidecode.unidecode(line[1:]).replace('"',"'").replace('\\','\\\\')
|
|
else:
|
|
if atr is not None:
|
|
fatr.write(f' {{ "{atr}", "{desc}" }},\n')
|
|
atr = line.replace(' ','')
|
|
desc = ''
|
|
fatr.write(f' {{ "{atr}", "{desc}" }},\n')
|
|
fatr.write(C_FOOTER)
|
|
|
|
if __name__ == "__main__":
|
|
main()
|