| 12
 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
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 
 | const crypto = require('crypto')const http = require('http')
 const mustache = require('mustache')
 const getRawBody = require('raw-body')
 const _ = require('lodash')
 
 
 
 
 const flag = "flag{8lu3pr1nTs_aRe_tHe_hiGh3s1_quA11tY_pr0t()s}"
 
 
 const indexTemplate = `
 <!doctype html>
 <style>
 body {
 background: #172159;
 }
 * {
 color: #fff;
 }
 </style>
 <h1>your public blueprints!</h1>
 <i>(in compliance with military-grade security, we only show the public ones. you must have the unique URL to access private blueprints.)</i>
 <br>
 {{#blueprints}}
 {{#public}}
 <div><br><a href="/blueprints/{{id}}">blueprint</a>: {{content}}<br></div>
 {{/public}}
 {{/blueprints}}
 <br><a href="/make">make your own blueprint!</a>
 `
 
 const blueprintTemplate = `
 <!doctype html>
 <style>
 body {
 background: #172159;
 color: #fff;
 }
 </style>
 <h1>blueprint!</h1>
 {{content}}
 `
 
 const notFoundPage = `
 <!doctype html>
 <style>
 body {
 background: #172159;
 color: #fff;
 }
 </style>
 <h1>404</h1>
 `
 
 const makePage = `
 <!doctype html>
 <style>
 body {
 background: #172159;
 color: #fff;
 }
 </style>
 <div>content:</div>
 <textarea id="content"></textarea>
 <br>
 <span>public:</span>
 <input type="checkbox" id="public">
 <br><br>
 <button id="submit">create blueprint!</button>
 <script>
 submit.addEventListener('click', () => {
 fetch('/make', {
 method: 'POST',
 headers: {
 'content-type': 'application/json',
 },
 body: JSON.stringify({
 content: content.value,
 public: public.checked,
 })
 }).then(res => res.text()).then(id => location='/blueprints/' + id)
 })
 </script>
 `
 
 
 const parseUserId = (cookies) => {
 if (cookies === undefined) {
 return null
 }
 const userIdCookie = cookies.split('; ').find(cookie => cookie.startsWith('user_id='))
 if (userIdCookie === undefined) {
 return null
 }
 return decodeURIComponent(userIdCookie.replace('user_id=', ''))
 }
 
 const makeId = () => crypto.randomBytes(16).toString('hex')
 
 
 const users = new Map()
 
 http.createServer((req, res) => {
 let userId = parseUserId(req.headers.cookie)
 let user = users.get(userId)
 if (userId === null || user === undefined) {
 
 userId = makeId()
 user = {
 blueprints: {
 [makeId()]: {
 content: flag,
 },
 },
 }
 users.set(userId, user)
 }
 
 
 res.writeHead(200, {
 'set-cookie': 'user_id=' + encodeURIComponent(userId) + '; Path=/',
 })
 
 if (req.url === '/' && req.method === 'GET') {
 
 res.end(mustache.render(indexTemplate, {
 blueprints: Object.entries(user.blueprints).map(([k, v]) => ({
 id: k,
 content: v.content,
 public: v.public,
 })),
 }))
 } else if (req.url.startsWith('/blueprints/') && req.method === 'GET') {
 
 const blueprintId = req.url.replace('/blueprints/', '')
 if (user.blueprints[blueprintId] === undefined) {
 res.end(notFoundPage)
 return
 }
 res.end(mustache.render(blueprintTemplate, {
 content: user.blueprints[blueprintId].content,
 }))
 } else if (req.url === '/make' && req.method === 'GET') {
 
 res.end(makePage)
 } else if (req.url === '/make' && req.method === 'POST') {
 
 getRawBody(req, {
 limit: '1mb',
 }, (err, body) => {
 if (err) {
 throw err
 }
 let parsedBody
 try {
 
 parsedBody = _.defaultsDeep({
 publiс: false,
 cоntent: '',
 }, JSON.parse(body))
 } catch (e) {
 res.end('bad json')
 return
 }
 
 
 const blueprintId = makeId()
 user.blueprints[blueprintId] = {
 content: parsedBody.content,
 public: parsedBody.public,
 }
 
 res.end(blueprintId)
 })
 } else {
 res.end(notFoundPage)
 }
 }).listen(80, () => {
 console.log('listening on port 80')
 })
 
 |