Behavior Analysis
Detect unusual usage patterns and network behavior that may indicate abuse, misuse, or compromise.
- Suspicious attacker technique patterns
- Unusual or noteworthy network activity
- Traffic composition and protocols
Upload a packet capture and receive a focused, interactive report of suspicious behavior, exposed services, threat intelligence matches, and unusual network activity.
Choose a PCAP or PCAPNG file to begin.
or drop a file anywhere in this area
Files are processed securely. Need more capacity? Create a free account.
Red Hand organizes packet data around the questions that matter: what happened, who was involved, and where to look next.
Detect unusual usage patterns and network behavior that may indicate abuse, misuse, or compromise.
Check destinations and payload indicators against continuously updated malicious infrastructure data.
Investigate network activity while keeping control of your data and minimizing exposure of sensitive information.
Choose your operating system and follow the essential steps. The tools you need are already included with Windows and macOS, and commonly available on Linux.
Open Command Prompt or PowerShell as Administrator. Replace <id>
with the interface ID you identify in step one.
Run ipconfig /all and note the MAC address of the adapter with a
Default Gateway. Match it to an ID from pktmon list.
pktmon start -c --comp <id> --pkt-size 0 -s 100 -f cap1.etl
When you have enough traffic, run these commands:
pktmon stop
pktmon etl2pcap cap1.etl --out cap1.pcapng
cap1.pcapngThe file is created in your
current terminal directory.Open a terminal. Replace <interface-name> with the device name
found in step one.
The interface following dev in the default route is usually the one
you need.
ip route | grep default
sudo tcpdump -vni <interface-name> -s 0 -w capture.pcap -c 100000
The capture stops at 100,000 packets. Press Ctrl+C to stop it sooner.
capture.pcapThe file is created in your
current terminal directory.Open Terminal from Applications > Utilities. Replace
<interface-name> with the device name found in step one.
The final value on the normal default route is usually the device you need, such
as en0.
netstat -nr | grep default
sudo tcpdump -vni <interface-name> -s 0 -w capture.pcap -c 100000
Enter your password when prompted. Press Ctrl+C if you want to stop before 100,000 packets.
capture.pcapThe file is created in your
current terminal directory.Upload a PCAP or PCAPNG file and get an interactive network behavior report.