make it clear it is the flipped IP

This commit is contained in:
Girish Ramakrishnan
2023-03-27 12:11:59 +02:00
parent b63d6c87ce
commit e4e36ff90c

View File

@@ -527,7 +527,7 @@ async function checkRblStatus(domain) {
const [error, records] = await safe(dig.resolve(flippedIp + '.' + rblServer.dns, 'A', DNS_OPTIONS));
if (error || !records) continue; // not listed
debug(`checkRblStatus: ${domain} (ip: ${flippedIp}) is in the blacklist of ${JSON.stringify(rblServer)}`);
debug(`checkRblStatus: ${domain} (flippedIp: ${flippedIp}) is in the blacklist of ${JSON.stringify(rblServer)}`);
const result = _.extend({ }, rblServer);