Reference

Tech Glossary β€” Page 5

Showing 40 of 285 terms.

M

Multisig Wallet

πŸ›‘οΈ Security

A cryptocurrency wallet that requires multiple private key signatures to authorize transactions, providing enhanced security by eliminating single points of failure.

Must-Use Plugin (mu-plugin)

πŸ›‘οΈ Security

A WordPress plugin placed in the wp-content/mu-plugins directory, which loads automatically before normal plugins, cannot be deactivated from the admin interface, shows only under a separate Must-Use tab, and receives no update notifications. Malware uses the directory for quiet persistence.

N

N-Day Vulnerability

πŸ›‘οΈ Security

A publicly disclosed vulnerability with a patch available, exploited in the window before defenders apply the fix β€” the vendor has known about it for N days, in contrast to a zero-day. Most real-world compromise comes from n-days, because patches and advisories double as attacker roadmaps.

NTLM Relay

πŸ›‘οΈ Security

An attack where a valid NTLM authentication is forwarded in real time to a different service than the one intended, granting the attacker the victim's access without ever cracking a credential.

Network Access Control (NAC)

🌐 Networking

A security function that decides whether a user or device may join a network and what access it receives, enforced by switches, wireless controllers, and VPNs that consult a central policy server such as Cisco ISE. Because every network device trusts its verdicts, the NAC server is one of the most privileged systems in an estate.

Network Time Protocol (NTP)

🌐 Networking

The standard protocol for synchronising clocks across networked systems, operating over UDP port 123. Because NTP traffic is ubiquitous and often allowed outbound, attackers mimic it to hide command-and-control beacons, as the StyleSmuggler implant did by sending server-mode NTP-shaped packets.

No-Logs Policy

πŸ” VPN

A VPN provider's commitment to not record or store user activity, connection times, or IP addresses.

O

OAuth

πŸ›‘οΈ Security

An open standard authorization protocol that allows applications to access user resources without exposing passwords, using tokens instead of credentials.

OAuth Scope

πŸ›‘οΈ Security

A mechanism in OAuth that limits an application's access to a user's account, defining specific permissions like read email, send messages, or access files.

OTA Update

🏠 Smart Home

Over-The-Air updateβ€”firmware or software updates delivered wirelessly without physical connection.

Open Registration

πŸ›‘οΈ Security

A configuration in which any visitor can create an account on a self-hosted service without admin approval. It converts authenticated-only vulnerabilities into effectively unauthenticated ones, because the attacker can create the account the exploit requires.

Open Source

πŸ“– General

Software with publicly available source code that anyone can inspect, modify, and distribute.

OpenVPN

πŸ” VPN

An open-source VPN protocol widely considered secure and reliable, though slower than WireGuard.

Out-of-Band Update

πŸ›‘οΈ Security

An emergency security patch released outside the normal update schedule to address critical vulnerabilities that can't wait for the next Patch Tuesday.

P

Parameterized Query

πŸ›‘οΈ Security

A database query in which the SQL statement is sent separately from the values it operates on, so user input can never be interpreted as SQL syntax. It is the standard defense against SQL injection, in contrast to building queries by string concatenation.

Pass-the-Hash

πŸ›‘οΈ Security

An attack technique where an attacker uses a captured password hash to authenticate without needing to crack or know the actual password.

Patch

πŸ›‘οΈ Security

A software update that fixes security vulnerabilities, bugs, or adds improvements to an existing program.

Patch Tuesday

πŸ›‘οΈ Security

The second Tuesday of each month, when Microsoft releases its scheduled batch of security updates. The predictable cadence lets defenders plan deployment, but AI-assisted vulnerability discovery has pushed recent releases past 900 CVEs, straining triage.

Path Traversal

πŸ›‘οΈ Security

A web vulnerability (CWE-22) where user-supplied input in a file path escapes the directory the application intended to serve from, typically via parent-directory references, letting an attacker read or write files elsewhere on the server.

Phishing

πŸ›‘οΈ Security

A social engineering attack using fake emails or websites to steal login credentials or personal info.

Port Forwarding

🌐 Networking

Directing incoming traffic on specific ports to a particular device on your network.

Pretexting

πŸ›‘οΈ Security

A social engineering technique where attackers create a fabricated scenario (pretext) to manipulate victims into providing information or taking actions they normally would not.

Privilege Escalation

πŸ›‘οΈ Security

An attack technique where an adversary gains elevated access rights beyond what was initially granted.

Process Lineage

πŸ›‘οΈ Security

The parent-child chain of processes on a host, showing which process launched which. Hunting on lineage catches exploitation because compromised services spawn children they never would in normal operation.

Process Masquerading

πŸ›‘οΈ Security

A defensive-evasion technique in which malware names its running process to imitate a legitimate system process, such as a kernel worker thread or a font or time-sync daemon, so it blends into normal process listings. The StyleSmuggler implant used kworker, fc-cache and chronyd disguises.

Prompt Injection

πŸ›‘οΈ Security

An attack that embeds instructions in content a language model will process, so the model takes actions the operator did not intend. In blind prompt injection the attacker cannot see the output and instead confirms execution through a side channel such as a DNS callback to a domain they control.

Proprietary

πŸ“– General

Software owned by a company with restricted access to source code.

Q

QoS (Quality of Service)

🌐 Networking

Network feature that prioritizes certain traffic types (like video calls) over others.

R

RADIUS

🌐 Networking

Remote Authentication Dial-In User Service, the protocol network devices use to ask a central server whether a user or device should be granted access and with what attributes. Each device shares a secret with the server, so a compromised server exposes the secrets of every device that trusts it.

Race Condition

πŸ›‘οΈ Security

A flaw where the outcome of code depends on the timing of concurrent operations that share state without proper synchronization. Attackers exploit kernel race conditions by winning the timing window to corrupt data structures or bypass checks.

Re-imaging

πŸ›‘οΈ Security

Wiping a device and reinstalling its operating system and firmware from clean vendor media rather than patching in place. Re-imaging is the standard recovery step for a compromised appliance because a patch closes the vulnerability but does not remove anything an attacker installed after exploiting it.