Cybersecurity Essentials: Concepts & Best Practices
Vulnerability & Patch Management
(Domain 4 Concepts)
Common Vulnerability Scoring System (CVSS)
- Rates vulnerabilities on a scale of 0-10 for severity.
Exploit vs. Zero-Day
- Exploit: A known attack method against a vulnerability.
- Zero-Day: A vulnerability that has no patch available yet.
Remediation vs. Mitigation
- Remediation: Completely fixing a vulnerability.
- Mitigation: Applying temporary protections while awaiting a full fix.
Common Scanning Tools
- Nessus / OpenVAS: Identify known vulnerabilities.
- Nikto:
Quantitative Methods & Machine Learning Essentials
Likelihood Function
The likelihood function describes how observed data depends on the model parameters, θ. It is often denoted as p(x|θ).
Maximum Likelihood Estimation (MLE)
The Maximum Likelihood Estimator (MLE), δ(x), is defined as:
or equivalently:
The Gaussian log-likelihood is shown above.
Asymptotic Distribution of MLE
When n is large, the asymptotic distribution of the MLE is given by:
where:
Examples include:
- Gaussian:
- Exponential:
Bayesian Estimation
The Bayesian forecast is given by:
Assume the
Read MoreProbabilistic Reasoning & AI Decision Making
Probabilistic Inference
What Is Probability?
A measure
P
assigning each eventA
a number in[0,1]
.Axioms of Probability
P(∅) = 0
,P(Ω) = 1
For disjoint
A, B
,P(A∪B) = P(A) + P(B)
Conditional Probability:
P(A|B) = P(A∧B) / P(B)
Bayesian Inference Fundamentals
Bayes’ Rule
P(H|E) = [P(E|H) * P(H)] / P(E)
Key Terms in Bayes’ Rule
Prior
P(H)
: initial beliefLikelihood
P(E|H)
Posterior
P(H|E)
: updated belief
Bayesian Networks (BNs)
Structure: Directed acyclic graph; nodes = variables; edges = dependencies.
Essential Machine Learning Concepts Explained
Regularization Techniques in Machine Learning
Regularization is a set of techniques used to reduce overfitting by encouraging simpler models. It works by adding a penalty term to the loss function that discourages overly large or complex weights. The two most common forms are L2 (Ridge) and L1 (Lasso) regularization.
L2 Regularization (Ridge / Weight Decay)
L2 Regularization adds the squared L2 norm of the weights to the loss: L(w) = original loss + λ‖w‖². This shrinks weights proportionally
Read MoreMachine Learning Fundamentals: Concepts, Types, Applications
What is Machine Learning? How ML Works
Machine Learning (ML) is a subset of Artificial Intelligence (AI) where systems learn from data to make predictions or decisions without being explicitly programmed. It works by following these steps:
- Data Input: Feeding data (e.g., numbers, images) into an algorithm.
- Training: The algorithm identifies patterns and builds a model.
- Validation/Testing: The model is tested on new data to ensure accuracy.
- Deployment: The model makes predictions on real-world data, improving
Machine Learning Fundamentals: Data Analysis & Clustering Techniques
Core Machine Learning Concepts
Linear Regression
Linear Regression: Finds the best line that summarizes the relationship between two variables. Imagine a scatter plot of data points and a line representing their trend.
Dimensionality Reduction
Dimensionality Reduction: Addresses datasets with a large number of variables, which can lead to a complex dispersion matrix. It reduces the number of variables to a more manageable few.
Why Dimensionality Reduction?
- Simpler Analysis: Fewer features make it easier