Content deleted Content added
add rbl link (realtime blacklists) |
add two more |
||
Line 34:
function linkFunctions.ggl(snippets)
-- Google search for the username
return makeUrlLink(
{
Line 42:
},
'Google'
)
end
function linkFunctions.http(snippets)
-- To see if an IP is serving a web page
return makeUrlLink(
{
protocol = 'http',
host = snippets.username
},
'http'
)
end
Line 68 ⟶ 79:
},
'RBLs'
)
end
function linkFunctions.rdns(snippets)
-- Reverse DNS lookup
return makeUrlLink(
{
protocol = 'http',
host = 'www.dnswatch.info',
path = '/dns/dnslookup',
query = {
la = 'en',
host = snippets.username,
submit = 'Resolve'
}
},
'RDNS'
)
end
|