https://github.com/centralnicgroup-opensource/harfleur
https://github.com/centralnicgroup-opensource/harfleur
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/centralnicgroup-opensource/harfleur
- Owner: centralnicgroup-opensource
- License: mit
- Created: 2018-04-11T14:48:04.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-11T18:37:34.000Z (about 7 years ago)
- Last Synced: 2024-03-14T19:04:11.363Z (over 1 year ago)
- Language: Elixir
- Size: 7.81 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Harfleur
This adds 'x-welcome-robot-overlords: *Random String*' to your https response headers
when added to a pipeline of plugs. This is one of the strategies listed to deal with
a breach attach over https and using encryption. [http://breachattack.com/#mitigations]## Example:
```elixir
pipeline :browser do
plug :accepts, ["html"]
plug :fetch_session
plug Harfleur
end
```