Showing 7 of 12 total issues
Function resolve_ptr_names
has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring. Open
exports.resolve_ptr_names = async function (ptr_names, connection, next) {
// Fetch A & AAAA records for each PTR host name
const promises = []
const forwardNames = []
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function check_fcrdns
has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring. Open
exports.check_fcrdns = function (connection, results, next) {
let last_domain
for (const fdom in results) { // mail.example.com
if (!fdom) continue
const org_domain = tlds.get_organizational_domain(fdom); // example.com
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function do_dns_lookups
has 30 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.do_dns_lookups = async function (next, connection) {
if (connection.remote.is_private) {
connection.results.add(this, {skip: 'private_ip'})
return next()
Function check_fcrdns
has 28 lines of code (exceeds 25 allowed). Consider refactoring. Open
exports.check_fcrdns = function (connection, results, next) {
let last_domain
for (const fdom in results) { // mail.example.com
if (!fdom) continue
const org_domain = tlds.get_organizational_domain(fdom); // example.com
Function do_dns_lookups
has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring. Open
exports.do_dns_lookups = async function (next, connection) {
if (connection.remote.is_private) {
connection.results.add(this, {skip: 'private_ip'})
return next()
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function handle_ptr_error
has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring. Open
exports.handle_ptr_error = function (connection, err, next) {
const rip = connection.remote.ip
switch (err.code) {
case dns.NOTFOUND:
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Function ptr_compare
has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring. Open
exports.ptr_compare = function (ip_list, connection, domain) {
if (!ip_list || !ip_list.length) return false
if (ip_list.includes(connection.remote.ip)) {
connection.results.add(this, {pass: 'fcrdns' })
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"