11: Enhance Application Security Capabilities

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/30

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 12:07 AM on 9/16/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

31 Terms

1
New cards

What is DNS filtering?

Blocking or redirecting DNS lookups for known-malicious or policy-violating domains, stopping the connection before it's ever made.

2
New cards

What is a DNS sinkhole?

A DNS server that returns a false or internal address for malicious domains, redirecting infected hosts away from command & control (C2) servers and revealing which machines are compromised.

3
New cards

What is DNSSEC?

Adds digital signatures to DNS records so resolvers can verify the response is authentic and unmodified. Defends against DNS spoofing and cache poisoning. It authenticates but does not encrypt.

4
New cards

What are DoH and DoT?

DNS over HTTPS and DNS over TLS — encrypt DNS queries so they can't be read or tampered with in transit. They protect privacy but can bypass corporate DNS filtering.

5
New cards

What is SPF?

Sender Policy Framework — a DNS record listing which mail servers are authorized to send mail for a domain. Receivers reject mail from unlisted servers.

6
New cards

What is DKIM?

DomainKeys Identified Mail — the sending server digitally signs outbound messages, and the receiver verifies the signature against a public key in DNS. Proves the message wasn't altered and came from the domain.

7
New cards

What is DMARC?

Builds on SPF and DKIM by telling receivers what to do when a message fails — none, quarantine, or reject — and where to send reports. Ties the checks to the visible From address.

8
New cards

What is a secure email gateway?

An appliance or service that filters inbound and outbound mail for spam, phishing, malware, and policy violations before delivery.

9
New cards

What is email sandboxing / attachment detonation?

A gateway opens suspicious attachments or links in an isolated environment to observe their behavior before releasing the message.

10
New cards

What is S/MIME?

Secure/Multipurpose Internet Mail Extensions — uses certificates and PKI to digitally sign and encrypt email, providing confidentiality, integrity, and non-repudiation.

11
New cards

What is PGP/GPG?

Pretty Good Privacy and its open implementation — encrypt and sign email using a web-of-trust model rather than a centralized PKI.

12
New cards

What is email banner tagging?

Automatically prepending a warning to messages from outside the organization, prompting users to treat unexpected requests with suspicion.

13
New cards

Why must insecure legacy protocols be replaced?

Telnet, FTP, HTTP, SNMPv1/v2, and LDAP send data and credentials in cleartext, exposing them to sniffing and on-path attacks.

14
New cards

What is the secure alternative to Telnet and FTP?

SSH replaces Telnet for remote administration. SFTP (over SSH) or FTPS (over TLS) replaces FTP for file transfer.

15
New cards

What is HTTPS, and what protocol secures it?

HTTP wrapped in TLS, encrypting web traffic and authenticating the server via its certificate. Runs on port 443.

16
New cards

What is SNMPv3, and how does it improve on earlier versions?

The network management protocol with added authentication, encryption, and message integrity. Earlier versions passed community strings in cleartext.

17
New cards

What is LDAPS?

LDAP over TLS — encrypts directory service queries and authentication traffic that plain LDAP sends in cleartext. Uses port 636.

18
New cards

What is IPSec, and what are AH and ESP?

A suite that secures traffic at the network layer, commonly for VPNs.

AH (Authentication Header) provides integrity and authentication only

ESP (Encapsulating Security Payload) also provides encryption

19
New cards

What is the difference between IPSec transport and tunnel mode?

Transport mode encrypts only the payload, leaving the original IP header — used host-to-host. Tunnel mode encrypts the entire packet inside a new one — used for site-to-site VPNs.

20
New cards

What is SRTP?

Secure Real-time Transport Protocol — encrypts and authenticates voice and video streams in VoIP, preventing eavesdropping on calls.

21
New cards

What does port selection mean in implementing secure protocols?

Choosing the correct port for the secure version of a service and blocking the insecure counterpart, so traffic can't silently fall back — for example allowing 443 and 22 while blocking 80 and 23.

22
New cards

What is data loss prevention (DLP)?

Detects and blocks sensitive data from leaving the organization, inspecting content against policy and stopping unauthorized transmission or copying.

23
New cards

What are the three DLP deployment types?

Endpoint DLP — agent on the device, controls USB, clipboard, printing.

Network DLP — inspects traffic in transit at the perimeter.

Cloud/storage DLP — scans data at rest in cloud services and file shares.

24
New cards

How does DLP identify sensitive data?

Pattern matching against regex (SSNs, card numbers), keyword and dictionary matching, exact file fingerprinting, and metadata or classification labels.

25
New cards

What actions can a DLP system take on a violation?

Alert only, block the transfer, quarantine the file, encrypt it automatically, or notify the user with a policy prompt.

26
New cards

Why is data classification a prerequisite for DLP (Data Loss Prevention)?

DLP can only protect data it knows is sensitive. Classifying and labeling data first tells the system which content to enforce policy on.

27
New cards

What is input validation?

Checking all user-supplied data against expected type, length, format, and range before processing. The primary defense against injection attacks and buffer overflows.

28
New cards

What are secure cookies?

Cookies flagged Secure (sent only over HTTPS), HttpOnly (unreadable by JavaScript, blunting XSS), and SameSite (restricting cross-site sending, blunting CSRF).

29
New cards

What is code signing?

Digitally signing software with the developer's private key so users can verify its origin and confirm it hasn't been altered since publication.

30
New cards

What is sandboxing in application security?

Running code in an isolated environment with restricted access to the host's files, memory, and network — used to test untrusted software and contain applications like browser tabs.

31
New cards

How are web servers and databases hardened?

Web servers — disable directory listing and unused modules, remove default sites, enforce TLS, run as a non-privileged account. Databases — encrypt at rest, remove default accounts and sample databases, restrict network access, apply least-privilege grants.