├── README.md ├── file_tests.html └── testreadfile.txt /README.md: -------------------------------------------------------------------------------- 1 | # FileURISecurity 2 | This is a simple set of tests which can be used to determine how a browser treats `file://` URIs. 3 | 4 | ## Current Tests 5 | * Check if *any* `file://` access is allowed 6 | * Check the speed of file reads 7 | * Check if arbitrary file reads are possible (e.g. from anywhere on the filesystem and not just the same folder/child folders). 8 | -------------------------------------------------------------------------------- /file_tests.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |