-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
malta.config.json
45 lines (45 loc) · 1.15 KB
/
malta.config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "The Copenhagen Book",
"description": "A basic guideline on implementing auth for the web.",
"domain": "https://thecopenhagenbook.com",
"twitter": "@pilcrowonpaper",
"sidebar": [
{
"title": "Guides",
"pages": [
["Server-side tokens", "/server-side-tokens"],
["Sessions", "/sessions"],
["Password authentication", "/password-authentication"],
["Email verification", "/email-verification"],
["Password reset", "/password-reset"],
["Generating random values", "/random-values"],
["OAuth", "/oauth"],
["Multi-factor authentication (MFA)", "/mfa"],
["WebAuthn", "/webauthn"],
["Cross-site request forgery (CSRF)", "/csrf"],
["Open redirect", "/open-redirect"]
]
},
{
"title": "Cryptography",
"pages": [
["ECDSA", "/cryptography/ecdsa"]
]
},
{
"title": "Links",
"pages": [
[
"GitHub repository",
"https://github.com/pilcrowonpaper/copenhagen"
],
["Twitter", "https://twitter.com/pilcrowonpaper"],
[
"OWASP Cheat Sheet Series",
"https://cheatsheetseries.owasp.org"
],
["Donate", "https://github.com/sponsors/pilcrowOnPaper"]
]
}
]
}