Day 1 โ Print โHello, Hacker!โ and basic Python syntax.
Scenario : Automate a simple message to greet yourself as a cybersecurity analyst.
Task : Write code that prints your name and todayโs date.
Day 2 โ Variables & Data Types.
Scenario : Store an IP address and port in variables.
Task : Print "Scanning host 192.168.1.10 on port 22"
Day 3 โ User Input.
Scenario : Ask a user for a target IP.
Task : Take input and print: "Pinging target <IP>".
Day 4 โ Conditional Statements.
Scenario : Check if port number = 22, print โSSH detected.โ
Task : Accept a port number and classify it as โHTTP, HTTPS, SSH, Otherโ.
Day 5 โ Loops.
Scenario : Brute-force simulation.
Task : Loop through numbers 1โ10 as if trying passwords.
Day 6 โ Functions.
Scenario : Create a function is_open(port) that checks if a given port number is common (22, 80, 443).