-
Notifications
You must be signed in to change notification settings - Fork 115
/
book.json
89 lines (89 loc) · 2.51 KB
/
book.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"title": "Heap Exploitation",
"description": "This book on heap exploitation is a guide to understanding the internals of glibc's heap. It also describes, in detail, various attacks possible on the heap structure.",
"plugins": [
"anchors",
"autocover",
"disqus",
"ga",
"github",
"meta",
"sitemap",
"splitter",
"word-count"
],
"pluginsConfig": {
"disqus": {
"shortName": "heap-exploitation"
},
"ga": {
"token": "UA-51308700-2"
},
"github": {
"url": "https://github.com/DhavalKapil/heap-exploitation"
},
"meta": {
"data": [
{
"name": "keywords",
"content": "heap, exploitation, malloc, free, glibc, chunk, security, unlink, maleficarum, dhaval, kapil"
},
{
"property": "og:title",
"content": "Heap Exploitation"
},
{
"property": "og:description",
"content": "This book on heap exploitation is a guide to understanding the internals of glibc's heap. It also describes, in detail, various attacks possible on the heap structure."
},
{
"property": "og:url",
"content": "https://heap-exploitation.dhavalkapil.com/"
},
{
"property": "og:site_name",
"content": "Heap Exploitation by Dhaval Kapil"
},
{
"property": "og:image",
"content": "https://dhavalkapil.com/assets/images/profile.jpg"
},
{
"property": "fb:admins",
"content": "100006280205504"
},
{
"name": "twitter:card",
"content": "summary"
},
{
"name": "twitter:title",
"content": "Heap Exploitation"
},
{
"name": "twitter:image",
"content": "https://dhavalkapil.com/assets/images/profile.jpg"
},
{
"name": "twitter:creator",
"content": "@dhaval_kapil"
},
{
"name": "twitter:site",
"content": "@dhaval_kapil"
},
{
"name": "twitter:url",
"content": "https://heap-exploitation.dhavalkapil.com/"
},
{
"name": "twitter:description",
"content": "This book on heap exploitation is a guide to understanding the internals of glibc's heap. It also describes, in detail, various attacks possible on the heap structure."
}
]
},
"sitemap": {
"hostname": "https://heap-exploitation.dhavalkapil.com/"
}
}
}