netsec-analyzer
Version:
Network Security CLI: Scan ports, check TLS settings, and harden Linux systems
9 lines (7 loc) • 359 B
JavaScript
module.exports = function tips() {
console.log('\n Hardening Suggestions:');
console.log('- Disable deprecated TLS versions (e.g., TLS 1.0/1.1)');
console.log('- Enable firewall logging and restrict unused ports');
console.log('- Use strong ciphers (e.g., AES-256-GCM)');
console.log('- Regularly patch OS and use multi-factor authentication');
};