├── README.md ├── confs ├── dhcpd.conf ├── hostapd.conf ├── interfaces ├── rc.local └── rctmp.local ├── fixclock.sh ├── html ├── base.csv ├── css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── custom.css │ └── dataTables.bootstrap.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── index.html └── js │ ├── LICENSE │ ├── README.md │ ├── bootstrap.min.js │ ├── css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── custom.css │ └── dataTables.bootstrap.css │ ├── csv_to_html_table.js │ ├── data │ ├── Health Clinics in Chicago.csv │ ├── colon_separator_example.csv │ └── fatty_acid_profiles.csv │ ├── dataTables.bootstrap.js │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ ├── images │ ├── Sorting icons.psd │ ├── favicon.ico │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ ├── sort_desc.png │ └── sort_desc_disabled.png │ ├── index.html │ ├── jquery.csv.min.js │ ├── jquery.dataTables.min.js │ └── jquery.min.js ├── install.sh ├── laststep.sh └── wiegotcha.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/README.md -------------------------------------------------------------------------------- /confs/dhcpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/confs/dhcpd.conf -------------------------------------------------------------------------------- /confs/hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/confs/hostapd.conf -------------------------------------------------------------------------------- /confs/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/confs/interfaces -------------------------------------------------------------------------------- /confs/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/confs/rc.local -------------------------------------------------------------------------------- /confs/rctmp.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/confs/rctmp.local -------------------------------------------------------------------------------- /fixclock.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/fixclock.sh -------------------------------------------------------------------------------- /html/base.csv: -------------------------------------------------------------------------------- 1 | Time,Bit Length,Facility Code,ID Number,Proxmark Hex,Block 7,Raw Bits 2 | -------------------------------------------------------------------------------- /html/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/css/bootstrap.css.map -------------------------------------------------------------------------------- /html/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/css/bootstrap.min.css -------------------------------------------------------------------------------- /html/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/css/custom.css -------------------------------------------------------------------------------- /html/css/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/css/dataTables.bootstrap.css -------------------------------------------------------------------------------- /html/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /html/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /html/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /html/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /html/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/index.html -------------------------------------------------------------------------------- /html/js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/LICENSE -------------------------------------------------------------------------------- /html/js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/README.md -------------------------------------------------------------------------------- /html/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/bootstrap.min.js -------------------------------------------------------------------------------- /html/js/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/css/bootstrap.css.map -------------------------------------------------------------------------------- /html/js/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/css/bootstrap.min.css -------------------------------------------------------------------------------- /html/js/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/css/custom.css -------------------------------------------------------------------------------- /html/js/css/dataTables.bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/css/dataTables.bootstrap.css -------------------------------------------------------------------------------- /html/js/csv_to_html_table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/csv_to_html_table.js -------------------------------------------------------------------------------- /html/js/data/Health Clinics in Chicago.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/data/Health Clinics in Chicago.csv -------------------------------------------------------------------------------- /html/js/data/colon_separator_example.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/data/colon_separator_example.csv -------------------------------------------------------------------------------- /html/js/data/fatty_acid_profiles.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/data/fatty_acid_profiles.csv -------------------------------------------------------------------------------- /html/js/dataTables.bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/dataTables.bootstrap.js -------------------------------------------------------------------------------- /html/js/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /html/js/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /html/js/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /html/js/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /html/js/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /html/js/images/Sorting icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/images/Sorting icons.psd -------------------------------------------------------------------------------- /html/js/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/images/favicon.ico -------------------------------------------------------------------------------- /html/js/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/images/sort_asc.png -------------------------------------------------------------------------------- /html/js/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /html/js/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/images/sort_both.png -------------------------------------------------------------------------------- /html/js/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/images/sort_desc.png -------------------------------------------------------------------------------- /html/js/images/sort_desc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/images/sort_desc_disabled.png -------------------------------------------------------------------------------- /html/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/index.html -------------------------------------------------------------------------------- /html/js/jquery.csv.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/jquery.csv.min.js -------------------------------------------------------------------------------- /html/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /html/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/html/js/jquery.min.js -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/install.sh -------------------------------------------------------------------------------- /laststep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/laststep.sh -------------------------------------------------------------------------------- /wiegotcha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixmk/Wiegotcha/HEAD/wiegotcha.c --------------------------------------------------------------------------------