Cyberpsychologist | Cybersecurity Awareness Specialist & Trainer

Listen to this Post

You Should Know:

Cybersecurity awareness is critical in today’s digital world. Below are key commands, tools, and steps to enhance your cybersecurity practices:

1. Basic Linux Security Commands:


<h1>Check open ports</h1>

sudo netstat -tulnp

<h1>Monitor active connections</h1>

sudo ss -tunap

<h1>Check for rootkits</h1>

sudo rkhunter --check

<h1>Update all packages</h1>

sudo apt update && sudo apt upgrade -y 

#### **2. Windows Security Checks:**


<h1>List all active network connections</h1>

netstat -ano

<h1>Check firewall status</h1>

netsh advfirewall show allprofiles

<h1>Scan for malware using Windows Defender</h1>

Start-MpScan -ScanType FullScan 

#### **3. Digital Hygiene Practices:**