Category: Networking

20 Nov 2025 Macbooks 👁 14 views

Browser curl Wrapper: Bypass Bot Filters, Load Test, and Defeat TLS Fingerprinting

WordPress Plugin Crashed Your Site: Restore From Backup Instead You updated a plugin five minutes ago. Maybe it was a security patch. Maybe you were trying a new caching layer. You clicked “Update Now,” saw the progress bar fill, got the green tick, and moved on with your day. Now the site is down. Not […]

Read more →
12 Nov 2025 Networking 👁 68 views

Monitor LDAP Queries on Domain Controller: PowerShell Guide

The script below monitors LDAP operations on a Domain Controller and logs detailed information about queries that exceed specified thresholds for execution time, CPU usage, or results returned. It helps identify problematic LDAP queries that may be impacting domain controller performance. Parameter: ThresholdSeconds Minimum query duration in seconds to log (default: 5) Parameter: LogPath Path […]

Read more →
06 Nov 2025 AWS Cloud 👁 118 views

AWS NLB Sticky Sessions: Setup, Behavior & Pitfalls

When you deploy applications behind a Network Load Balancer (NLB) in AWS, you usually expect perfect traffic distribution, fast, fair, and stateless.But what if your backend holds stateful sessions, like in-memory login sessions, caching, or WebSocket connections and you need a given client to keep hitting the same target every time? That’s where NLB sticky […]

Read more →
02 Oct 2025 Artificial Intelligence 👁 72 views

Mac Wireshark MCP Setup for Claude Desktop: Full Guide

If you’re like me, the idea of doing anything twice will make you break out in a cold shiver. For my Claude desktop, I often need network pcap (packet capture) to unpack something that I am doing. So the script below installs wireshark, and then the wireshark mcp and then configures Claude to use it. […]

Read more →
16 Sep 2025 Cyber 👁 24 views

SYN Flood Testing With hping3: Parallel Processes Guide

A SYN flood test using hping3 that allows you to specify the number of SYN packets to send and scales horizontally with a specific number of processes can be created using a Bash script with the xargs command. This approach allows you to distribute the workload across multiple processes for better performance. The Script This […]

Read more →
20 Aug 2025 Macbooks 👁 12 views

macOS: Find Processes Using a Specific Remote Port

I find this script useful for debugging which processes are talking to which remote port. Example Usuage:

Read more →
19 Aug 2025 Cyber 👁 11 views

NMAP Vulnerability Scan Script With Formatted Report on macOS

If you want to quickly health check your website, then the following script is a simple NMAP script that scans your site for common issues and formats the results in a nice report style. Here’s a comprehensive guide on how to fix each type of directory permission issue that the above script might find (for […]

Read more →
14 Aug 2025 Macbooks 👁 49 views

macOS: Find Which Process Is Using a Specific Port

Below is a useful script when you want to see which processes are using a specific port.

Read more →
13 Aug 2025 Networking 👁 61 views

Monitor Critical DNS Records for Changes Using Batch Script

If you have tier 1 services that are dependant on a few DNS records, then you may want a simple batch job to monitor these dns records for changes or deletion. The script below contains an example list of DNS entries (replace these records for the ones you want to monitor).

Read more →
16 Mar 2024 Macbooks 👁 30 views

Mac Routing Table: Redirect Website Traffic to en0

This was a hard article to figure out the title for! Put simply, your mac book has a route table and if you want to move a specific IP address or dns from one interface to another, then follow the steps below: First find the IP address of the website that you want to re-route […]

Read more →
1235