Last active
June 9, 2017 14:48
-
-
Save darkk/8fac92c34f05e4b2fce073e705b31630 to your computer and use it in GitHub Desktop.
PowerDNS recursor LUA code that generates N random IP addresses with specified TTL as a response.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- uses PowerDNS 4.x, does not work with 3.x | |
function getnum ( domain ) | |
domain = domain:lower() | |
ttl, count = string.match(domain, '^(%d+)%.(%d+)%.rnd%.darkk%.net%.ru%.$') | |
if ttl ~= nil then | |
return tonumber(ttl), tonumber(count) | |
end | |
count = string.match(domain, '^(%d+)%.rnd%.darkk%.net%.ru%.$') | |
if count ~= nil then | |
return 60, tonumber(count) | |
end | |
return nil | |
end | |
function preresolve ( dq ) | |
if dq.qname:equal("myip.rnd.darkk.net.ru.") then | |
if dq.qtype == pdns.A then | |
dq.rcode = 0 | |
dq:addAnswer(pdns.A, dq.remoteaddr:toString(), 0) | |
elseif dq.qtype == pdns.TXT then | |
dq.rcode = 0 | |
dq:addAnswer(pdns.TXT, "\"Return IP address of client sending the query\"", 300) | |
end | |
return true | |
elseif dq.qname:equal("rnd.darkk.net.ru.") and dq.qtype == pdns.TXT then | |
dq.rcode = 0 | |
dq:addAnswer(pdns.TXT, "\"rnd.darkk.net.ru. is zone for testing OONI tools, don't abuse it\"", 300) | |
return true | |
else | |
ttl, count = getnum(dq.qname:toString()) | |
if ttl ~= nil then | |
if dq.qtype == pdns.A then | |
if count > 4080 then -- 4093 | |
count = 4080 | |
end | |
dq.rcode = 0 | |
for ndx = 1, count, 1 do | |
dq:addAnswer(pdns.A, string.format("%d.%d.%d.%d", math.random(0, 255), math.random(0, 255), math.random(0, 255), math.random(0, 255)), ttl) | |
end | |
elseif dq.qtype == pdns.AAAA then | |
if count > 2320 then -- 2339 | |
count = 2320 | |
end | |
dq.rcode = 0 | |
for ndx = 1, count, 1 do | |
dq:addAnswer(pdns.AAAA, string.format("2a02:%x:%x:%x:%x:%x:%x:%x", math.random(0, 65535), math.random(0, 65535), math.random(0, 65535), math.random(0, 65535), math.random(0, 65535), math.random(0, 65535), math.random(0, 65535)), ttl) | |
end | |
elseif dq.qtype == pdns.TXT then | |
dq.rcode = 0 | |
dq:addAnswer(pdns.TXT, "\"<ttl>.<count>.rnd.darkk.net.ru generates $count random A responses with $ttl TTL\"", 300) | |
end | |
return true | |
end | |
end | |
dq.rcode = pdns.DROP | |
return true | |
end | |
function nxdomain ( remoteip, domain, qtype ) | |
return false | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment