This repository was archived by the owner on Feb 26, 2020. It is now read-only.
forked from atmos/camo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.coffee
147 lines (112 loc) · 4.69 KB
/
server.coffee
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
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
Fs = require 'fs'
Url = require 'url'
Http = require 'http'
Crypto = require 'crypto'
QueryString = require 'querystring'
port = parseInt process.env.PORT || 8081
version = "0.3.0"
excluded = process.env.CAMO_HOST_EXCLUSIONS || '*.example.org'
shared_key = process.env.CAMO_KEY || '0x24FEEDFACEDEADBEEFCAFE'
logging_enabled = process.env.CAMO_LOGGING_ENABLED || "disabled"
log = (msg) ->
unless logging_enabled == "disabled"
console.log("--------------------------------------------")
console.log(msg)
console.log("--------------------------------------------")
EXCLUDED_HOSTS = new RegExp(excluded.replace(".", "\\.").replace("*", "\\.*"))
RESTRICTED_IPS = /^(10\.)|(127\.)|(169\.254)|(192\.168)|(172\.(1[6-9])|(2[0-9])|(3[0-1]))/
total_connections = 0
current_connections = 0
started_at = new Date
four_oh_four = (resp, msg) ->
log msg
resp.writeHead 404
finish resp, "Not Found"
finish = (resp, str) ->
current_connections -= 1
current_connections = 0 if current_connections < 1
resp.end str
server = Http.createServer (req, resp) ->
if req.method != 'GET' || req.url == '/'
resp.writeHead 200
resp.end 'hwhat'
else if req.url == '/favicon.ico'
resp.writeHead 200
resp.end 'ok'
else if req.url == '/status'
resp.writeHead 200
resp.end "ok #{current_connections}/#{total_connections} since #{started_at.toString()}"
else
total_connections += 1
current_connections += 1
url = Url.parse req.url
transferred_headers =
'Via' : process.env.CAMO_HEADER_VIA or= "Camo Asset Proxy #{version}"
'Accept' : req.headers.accept
'Accept-Encoding' : req.headers['accept-encoding']
'x-forwarded-for' : req.headers['x-forwarded-for']
'x-content-type-options' : 'nosniff'
delete(req.headers.cookie)
log(req.headers)
query_digest = url.pathname.replace(/^\//, '')
query_params = QueryString.parse(url.query)
if url.pathname?
hmac = Crypto.createHmac("sha1", shared_key)
hmac.update(query_params.url)
hmac_digest = hmac.digest('hex')
if hmac_digest == query_digest
url = Url.parse query_params.url
if url.host? && !url.host.match(RESTRICTED_IPS)
if url.host.match(EXCLUDED_HOSTS)
return four_oh_four(resp, "Hitting excluded hostnames")
src = Http.createClient url.port || 80, url.hostname
src.on 'error', (error) ->
four_oh_four(resp, "Client Request error #{error.stack}")
query_path = url.pathname
if url.query?
query_path += "?#{url.query}"
transferred_headers.host = url.host
log transferred_headers
srcReq = src.request 'GET', query_path, transferred_headers
srcReq.on 'response', (srcResp) ->
log srcResp.headers
content_length = srcResp.headers['content-length']
if content_length > 5242880
four_oh_four(resp, "Content-Length exceeded")
else
newHeaders =
'expires' : srcResp.headers['expires']
'content-type' : srcResp.headers['content-type']
'cache-control' : srcResp.headers['cache-control']
'content-length' : content_length
'X-Content-Type-Options' : 'nosniff'
srcResp.on 'end', ->
finish resp
srcResp.on 'error', ->
finish resp
switch srcResp.statusCode
when 200
if newHeaders['content-type'] && newHeaders['content-type'].slice(0, 5) != 'image'
four_oh_four(resp, "Non-Image content-type returned")
log newHeaders
resp.writeHead srcResp.statusCode, newHeaders
srcResp.on 'data', (chunk) ->
resp.write chunk
when 304
resp.writeHead srcResp.statusCode, newHeaders
else
four_oh_four(resp, "Responded with #{srcResp.statusCode}:#{srcResp.headers}")
srcReq.on 'error', ->
finish resp
srcReq.end()
else
four_oh_four(resp, "No host found #{url.host}")
else
four_oh_four(resp, "checksum mismatch #{hmac_digest}:#{query_digest}")
else
four_oh_four(resp, "No pathname provided on the server")
console.log "SSL-Proxy running on #{port} with pid:#{process.pid}."
console.log "Using the secret key #{shared_key}"
Fs.open "tmp/camo.pid", "w", 0600, (err, fd) ->
Fs.writeSync fd, process.pid
server.listen port