├── 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 | file:// URI tests 5 | 63 | 64 | 65 |

file:// URI Security Tests

66 |
67 |

Check if any file:// reads are possible

68 | 69 |
70 |

file:// read speed test

71 | Number of file reads to attempt: 72 | 73 |
74 |

Check if arbitrary read is possible

75 | 76 |
77 | 78 | 79 | -------------------------------------------------------------------------------- /testreadfile.txt: -------------------------------------------------------------------------------- 1 | OK 2 | --------------------------------------------------------------------------------