-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpastebin.lua
372 lines (339 loc) · 11.1 KB
/
pastebin.lua
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
local http = require("socket.http")
local cjson = require("cjson")
local utf8 = require("utf8")
local base64 = require("base64")
local item_value = os.getenv('item_value')
local item_type = os.getenv('item_type')
local item_dir = os.getenv('item_dir')
local warc_file_base = os.getenv('warc_file_base')
local url_count = 0
local tries = 0
local downloaded = {}
local addedtolist = {}
local abortgrab = false
local ids = {}
local discovered_outlinks = {}
load_json_file = function(file)
if file then
return JSON:decode(file)
else
return nil
end
end
read_file = function(file)
if file then
local f = assert(io.open(file))
local data = f:read("*all")
f:close()
return data
else
return ""
end
end
allowed = function(url, parenturl)
if string.match(url, "'+")
or string.match(url, "[<>\\%*%$;%^%[%],%(%){}]")
or string.match(url, "^https?://pastebin%.com/index/")
or string.match(url, "^https?://pastebin%.com/report/") then
return false
end
local tested = {}
for s in string.gmatch(url, "([^/]+)") do
if tested[s] == nil then
tested[s] = 0
end
if tested[s] == 6 then
return false
end
tested[s] = tested[s] + 1
end
for s in string.gmatch(url, "([0-9a-zA-Z]+)") do
if string.lower(s) == string.lower(item_value) then
return true
end
end
return false
end
wget.callbacks.download_child_p = function(urlpos, parent, depth, start_url_parsed, iri, verdict, reason)
local url = urlpos["url"]["url"]
local html = urlpos["link_expect_html"]
if string.match(url, "[<>\\%*%$;%^%[%],%(%){}\"]") then
return false
end
return false
end
wget.callbacks.get_urls = function(file, url, is_css, iri)
local urls = {}
local html = nil
downloaded[url] = true
local function check(urla)
local origurl = url
local url = string.match(urla, "^([^#]+)")
local url_ = string.gsub(string.match(url, "^(.-)%.?$"), "&", "&")
if (downloaded[url_] ~= true and addedtolist[url_] ~= true)
and allowed(url_, origurl) then
table.insert(urls, { url=url_ })
addedtolist[url_] = true
addedtolist[url] = true
end
end
local function checknewurl(newurl)
if string.match(newurl, "^https?:////") then
check(string.gsub(newurl, ":////", "://"))
elseif string.match(newurl, "^https?://") then
check(newurl)
elseif string.match(newurl, "^https?:\\/\\?/") then
check(string.gsub(newurl, "\\", ""))
elseif string.match(newurl, "^\\/\\/") then
check(string.match(url, "^(https?:)")..string.gsub(newurl, "\\", ""))
elseif string.match(newurl, "^//") then
check(string.match(url, "^(https?:)")..newurl)
elseif string.match(newurl, "^\\/") then
check(string.match(url, "^(https?://[^/]+)")..string.gsub(newurl, "\\", ""))
elseif string.match(newurl, "^/") then
check(string.match(url, "^(https?://[^/]+)")..newurl)
elseif string.match(newurl, "^%./") then
checknewurl(string.match(newurl, "^%.(.+)"))
end
end
local function checknewshorturl(newurl)
if string.match(newurl, "^%?") then
check(string.match(url, "^(https?://[^%?]+)")..newurl)
elseif not (string.match(newurl, "^https?:\\?/\\?//?/?")
or string.match(newurl, "^[/\\]")
or string.match(newurl, "^%./")
or string.match(newurl, "^[jJ]ava[sS]cript:")
or string.match(newurl, "^[mM]ail[tT]o:")
or string.match(newurl, "^vine:")
or string.match(newurl, "^android%-app:")
or string.match(newurl, "^ios%-app:")
or string.match(newurl, "^%${")) then
check(string.match(url, "^(https?://.+/)")..newurl)
end
end
if allowed(url, nil) and status_code == 200
and not string.match(url, "^https?://[^/]+/dl/")
and not string.match(url, "^https?://[^/]+/clone/")
and not string.match(url, "^https?://[^/]+/print/")
and not string.match(url, "^https?://[^/]+/embed_js/")
and not string.match(url, "^https?://[^/]+/embed_iframe/") then
html = read_file(file)
if string.match(url, "^https?://pastebin%.com/[0-9a-zA-Z]+$")
and not string.match(html, 'class="highlighted%-code"') then
if string.match(html, "<title>%s*Private Paste ID") then
print("Private paste.")
elseif string.match(html, "<title>[^<]+Potentially offensive content") then
print("Paste with offensive content.")
local csrf = string.match(html, '<input[^>]+name="_csrf%-frontend"[^>]+value="([^"]+)">')
table.insert(urls, {
url=url,
post_data="_csrf-frontend=" .. csrf .. "&is_spam=0"
})
os.execute("sleep 60")
else
print("This paste is not available, probably has a captcha.")
abortgrab = true
end
end
if string.match(url, "/raw/") then
local newurls = {}
for line in string.gmatch(html, "([^\n]+)") do
for _, pattern in pairs({
"^([hH][tT][tT][pP][sS]?://[^#]+)",
"([hH][tT][tT][pP][sS]?://[^%s<>#\"'\\`{}%)%]]+)",
"([hH][tT][tT][pP][sS]?://[A-Za-z0-9!%$%%&'%(%)%*%+,/:;=%?@%[%]%-_%.~]+)",
'"([hH][tT][tT][pP][sS]?://[^"]+)',
"'([hH][tT][tT][pP][sS]?://[^']+)",
">[%s]*([hH][tT][tT][pP][sS]?://[^<%s]+)",
}) do
for newurl in string.gmatch(line, pattern) do
while string.match(newurl, ".[%.&,!;]$") do
newurl = string.match(newurl, "^(.+).$")
end
newurls[newurl] = true
end
end
for c62, c63 in pairs({
["+"]="/",
["-"]="_"
}) do
for newurl in string.gmatch(line, "(aHR0c[0-9A-Za-z%" .. c62 .. c63 .. "]+=*)") do
local status, newurl = pcall(base64.decode, newurl, base64.makedecoder(c62, c63, "="))
if status then
newurls[newurl] = true
end
end
end
end
for newurl, _ in pairs(newurls) do
newurl = string.gsub(
newurl, "\\[uU]([0-9a-fA-F][0-9a-fA-F][0-9a-fA-F][0-9a-fA-F])",
function (s)
return utf8.char(tonumber(s, 16))
end
)
newurl = string.gsub(
newurl, "\\[xX]([0-9a-fA-F][0-9a-fA-F])",
function (s)
return utf8.char(tonumber(s, 16))
end
)
newurl = string.gsub(
newurl, "(.)",
function (s)
local b = string.byte(s)
if b < 32 or b > 126 then
return string.format("%%%02X", b)
end
return s
end
)
newurl = string.match(newurl, "^([^#]*)")
discovered_outlinks[newurl] = true
end
end
if item_type == "paste" then
html = string.gsub(html, '<textarea%s+class="textarea">.-</textarea>', '')
html = string.gsub(html, '<div[^>]+class="source"[^>]+>.-</div>%s*</div>', '')
end
for newurl in string.gmatch(string.gsub(html, """, '"'), '([^"]+)') do
checknewurl(newurl)
end
for newurl in string.gmatch(string.gsub(html, "'", "'"), "([^']+)") do
checknewurl(newurl)
end
for newurl in string.gmatch(html, ">%s*([^<%s]+)") do
checknewurl(newurl)
end
for newurl in string.gmatch(html, "href='([^']+)'") do
checknewshorturl(newurl)
end
for newurl in string.gmatch(html, "[^%-]href='([^']+)'") do
checknewshorturl(newurl)
end
for newurl in string.gmatch(html, '[^%-]href="([^"]+)"') do
checknewshorturl(newurl)
end
for newurl in string.gmatch(html, ":%s*url%(([^%)]+)%)") do
checknewurl(newurl)
end
end
return urls
end
wget.callbacks.httploop_result = function(url, err, http_stat)
status_code = http_stat["statcode"]
url_count = url_count + 1
io.stdout:write(url_count .. "=" .. status_code .. " " .. url["url"] .. " \n")
io.stdout:flush()
if status_code >= 300 and status_code <= 399 then
local newloc = string.match(http_stat["newloc"], "^([^#]+)")
if string.match(newloc, "^//") then
newloc = string.match(url["url"], "^(https?:)") .. string.match(newloc, "^//(.+)")
elseif string.match(newloc, "^/") then
newloc = string.match(url["url"], "^(https?://[^/]+)") .. newloc
elseif not string.match(newloc, "^https?://") then
newloc = string.match(url["url"], "^(https?://.+/)") .. newloc
end
if downloaded[newloc] == true or addedtolist[newloc] == true or not allowed(newloc, url["url"]) then
tries = 0
return wget.actions.EXIT
end
end
if status_code >= 200 and status_code <= 399 then
downloaded[url["url"]] = true
downloaded[string.gsub(url["url"], "https?://", "http://")] = true
end
if abortgrab == true then
io.stdout:write("ABORTING...\n")
return wget.actions.ABORT
end
if status_code == 404 then
return wget.actions.ABORT
end
if status_code >= 400
or status_code == 0 then
io.stdout:write("Server returned "..http_stat.statcode.." ("..err.."). Sleeping.\n")
io.stdout:flush()
local maxtries = 5
if not allowed(url["url"], nil) then
maxtries = 2
end
if tries > maxtries then
io.stdout:write("\nI give up...\n")
io.stdout:flush()
tries = 0
if allowed(url["url"], nil) then
io.open("BANNED", "w"):close()
return wget.actions.ABORT
else
return wget.actions.EXIT
end
else
os.execute("sleep " .. math.floor(math.pow(2, tries)))
tries = tries + 1
return wget.actions.CONTINUE
end
end
tries = 0
local sleep_time = 0
if sleep_time > 0.001 then
os.execute("sleep " .. sleep_time)
end
return wget.actions.NOTHING
end
wget.callbacks.finish = function(start_time, end_time, wall_time, numurls, total_downloaded_bytes, total_download_time)
local function submit_backfeed(items, key)
local tries = 0
local maxtries = 10
while tries < maxtries do
if killgrab then
return false
end
local body, code, headers, status = http.request(
"https://legacy-api.arpa.li/backfeed/legacy/" .. key,
items .. "\0"
)
if code == 200 and body ~= nil and cjson.decode(body)["status_code"] == 200 then
io.stdout:write(string.match(body, "^(.-)%s*$") .. "\n")
io.stdout:flush()
return nil
end
io.stdout:write("Failed to submit discovered URLs." .. tostring(code) .. tostring(body) .. "\n")
io.stdout:flush()
os.execute("sleep " .. math.floor(math.pow(2, tries)))
tries = tries + 1
end
kill_grab()
error()
end
for key, data in pairs({
["urls-c3ilj1tl9w8p1r6e"] = discovered_outlinks
}) do
print('queuing for', string.match(key, "^(.+)%-"))
local items = nil
local count = 0
for item, _ in pairs(data) do
--print("found item", item)
if items == nil then
items = item
else
items = items .. "\0" .. item
end
count = count + 1
if count == 500 then
submit_backfeed(items, key)
items = nil
count = 0
end
end
if items ~= nil then
submit_backfeed(items, key)
end
end
end
wget.callbacks.before_exit = function(exit_status, exit_status_string)
if abortgrab == true then
return wget.exits.IO_FAIL
end
return exit_status
end