Tag

Scapy

1 views collected around this technical thread.

Ops Development Stories
Ops Development Stories
Aug 18, 2021 · Information Security

How to Extract IPs from PCAP and Perform Common Network Attacks with Scapy

This guide demonstrates how to use Python's Scapy library to extract IP addresses from PCAP files, sniff usernames and passwords from mail traffic, discover live hosts via SYN packets, launch MAC address table flooding attacks, and conduct ARP spoofing for man‑in‑the‑middle attacks, providing complete code examples.

ARP spoofingMAC FloodMITM
0 likes · 7 min read
How to Extract IPs from PCAP and Perform Common Network Attacks with Scapy
Ops Development Stories
Ops Development Stories
Aug 18, 2021 · Information Security

Master Host Discovery & Port Scanning with Scapy: TCP SYN Ping to Traceroute

This tutorial explains how to perform host discovery and various port‑scanning techniques—including TCP SYN, ACK, UDP, ARP, and ICMP pings—as well as service discovery scans (SYN, FIN, NULL, Xmas, UDP) and traceroute methods using Scapy, complete with code examples and interpretation of results.

Scapyhost discoverynetwork security
0 likes · 22 min read
Master Host Discovery & Port Scanning with Scapy: TCP SYN Ping to Traceroute
Ops Development Stories
Ops Development Stories
May 26, 2021 · Information Security

Scapy Host Discovery & Port Scanning: TCP SYN Ping, Traceroute & More

This guide explains how to use Scapy for host discovery (TCP SYN/ACK, UDP, ARP, ICMP pings), various port‑scanning techniques (SYN, FIN, NULL, Xmas, UDP) and traceroute methods (ICMP, TCP, DNS), providing complete code examples and practical insights.

PythonScapyhost discovery
0 likes · 23 min read
Scapy Host Discovery & Port Scanning: TCP SYN Ping, Traceroute & More
Ops Development Stories
Ops Development Stories
May 18, 2021 · Information Security

Master Scapy: Build, Send, and Analyze Packets with Python

This guide introduces Scapy, a powerful interactive Python packet manipulation tool, covering installation, basic usage, packet creation, sending and receiving functions, layer inspection, packet export formats, sniffing, and advanced features such as sprintf and custom packet handlers, enabling network testing, analysis, and security tasks.

PythonScapynetwork security
0 likes · 18 min read
Master Scapy: Build, Send, and Analyze Packets with Python