Author: Andrew Baker

20 Nov 2025 Internet 👁 35 views

Browser Curl with Playwright: Load Testing Guide

Modern sites often block plain curl. Using a real browser engine (Chromium via Playwright) gives you true browser behavior: real TLS/HTTP2 stack, cookies, redirects, and JavaScript execution if needed. This post mirrors the functionality of the original browser_curl.sh wrapper but implemented with Playwright. It also includes an optional Selenium mini-variant at the end. What this […]

Read more →
20 Nov 2025 Macbooks 👁 15 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 →
19 Nov 2025 AWS Cloud 👁 137 views

Amazon Aurora DSQL: Performance, Limits & Architecture

1. Executive Summary Amazon Aurora DSQL represents AWS’s ambitious entry into the distributed SQL database market, announced at re:Invent 2024. It’s a serverless, distributed SQL database featuring active active high availability and PostgreSQL compatibility. While the service offers impressive architectural innovations including 99.99% single region and 99.999% multi region availability, but it comes with significant […]

Read more →
17 Nov 2025 Macbooks 👁 8 views

iPhone to MacBook Photo Transfer Script: Complete Guide

Annoying Apple never quite got around to making it easy to offload images from your iPhone to your Macbook. So below is a complete guide to automatically download photos and videos from your iPhone to your MacBook, with options to filter by pattern and date, and organize into folders by creation date. Prerequisites Install the […]

Read more →
17 Nov 2025 AWS Cloud 👁 111 views

PostgreSQL Vacuum Optimization for Large Tables: Deep Dive

When managing large PostgreSQL tables with frequent updates, vacuum operations become critical for maintaining database health and performance. In this comprehensive guide, we’ll explore vacuum optimization techniques, dive deep into the pg_repack extension, and provide hands-on examples you can run in your own environment. 1. Understanding the Problem PostgreSQL uses Multi-Version Concurrency Control (MVCC) to […]

Read more →
12 Nov 2025 Networking 👁 70 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 👁 123 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 →
20 Oct 2025 Cyber 👁 14 views

macOS Passive Domain Vulnerability Scanner: Full Guide

Below is a fairly comprehensive passive penetration testing script with vulnerability scanning, API testing, and detailed reporting. Features Installation Required Dependencies Optional Dependencies Usage Basic Syntax Options Examples: Network Configuration Default Interface: en0 (bypasses Zscaler) To change the interface, edit line 24: The script automatically falls back to default routing if the interface is unavailable. Debug Mode […]

Read more →
02 Oct 2025 Artificial Intelligence 👁 73 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 →
28 Sep 2025 Macbooks 👁 54 views

MacBook Battery Drain: Script to Find Top Processes

If you’re trying to figure out whats draining your macbook, even when the lid is closed – then try the script below (call with “sudo ./battery_drain_analyzer.sh”): If you see windowServer as your top consumer then consider the following: Finer grained optimisations: To optimise the power when the lid is closed, below are some options:

Read more →
113141522