├── README.md ├── dumps ├── tp-link │ ├── mr3020_v1.8_2050500194_rev1.1_cz.bin │ ├── wdr3600_v1.1_2050500231_rev1.0_pl.bin │ ├── wdr3600_v1.1_2050500272_rev1.3_pl.bin │ ├── wdr4300_v1.7_2050500272_rev1.3_eu.bin │ ├── wdr4310_v1.0_2050500271_rev1.3_cn.bin │ ├── wdr4900_v1.3_2050500289_rev1.0_eu.bin │ └── wr940n_v4.0_2050500776_rev1.0_eu.bin └── ubiquiti │ └── nanostation-loco-m5_xm_11-00127-02.bin ├── results └── tp-link │ ├── mr3020_v1.8_2050500194_rev1.1_cz.txt │ ├── wdr3600_v1.1_2050500231_rev1.0_pl.txt │ ├── wdr3600_v1.1_2050500272_rev1.3_pl.txt │ ├── wdr4310_v1.0_2050500271_rev1.3_cn.txt │ └── wdr4900_v1.3_2050500289_rev1.0_eu.txt └── tools └── ar9300_eeprom ├── LICENSE ├── Makefile ├── README.md ├── ar9300_eeprom.c ├── bin ├── ar9300_eeprom └── ar9300_eeprom.exe ├── detect_eeprom.c ├── dump_eeprom.c ├── include ├── ar9003_eeprom.h ├── ar9300_eeprom.h ├── eeprom.h ├── types.h └── wdr4300.h └── io_eeproms.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/README.md -------------------------------------------------------------------------------- /dumps/tp-link/mr3020_v1.8_2050500194_rev1.1_cz.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/dumps/tp-link/mr3020_v1.8_2050500194_rev1.1_cz.bin -------------------------------------------------------------------------------- /dumps/tp-link/wdr3600_v1.1_2050500231_rev1.0_pl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/dumps/tp-link/wdr3600_v1.1_2050500231_rev1.0_pl.bin -------------------------------------------------------------------------------- /dumps/tp-link/wdr3600_v1.1_2050500272_rev1.3_pl.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/dumps/tp-link/wdr3600_v1.1_2050500272_rev1.3_pl.bin -------------------------------------------------------------------------------- /dumps/tp-link/wdr4300_v1.7_2050500272_rev1.3_eu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/dumps/tp-link/wdr4300_v1.7_2050500272_rev1.3_eu.bin -------------------------------------------------------------------------------- /dumps/tp-link/wdr4310_v1.0_2050500271_rev1.3_cn.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/dumps/tp-link/wdr4310_v1.0_2050500271_rev1.3_cn.bin -------------------------------------------------------------------------------- /dumps/tp-link/wdr4900_v1.3_2050500289_rev1.0_eu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/dumps/tp-link/wdr4900_v1.3_2050500289_rev1.0_eu.bin -------------------------------------------------------------------------------- /dumps/tp-link/wr940n_v4.0_2050500776_rev1.0_eu.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/dumps/tp-link/wr940n_v4.0_2050500776_rev1.0_eu.bin -------------------------------------------------------------------------------- /dumps/ubiquiti/nanostation-loco-m5_xm_11-00127-02.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/dumps/ubiquiti/nanostation-loco-m5_xm_11-00127-02.bin -------------------------------------------------------------------------------- /results/tp-link/mr3020_v1.8_2050500194_rev1.1_cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/results/tp-link/mr3020_v1.8_2050500194_rev1.1_cz.txt -------------------------------------------------------------------------------- /results/tp-link/wdr3600_v1.1_2050500231_rev1.0_pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/results/tp-link/wdr3600_v1.1_2050500231_rev1.0_pl.txt -------------------------------------------------------------------------------- /results/tp-link/wdr3600_v1.1_2050500272_rev1.3_pl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/results/tp-link/wdr3600_v1.1_2050500272_rev1.3_pl.txt -------------------------------------------------------------------------------- /results/tp-link/wdr4310_v1.0_2050500271_rev1.3_cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/results/tp-link/wdr4310_v1.0_2050500271_rev1.3_cn.txt -------------------------------------------------------------------------------- /results/tp-link/wdr4900_v1.3_2050500289_rev1.0_eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/results/tp-link/wdr4900_v1.3_2050500289_rev1.0_eu.txt -------------------------------------------------------------------------------- /tools/ar9300_eeprom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/LICENSE -------------------------------------------------------------------------------- /tools/ar9300_eeprom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/Makefile -------------------------------------------------------------------------------- /tools/ar9300_eeprom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/README.md -------------------------------------------------------------------------------- /tools/ar9300_eeprom/ar9300_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/ar9300_eeprom.c -------------------------------------------------------------------------------- /tools/ar9300_eeprom/bin/ar9300_eeprom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/bin/ar9300_eeprom -------------------------------------------------------------------------------- /tools/ar9300_eeprom/bin/ar9300_eeprom.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/bin/ar9300_eeprom.exe -------------------------------------------------------------------------------- /tools/ar9300_eeprom/detect_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/detect_eeprom.c -------------------------------------------------------------------------------- /tools/ar9300_eeprom/dump_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/dump_eeprom.c -------------------------------------------------------------------------------- /tools/ar9300_eeprom/include/ar9003_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/include/ar9003_eeprom.h -------------------------------------------------------------------------------- /tools/ar9300_eeprom/include/ar9300_eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/include/ar9300_eeprom.h -------------------------------------------------------------------------------- /tools/ar9300_eeprom/include/eeprom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/include/eeprom.h -------------------------------------------------------------------------------- /tools/ar9300_eeprom/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/include/types.h -------------------------------------------------------------------------------- /tools/ar9300_eeprom/include/wdr4300.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/include/wdr4300.h -------------------------------------------------------------------------------- /tools/ar9300_eeprom/io_eeproms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeFetch/art-collection/HEAD/tools/ar9300_eeprom/io_eeproms.c --------------------------------------------------------------------------------