forked from sylv3rblade/crossorigin.me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
154 lines (145 loc) · 4.58 KB
/
index.js
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
148
149
150
151
152
153
154
#!/usr/bin/env node
var http = require('http'),
request = require('request'),
fs = require('fs'),
fsRead = fs.readFileSync,
gzip = require('zlib').gzipSync,
domain = require('domain'),
chalk = require('chalk');
var index = fsRead('index.html'),
indexGzip = gzip(index),
favicon = fsRead('favicon.ico'),
faviconGzip = gzip(favicon),
faviconPNG = fsRead('favicon.png'),
faviconPNGGZip = gzip(faviconPNG),
port = process.env.PORT || 8080,
debug = process.argv.indexOf('--debug') != -1,
errorString = chalk.red,
normalString = chalk.yellow;
var allowedOriginalHeaders = new RegExp('^' + require('./allowedOriginalHeaders.json').join('|'), 'i'),
bannedUrls = new RegExp(require('./bannedUrls.json').join('|'), 'i'),
defaultOptions = {
gzip:true
},
requestOptions = {
encoding: null,
rejectUnauthorized: false,
headers: {
'accept-encoding': 'gzip'
}
},
sizeLimit = 8e6; // 8MB (updated) - change this to false if you want unlimited file size
server = http.createServer(function (req, res) {
var d = domain.create();
d.on('error', function (e){
res.statusCode = 500;
if (e.message != 'Large File' && (debug && e.message == 'Parse Error')){
console.log(errorString(chalk.bold('Error: ') + (debug ? e.stack : e.message)));
res.end('Error: ' + ((e instanceof TypeError) ? "make sure your URL is correct" : e.message));
}
res.end();
});
d.add(req);
d.add(res);
d.run(function() {
handler(req, res);
});
}).listen(port);
console.log(chalk.cyan('Listening on port %s'),port);
if (debug){
console.log(chalk.bold.magenta('Running in debug mode!'));
if (sizeLimit){
console.log(chalk.magenta('Maximum file size is %s bytes'), sizeLimit)
}
}
acceptsGzip = function acceptsGzip (req, res, normal, gzipped) {
if (/gzip/g.test(req.headers['accept-encoding'])) {
res.setHeader('content-encoding', 'gzip')
res.write(gzipped);
}
else {
res.write(normal);
}
res.end();
},
handleOptions = function handleOptions (res, req) {
var options,
opts = JSON.parse(JSON.stringify(requestOptions));
var url = req.url.split(']http')
try {
options = JSON.parse(('{'+ url[0].substr(2) + '}').replace(/([a-z][^:]*)(?=\s*:)/g, '"$1"'));
} catch (e) {
options = {}
}
opts.uri = url[1] ? 'http' + url[1] : url[0].substr(1)
opts.flags = {}
for (var i in defaultOptions) {
options[i] = (typeof options[i] === 'boolean' ? options[i] : defaultOptions[i])
switch (i) {
case "gzip":
if (options.gzip === false) {
opts.headers['accept-encoding'] = 'identity'
}
else {
opts.headers['accept-encoding'] = 'gzip'
opts.flags.gzip = true
}
break;
}
}
return opts
},
handler = function handler(req, res) {
switch (bannedUrls.test(req.url) || req.url) {
case "/":
case "/index.html" :
res.setHeader('content-type', 'text/html')
acceptsGzip(req, res, index, indexGzip)
break;
case "/favicon.ico":
res.setHeader('content-type', 'image/x-icon')
acceptsGzip(req, res, favicon, faviconGzip)
break;
case "/favicon.png":
res.setHeader('content-type', 'image/png')
acceptsGzip(req, res, faviconPNG, faviconPNGGZip)
break;
case true:
res.writeHead(403);
res.end('FORBIDDEN');
break;
default:
res.setTimeout(25000);
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Credentials', false);
res.setHeader('Access-Control-Allow-Headers', 'Content-Type');
res.setHeader('Expires', new Date(Date.now() + 86400000).toUTCString()); // one day in the future
var options = handleOptions(res, req),
r = request(options);
r.pipefilter = function(response, dest) {
var size = 0;
//var ip;
response.on('data', function(chunk){
size += chunk.length;
if (sizeLimit && size > sizeLimit){
size = errorString('over max');
throw new Error('Large File');
}
});
response.on('end', function(){
console.log(normalString('Request for %s, size ' + size + ' bytes'), req.url);
/*if (debug){
ip = req.headers['x-forwarded-for'] || req.connection.remoteAddress || req.socket.remoteAddress ||req.connection.socket.remoteAddress;
console.log(chalk.magenta('Originated from ' + req.headers['x-forwarded-for']));
}*/
});
for (var header in response.headers) {
if (!allowedOriginalHeaders.test(header)) {
dest.removeHeader(header);
}
if (options.flags.gzip === true && header === 'content-encoding') dest.setHeader('content-encoding', response.headers[header])
}
};
r.pipe(res);
}
}