0
0
Cybersecurityknowledge~10 mins

Common network protocols and vulnerabilities in Cybersecurity - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to identify the protocol used for secure web browsing.

Cybersecurity
The protocol used for secure web browsing is [1].
Drag options to blanks, or click blank then click option'
AFTP
BDNS
CSMTP
DHTTPS
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing HTTP with HTTPS
Choosing FTP which is for file transfer
2fill in blank
medium

Complete the code to name the protocol primarily used to send emails.

Cybersecurity
The protocol mainly used to send emails is [1].
Drag options to blanks, or click blank then click option'
ASMTP
BPOP3
CIMAP
DHTTP
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing POP3 or IMAP which are for receiving emails
Selecting HTTP which is for web traffic
3fill in blank
hard

Fix the error in the statement about a common network vulnerability.

Cybersecurity
A common vulnerability that allows attackers to intercept and alter communication is called [1] attack.
Drag options to blanks, or click blank then click option'
AMan-in-the-Middle
BSQL Injection
CDDoS
DPhishing
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing with phishing which is a social engineering attack
Choosing DDoS which is about overwhelming servers
4fill in blank
hard

Fill both blanks to complete the description of a protocol and its vulnerability.

Cybersecurity
The [1] protocol is vulnerable to [2] attacks because it transmits data in plain text.
Drag options to blanks, or click blank then click option'
AFTP
BDNS Spoofing
CTelnet
DCross-Site Scripting
Attempts:
3 left
💡 Hint
Common Mistakes
Choosing FTP which is also unencrypted but less related to DNS Spoofing
Selecting Cross-Site Scripting which is a web vulnerability
5fill in blank
hard

Fill all three blanks to complete the dictionary comprehension describing protocols and their ports.

Cybersecurity
protocol_ports = { [1]: [2][[1]] for [1] in [3] }
Drag options to blanks, or click blank then click option'
Ap
B{'HTTP': 80, 'HTTPS': 443, 'FTP': 21}
C['HTTP', 'HTTPS', 'FTP']
Dport
Attempts:
3 left
💡 Hint
Common Mistakes
Using 'port' instead of 'p' as loop variable
Incorrect dictionary format for ports