-
Notifications
You must be signed in to change notification settings - Fork 19
/
app.psgi
236 lines (206 loc) · 7.78 KB
/
app.psgi
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
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
package PasteSh;
use JSON;
use HTML::Entities;
use Plack::Request;
use Scalar::Util qw(blessed);
use Tie::LevelDB;
use Web::Simple;
use MIME::Base64;
tie my %data, 'Tie::LevelDB', 'db';
my $serverauth = do {
open my $fh, "<", "serverauth" or die "serverauth: $!";
(<$fh> =~ /(.*)/)[0];
};
my @common_headers = (
'Strict-Transport-Security' => 'max-age=31536000',
'Content-Security-Policy' => "default-src 'none'; script-src-elem 'sha256-TjsPhurEfe5I/NIFK2kW+uwGWae+45tt1QLXVcfe3fE=' 'sha256-J+rNifeY/oCTf6N0pQRiRCEePpfMeFLIjLoHds/Cty8=' 'sha256-ZI1+CuyNcia+Vucl/2bX6SZHichglaL8L1gyw8l8j1c=' 'sha256-BugM3Jj5NhEB4AhjoExCxAfyo2pmlE3EQuwdSxvSMk8=' 'sha256-pietFDNE66M/Oh2TMiCEF4NGVSvrq6IMKKBnHZegIEE=' 'sha256-uA2803UHxZZKqjf0OKZI5jUV0LWWGxhw5DEx9R7u5wU=' 'sha256-MtuPdcLFCdAzdf3zQay8pkxDrd6uJ3Hqeezg9opuiPY=' 'sha256-zv8VFScGndG98F3RFjK9E94Tkc6hmNuIF5mUTPrPMpA=' 'sha256-pazpxy7vEXKRc5u5MZt9vArdACbkqM5evVRenrJwhek=' 'sha256-7jMSjFvKwTzCu7HXcbN1ydvyD1CEj9tMDmzwGrpekxo=' 'sha256-oMd+FVHsOUPYtC3Blivb/17OQ/dTtJQ3959UFKn7G/0='; style-src-elem 'sha256-weMr9Tf2VOyxLsWKBdTotF/gJqlMGGuSXR9dFB+UztA='; style-src-attr 'unsafe-hashes' 'sha256-MhKNMxi8AYujc7LgatwtyNdREZ6Cf3QT4yvkby13/l0=' 'sha256-HSCYqJVY7H4ZnUNUEhNwSPZvWXUuSxmQ71p6hkhUDCs='; img-src 'self' data: blob:; object-src 'none'; base-uri 'none'; require-trusted-types-for 'script'; trusted-types raw; connect-src 'self'; manifest-src data:; report-uri https://paste.sh/csp"
);
sub _error {
my($message, $code) = @_;
return [ $code,
[ 'Content-Type' => 'text/plain', @common_headers ],
[ $message . "\n" ] ];
}
sub dispatch_request {
my($self, $env) = @_;
sub (/) {
my($self) = @_;
redispatch_to '/index';
},
sub (GET + /cryptojs/*.*) {
my($self, $file) = @_;
if($file =~ /[^a-z0-9-.]/ || !-f "crypto-js/src/$file") {
return _error('Not found', 404);
}
open my $fh, "<", "crypto-js/src/$file" or return;
return [ 200,
[ 'Content-type', 'text/javascript', @common_headers ],
[ <$fh> ] ];
},
sub (GET + /favicon.ico) {
my($self) = @_;
open my $fh, "<", "favicon.ico" or return;
return [ 200,
[ 'Content-type', 'image/x-icon', @common_headers ],
[ <$fh> ] ];
},
sub (POST + /abuse) {
my($self, $path) = @_;
my $req = Plack::Request->new($env);
open my $fh, ">>", "abuse.txt" or die $!;
my $c = $req->content;
$c =~ s/[^\x21-\x7F]//g; # must be url encoded
print $fh time, " $c\n";
close $fh;
return [ 302,
[ Location => "/ok" ],
[ ] ];
},
sub (GET + /new + ?id=) {
my($self, $id) = @_;
if($data{$id}) {
return _error('Already exists', 409);
}
return [ 200, [ 'Content-type', 'text/plain', @common_headers ],
[ map chr 32 + rand 96, 1 .. 8 ] ];
},
sub (GET + /* + .txt) {
my($self, $path) = @_;
my $data = exists $data{$path} ? eval { decode_json $data{$path} } : undef;
if(!$data) {
return _error('Not found', 404);
}
my $content = $data->{content};
if ($content =~ /^Salted__/) {
$content = encode_base64($content);
} else {
$content =~ s/\G(.{76})/$1\n/g;
}
$data->{type} ||= 'v1';
return [ 200, [
'Content-type' => ($data->{type} eq 'v1' ? 'text/plain' : "text/vnd.paste.sh-$data->{type}"),
(exists $data->{etag} && $data->{etag} ? (ETag => "\"$data->{etag}\"") : ()),
@common_headers
], [
($data->{serverkey} || "") . "\n" . $content . "\n"
] ];
},
\&client,
sub (GET + /**) {
my($self, $path) = @_;
my $req = Plack::Request->new($env);
my $cookie = $req->cookies->{pasteauth};
if ($path eq 'index' && $req->header('User-Agent') =~ /^curl\//) {
return client();
}
my $data = exists $data{$path} ? eval { decode_json $data{$path} } : undef;
if(!$data && ($path =~ /^p.{8}/ || length($path) < 8 || length($path) > 12)) {
return _error('Not found', 404);
}
if ($path eq 'index') {
# serverkey is no longer used, as we use PBKDF2
$data->{content} = $data->{serverkey} = "";
}
open my $fh, "<", "paste.html" or die $!;
my $template = join "", <$fh>;
my $public = $path =~ /^p.{8}/;
$template =~ s/\{\{encrypted\}\}/$public ? "" : "encrypted"/e;
$template =~ s/\{\{content\}\}/$data ? $data->{content} =~ m{^Salted__} ? encode_base64($data->{content}, "") : $data->{content} : ""/e;
$template =~ s/\{\{etag\}\}/exists($data->{etag}) && $data->{etag} ? $data->{etag} : ""/e;
$template =~ s/\{\{type\}\}/exists $data->{type} ? $data->{type} : "v1"/e;
$template =~ s/\{\{serverkey\}\}/encode_entities($data->{serverkey} || "")/e;
$template =~ s/\{\{editable\}\}/
($cookie && $data->{cookie} && $cookie eq $data->{cookie})
|| $path eq 'index' || !$data->{content}/e;
return [ 200, [
'Content-type' => 'text/html; charset=UTF-8',
(!$public && $path =~ /.{8}/) ? ('X-Robots-Tag' => 'noindex') : (),
($path eq 'index' ? (Vary => 'Accept, User-Agent') : ()),
@common_headers,
], [ $template ] ];
},
sub (PUT + /**) {
my($self, $path) = @_;
my $req = Plack::Request->new($env);
my $content = $req->content;
my $cookie = $req->cookies->{pasteauth};
my $etag = $req->header('ETag');
if ($etag && $etag !~ m{^"[A-Za-z0-9/+]{86}"$}) {
return _error("Invalid ETag", 400);
}
$etag =~ s/"//g if $etag;
my $sauth = $req->header('X-Server-Auth');
if($sauth) {
if($sauth ne $serverauth) {
return _error("Invalid auth", 401);
}
# Authed clients can write anything (for updating about, etc).
} elsif(length($path) < 8 || length($path) > 12 || $path =~ m{[^A-Za-z0-9_-]}) {
return _error("Invalid path", 400);
}
if(!$sauth && exists $data{$path}) {
if(my $cur = eval { decode_json $data{$path} }) {
if(!$cur->{cookie} || $cur->{cookie} ne $cookie) {
return _error("Invalid cookie", 403);
}
my $match = $req->header('If-Match');
if ($match && $match ne '*') {
my $ok = 0;
$ok |= $cur->{etag} eq s/"//rg for split /,\s*/, $match;
if (!$ok) {
return _error("Conflict (disabled; open in another tab and compare the text)", 412);
}
}
}
}
$content =~ s/[\r\n]//g;
if($content =~ m{[^A-Za-z0-9/+=]}) {
return _error("Content contains non-base64", 400);
}
$content = decode_base64($content);
if (length($content) < 32 || length($content) % 16 != 0 || "Salted__" ne substr $content, 0, 8) {
return _error("Content invalid", 400);
}
if(length $content > (1024 * 1024)) {
return _error("Content too large", 413);
}
my $serverkey = $req->header('X-Server-Key');
my $ct = $req->header('Content-Type');
my $type = "v1";
if (defined $ct && $ct =~ m{^text/vnd\.paste\.sh-v2\s*(;.*|$)}) {
$type = "v2";
} elsif (defined $ct && $ct =~ m{^text/vnd\.paste\.sh-v3\s*(;.*|$)}) {
$type = "v3";
}
my $ua = $req->header('User-Agent') || "";
my $xf = $req->header('X-Forwarded-For') || "";
$data{$path} = encode_json {
content => $content,
cookie => $cookie,
timestamp => time,
serverkey => $serverkey,
type => $type,
etag => $etag,
hdr => {
ua => $ua,
xf => $xf,
},
};
[ 200,
[ 'Content-type', 'text/plain; charset=UTF-8', @common_headers ],
[ "Saved " . length($content) . " bytes" . ($ua =~ /curl\// ? ".\n" : " ☑️\n") ] ]
},
sub () {
_error("Not found", 404);
}
}
sub client (GET + /paste.sh) {
my($self, $path) = @_;
open my $fh, "<", "paste.sh" or die $!;
return [ 200, [
'Content-type' => 'text/x-shellscript; charset=UTF-8',
'Content-Disposition' => 'inline; filename="paste.sh"',
@common_headers
], [ <$fh> ] ];
}
__PACKAGE__->run_if_script;