kpcyrd/threatminer-subdomains
-- Description: Query ThreatMiner passive dns for subdomains of a domain
-- Version: 0.3.0
-- Source: domains
-- License: GPL-3.0
session = http_mksession()
req = http_request(session, 'GET', 'https://api.threatminer.org/v2/domain.php', {
query={
rt='5',
q=arg['value']
}
})
resp = http_send(req)
if last_err() then return end
if resp['status'] ~= 200 then return 'http error: ' .. resp['status'] end
o = json_decode(resp['text'])
if last_err() then return end
o = o['results']
for i=1, #o do
x = o[i]
db_add('subdomain', {
domain_id=arg['id'],
value=x,
})
end
end