├── README.md ├── Rules.db ├── _Rules.db ├── config.ini ├── database.py ├── fingerprint.py ├── static ├── css │ ├── bootstrap-theme.css │ ├── bootstrap-theme.css.map │ ├── bootstrap-theme.min.css │ ├── bootstrap-theme.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── bootstrap.min.css.map │ └── dashboard.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.min.js │ └── npm.js ├── templates ├── browser.html ├── index.html └── manage.html └── web.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/README.md -------------------------------------------------------------------------------- /Rules.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/Rules.db -------------------------------------------------------------------------------- /_Rules.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/_Rules.db -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/config.ini -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/database.py -------------------------------------------------------------------------------- /fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/fingerprint.py -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/bootstrap.css -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/css/dashboard.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /templates/browser.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/templates/browser.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/manage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/templates/manage.html -------------------------------------------------------------------------------- /web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasonsheh/FingerScan/HEAD/web.py --------------------------------------------------------------------------------