-- Copyright © by Jeff Foley 2017-2023. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. -- SPDX-License-Identifier: Apache-2.0 name = "DNSHistory" type = "scrape" function start() set_rate_limit(2) end function vertical(ctx, domain) local p = 1 local pattern = "/dns\\-records/(.*)\">" while(true) do local resp, err = request(ctx, {['url']=build_url(domain, p)}) if (err ~= nil and err ~= "") then log(ctx, "vertical request to service failed: " .. err) return elseif (resp.status_code < 200 or resp.status_code >= 400) then log(ctx, "vertical request to service returned with status code: " .. resp.status) return end local matches = submatch(resp.body, pattern) if (matches == nil or #matches == 0) then log(ctx, "failed to discover DNS records in the response") return end for _, match in pairs(matches) do new_name(ctx, match[2]) end local nxt = find(resp.body, "next") if (nxt == nil or #nxt == 0) then return end p = p + 1 end end function build_url(domain, pagenum) return "https://dnshistory.org/subdomains/" .. pagenum .. "/" .. domain end