CourseProviderYear
Cybersecurity AnalystPerScholas2025
SOC Core SkillsAntisyphon2025
Security Operations (SOC) 101TCM2025

heading 1

stuff

heading 2

and more stuff

heading 3

heading 4

heading 5

normal text testing lorum ipsem

lists

  • here
  • were
  • testing
    • lists
    • and sub lists
  1. here
  2. is a
  3. numbered list
  • with sub lists

[ ] to do list

[x] complete

bold text

italicized text

testing ==highlighting== text


# Conditional Statements - if/else
def drink(money):
    if money >= 2:
        return "You've got yourself a drink!"
    else:
        return "No drink for you!"

print(drink(3))
print(drink(1))

nl()

def alchohol(age,money):
    if (age >= 21) and (money >= 5):
        return "We're getting a drink!"
    elif (age >= 21) and (money < 5):
        return "Come back with more money."
    elif (age < 21) and (money >=5):
        return "Nice try, kid"
    else:
        return "You're too young and too poor."

print(alchohol(21,5))
print(alchohol(21,4))
print(alchohol(20,5))
print(alchohol(20,4))

here is a big table

PortProtocolService / Application Notes
20TCPFTP (Data) File Transfer Protocol (active mode)
21TCPFTP (Control) Commands & authentication
22TCPSSH Secure Shell (remote login, SCP, SFTP)
23TCPTelnet Unencrypted remote login (legacy, insecure)
25TCPSMTP Mail transfer (sending email)
53TCP/UDPDNS Domain Name System (UDP for queries, TCP for zone transfers)
67, 68UDPDHCP Dynamic Host Configuration Protocol (server ↔ client)
69UDPTFTP Trivial File Transfer Protocol (insecure)
80TCPHTTP Web traffic (unencrypted)
110TCPPOP3 Retrieve email (legacy)
119TCPNNTP Network News Transfer Protocol
123UDPNTP Network Time Protocol
135TCPRPC (Microsoft) Remote Procedure Call
137–139TCP/UDPNetBIOS Legacy Windows file/printer sharing
143TCPIMAP Retrieve email (more modern than POP3)
161/162UDPSNMP Network management/monitoring
389TCP/UDPLDAP Directory services (unencrypted)
443TCPHTTPS Secure web traffic (SSL/TLS)
445TCPSMB Windows file/printer sharing
465TCPSMTPS Secure SMTP (legacy, often replaced by STARTTLS)
514UDPSyslog Logging protocol
515TCPLPR / LPD
631TCPInternet Printing Protocol (IPP)
636TCPLDAPS Secure LDAP
989/990TCPFTPS FTP Secure (over SSL/TLS)
993TCPIMAPS Secure IMAP
995TCPPOP3S Secure POP3
1433TCPMS SQL Server Microsoft SQL database service
1521TCPOracle Database Default Oracle DB service
1723TCPPPTP VPN tunneling (legacy )
3306TCPMySQL MySQL database
3389TCPRDP Remote Desktop Protocol
5060/5061TCP/UDPSIP Voice over IP signaling
1812/1813UDPRADIUS Authentication/Accounting
2049TCP/UDPNFS Network File System
3128TCPSquid Proxy Common web proxy port
8080TCPHTTP (Alt) Often used as a proxy or test web port