# packet analysis — RSS Amplifier

Recent posts from the 1 feeds in the RSS Amplifier directory that cover packet analysis.

Page: <https://rssamplifier.com/topics/packet-analysis>  
Feed: <https://rssamplifier.com/topics/packet-analysis.md>

---

## [Beginning Message Context Protocol (MCP): Attacking and Defending MCP](https://www.securitynik.com/2026/04/beginning-message-context-protocol-mcp_79.html)

_2026-04-08 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

As mentioned earlier, the goal of MCP is to streamline AI integration by using one protocol to reach any tool \*\*Protocol level abuse\*\* - MCP Naming confusion (name spoofing) Threat actor registers a MCP server with a name almost identical to the legitimate one. When the AI assistant performs a name-based resolution, rather than resolving the legit name, it resolves the malicious name, possibly…

## [Beginning Message Context Protocol (MCP): MCP Security](https://www.securitynik.com/2026/04/beginning-message-context-protocol-mcp_8.html)

_2026-04-08 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

MCP was designed for convenience not security. Since its introduction in November 2024, researchers have put a lot of effort into understanding this protocol and its vulnerabilities. These vulnerabilities come in different flavours. Some of these are: OAuth vulnerabilities, the ability to execute arbitrary commands via command injection, unrestricted network access, file system exposure, tool…

## [Beginning Message Context Protocol (MCP): But what is MCP?](https://www.securitynik.com/2026/04/beginning-message-context-protocol-mcp.html)

_2026-04-08 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

Model Context Protocol (MCP) is an open-source standard used to connect AI applications to external systems. It is a stateful protocol. source: What is the Model Context Protocol (MCP)? - Model Context Protocol One can use MCP to connect language models to data sources - files, databases, etc. Alternatively, if you wish to connect to external tools such as a calculator, search engines, etc., or…

## [Welcome to the world of AI - Putting it all together. Building and training fully functional Decoder-Only transformer](https://www.securitynik.com/2026/03/welcome-to-world-of-ai-putting-it-all.html)

_2026-03-07 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

In the first post, we learned about temperature, top\_k and top\_p. We then built a Decoder-Only Transformer using pure NumPy in the second post. The third post we took advantage of PyTorch. In this final post, we put the raw code needed to run a full decoder only transformer, to generate baby names. Hope you enjoyed this series. As always, if you think there is something I should have done…

## [Welcome to the world of AI - Learning about the Decoder-Only transformer - From scratch with PyTorch](https://www.securitynik.com/2026/03/welcome-to-world-of-ai-learning-about_7.html)

_2026-03-07 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

In this third in this series post, we build on what we did in the previous post to now build GPT from scratch. We will leverage Andrej Karpathy Makemore series . Where as Andrej used Tiny Shakespeare, we will use the baby names dataset that he used in one of his earlier trainings Import the libraries import torch import torch.nn as nn import torch.nn.functional as F import matplotlib.pyplot as plt…

## [Welcome to the world of AI - Learning about the Decoder-Only Transformer - From scratch with NumPy](https://www.securitynik.com/2026/03/welcome-to-world-of-ai-learning-about.html)

_2026-03-07 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

In this post, we build a \*\* Decoder-Only Transformer \*\* from scratch, using \*\* only numpy \*\*. I wanted to put this together to see if I can find an easier way to build this very popular architecture, while at the same time, seeing if it helps someone else. As you go through, if you find I missed anything or have some suggestions for improvement, please do not hesitate to drop me a line. As we go…

## [Welcome to the world of AI - Understanding temperature, top\_p and top\_k](https://www.securitynik.com/2026/03/welcome-to-world-of-ai-understanding.html)

_2026-03-07 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

This post is part of a 4 part series on learning and building a decoder-only transformer from scratch. This is the first post that focuses on learning about \*\*temperature\*\*, \*\*top\_p\*\* and \*\*top\_k\*\* as they are used in language models. Without further ado, let's move ahead. # import the libraries. import numpy as np import matplotlib.pyplot as plt from scipy.special import softmax # Let get our…

## [CTF: Silence of the RAM - Tushar&#39;s Write-up](https://www.securitynik.com/2026/01/ctf-silence-of-ram-tushars-write-up.html)

_2026-01-28 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

BIG shout out and thanks to Tushar Arora for putting this together for our SOC team. It is always exciting to see the junior analyst expand their minds, while supporting other's growth. I am very thankful for his willingness to put together this scenario and submit the formal write-up/solution as a blog post. Keep up the good work Tushar. You have my vote for being promoted to the next level😆…

## [It is finally here! A Little Book On Adversarial AI - Get a FREE PDF Copy](https://www.securitynik.com/2025/06/coming-soon-free-little-book-on.html)

_2025-06-15 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

Download a copy here: Download File: Little Note\[Book\] on Adversarial AI - Nik Alleyne.pdf SHA256Sum: f7282afbdf15bbf2ed8fea70e1b0a27630a9c359a3a17f1b4cf274f599cd6ec6 Over the past few months, I have been working on expanding my knowledge on Adversarial AI. Rather than putting together a bunch of blog posts, I decided to consolidate everything into one book. Along with this book, there are 63…

## [Understanding Packet Crafting - The Windows IPv6 Vulnerability - CVE-2024-38063: Remote Kernel Exploitation via IPv6](https://www.securitynik.com/2024/09/understanding-packet-crafting-windows.html)

_2024-09-21 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

First up, this post is significantly influenced by Miloš ynwarcs script for the above vulnerability. My objective here is to simplify the understanding of what the script is doing. If you intend to follow along, see: https://github.com/ynwarcs/CVE-2024-38063/tree/main for the original script. In the SANS SEC503, we use Scapy a lot for instructing on packet crafting as well as doing lots of demos…

## [AI publishing with human taste (Sponsored)](https://crawlproof.com/a/w3U6nWUMbYq3)

_2024-09-21 · **Sponsored**_

Convert AI research into blogs, podcasts, and newsletters with optional human review.

## [3 simple tips, for retaining your critical resources in the 21st century](https://www.securitynik.com/2024/08/3-simple-tips-for-retaining-your.html)

_2024-08-29 · Nik Alleyne, MSc | CISSP | GC|IA|IH|REM|PEN · Learning by practicing_

Back in 2016, I wrote an article on my blog at www.securitynik.com titled " On recruiting and retaining talented Cyber Security professionals ". ( https://www.securitynik.com/search?q=center+for+strategic ). In that article, I referenced a Center For Strategic and International Studies report: ( https://www.csis.org/analysis/recruiting-and-retaining-cybersecurity-ninjas ) and agreed with the…

