Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonathankingston/secure-fail-report
Reporting secure.fail reports failures grammars headers fails
https://github.com/jonathankingston/secure-fail-report
Last synced: about 2 months ago
JSON representation
Reporting secure.fail reports failures grammars headers fails
- Host: GitHub
- URL: https://github.com/jonathankingston/secure-fail-report
- Owner: jonathanKingston
- Created: 2015-08-12T01:25:03.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-08-17T00:51:04.000Z (over 9 years ago)
- Last Synced: 2024-04-23T20:15:25.500Z (9 months ago)
- Language: JavaScript
- Homepage: https://secure.fail
- Size: 125 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# [secure.fail](https://secure.fail) report
## What is this?
It's mostly a hacky bit of script that will evolve, at the moment it is nothingness if you install it basically all your hardware belong to me. (Thanks for the Bitcoins and CDN server)
## What is it really
A hacky bit of JSON output after parsing the hostname of stdin
```
secure-crawl-json example.com
```The result will be something like:
```
{
"host": "bbc.com",
"https": {
"statusCode": 200,
"responseTime": 1439772567482,
"HTTPSResolve": false,
"CSP": false,
"PKP": false,
"STS": false,
"XSSProtection": false,
"frameProtection": false,
"noSniff": false
},
"http": {
"statusCode": 200,
"responseTime": 1439772567828,
"HTTPSResolve": false,
"CSP": false,
"PKP": false,
"STS": false,
"XSSProtection": false,
"frameProtection": false,
"noSniff": false
}
}
```## Thanks
[Inspired by the great work here](https://scotthelme.co.uk/how-widely-used-are-security-based-http-response-headers/)