<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Brain Sharing on johnmatrix</title>
		<link>https://johnmatrix.org/brain-sharing/</link>
		<description>Recent content in Brain Sharing on johnmatrix</description>
		<generator>Hugo</generator>
		<language>en-us</language>
		
		
		
		
			<lastBuildDate>Fri, 17 Jul 2026 14:10:40 +0100</lastBuildDate>
		
			<atom:link href="https://johnmatrix.org/brain-sharing/index.xml" rel="self" type="application/rss+xml" />
			<item>
				<title>Web Application Testing</title>
				<link>https://johnmatrix.org/brain-sharing/web-applications/</link>
				<pubDate>Fri, 17 Jul 2026 14:10:40 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/web-applications/</guid>
				<description>&lt;p&gt;Structured approach to web application penetration testing. Ordered by signal strength &amp;ndash; test what&amp;rsquo;s most likely to yield critical findings first, eliminate noise last.&lt;/p&gt;&#xA;&lt;h2 id=&#34;testing-order&#34;&gt;Testing Order&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#282a36;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-gdscript3&#34; data-lang=&#34;gdscript3&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#bd93f9&#34;&gt;1.&lt;/span&gt; RECON         Endpoints, source maps, tech stack, signals&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#bd93f9&#34;&gt;2.&lt;/span&gt; AUTH          Login, registration, session management, JWT, MFA&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#bd93f9&#34;&gt;3.&lt;/span&gt; ACCESS        BAC, IDOR, privilege escalation, role matrix&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#bd93f9&#34;&gt;4.&lt;/span&gt; INJECTION     SQLi, XSS, SSTI, command injection, XXE&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#bd93f9&#34;&gt;5.&lt;/span&gt; LOGIC         Price manipulation, race conditions, state machines&#xA;&lt;/span&gt;&lt;/span&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;&lt;span style=&#34;color:#bd93f9&#34;&gt;6.&lt;/span&gt; INFRASTRUCTURE   SSRF, cache deception, API gateway bypass, CORS&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Start at the top. Findings in one phase inform the next &amp;ndash; a weak JWT makes IDOR testing trivial, a user enumeration oracle makes brute force the priority.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Bagel</title>
				<link>https://johnmatrix.org/brain-sharing/bagel/</link>
				<pubDate>Fri, 17 Jul 2026 13:43:41 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/bagel/</guid>
				<description>&lt;p&gt;Dev workstation security scanner from BoostSecurity. Checks Git config, SSH keys, npm settings, shell history, cloud credentials, IDE plugins, GitHub CLI, and AI tool configs for security gaps. Privacy-first &amp;ndash; only metadata leaves the machine.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Burp MCP Server</title>
				<link>https://johnmatrix.org/brain-sharing/burp-mcp-setup/</link>
				<pubDate>Fri, 17 Jul 2026 13:43:41 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/burp-mcp-setup/</guid>
				<description>&lt;p&gt;MCP server and standalone CLI for Burp Suite Professional. Gives AI assistants structured access to Burp&amp;rsquo;s HTTP engine, proxy history, scanner, Repeater, and Intruder &amp;ndash; with body limits, batch operations, and race condition support.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Caido Go SDK</title>
				<link>https://johnmatrix.org/brain-sharing/caido-sdk-go/</link>
				<pubDate>Fri, 17 Jul 2026 13:43:41 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/caido-sdk-go/</guid>
				<description>&lt;p&gt;Community Go SDK for the Caido web proxy. Type-safe GraphQL client with domain-specific packages for requests, intercept, replay, findings, scopes, and more. Powers the Caido MCP server.&lt;/p&gt;&#xA;&lt;p&gt;Source: &lt;a href=&#34;https://github.com/caido-community/sdk-go&#34;&gt;caido-community/sdk-go&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;architecture&#34;&gt;Architecture&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#282a36;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Your Go Code  --&amp;gt;  sdk-go  --&amp;gt;  GraphQL (genqlient)  --&amp;gt;  Caido Instance (port 8080)&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Built on &lt;a href=&#34;https://github.com/Khan/genqlient&#34;&gt;Khan/genqlient&lt;/a&gt; for compile-time type safety. Every GraphQL query/mutation has a corresponding Go function with typed inputs and outputs.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Caido MCP Server</title>
				<link>https://johnmatrix.org/brain-sharing/caido-mcp-setup/</link>
				<pubDate>Fri, 17 Jul 2026 13:43:41 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/caido-mcp-setup/</guid>
				<description>&lt;p&gt;MCP server and CLI for the &lt;a href=&#34;https://caido.io&#34;&gt;Caido&lt;/a&gt; web proxy. Browse, replay, and analyze HTTP traffic from AI assistants or your terminal. Built on the community &lt;a href=&#34;https://johnmatrix.org/brain-sharing/caido-sdk-go/&#34;&gt;Go SDK&lt;/a&gt; with 66 tools and 6 read-only resources, OAuth + static token auth, HTTPQL filtering, session cookie jars, batch operations, WebSocket inspection, race condition testing, and full Caido feature coverage.&lt;/p&gt;</description>
			</item>
			<item>
				<title>HackerOne MCP Server</title>
				<link>https://johnmatrix.org/brain-sharing/hackerone-mcp/</link>
				<pubDate>Fri, 17 Jul 2026 13:43:41 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/hackerone-mcp/</guid>
				<description>&lt;p&gt;MCP server for HackerOne triage teams. Full read/write access to reports, triage workflows, severity ratings, assignments, and program management &amp;ndash; all from your AI assistant. Single Go binary, zero external dependencies.&lt;/p&gt;&#xA;&lt;p&gt;Source: &lt;a href=&#34;https://github.com/c0tton-fluff/hackerone-mcp&#34;&gt;c0tton-fluff/hackerone-mcp&lt;/a&gt;&lt;/p&gt;</description>
			</item>
			<item>
				<title>Secret Scrubber</title>
				<link>https://johnmatrix.org/brain-sharing/secret-scrubber/</link>
				<pubDate>Fri, 17 Jul 2026 13:43:41 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/secret-scrubber/</guid>
				<description>&lt;p&gt;Find and scrub secrets from AI CLI session logs. AWS keys, SSH private keys, GitHub tokens, JWTs, Bearer tokens, cloud credentials &amp;ndash; replaced with &lt;code&gt;[REDACTED-&amp;lt;type&amp;gt;]&lt;/code&gt; markers while preserving conversation context. Zero dependencies, stdlib-only Python.&lt;/p&gt;</description>
			</item>
			<item>
				<title>SentinelOne MCP Server</title>
				<link>https://johnmatrix.org/brain-sharing/sentinelone-mcp-server/</link>
				<pubDate>Fri, 17 Jul 2026 13:43:41 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/sentinelone-mcp-server/</guid>
				<description>&lt;p&gt;MCP server for SentinelOne EDR. Query threats, manage agents, run Deep Visibility hunts, and check hash reputation from AI assistants. Stdlib-only Go binary - zero external dependencies.&lt;/p&gt;&#xA;&lt;p&gt;Source: &lt;a href=&#34;https://github.com/c0tton-fluff/sentinelone-mcp-server&#34;&gt;c0tton-fluff/sentinelone-mcp-server&lt;/a&gt;&lt;/p&gt;&#xA;&lt;h2 id=&#34;architecture&#34;&gt;Architecture&lt;/h2&gt;&#xA;&lt;div class=&#34;highlight&#34;&gt;&lt;pre tabindex=&#34;0&#34; style=&#34;color:#f8f8f2;background-color:#282a36;-moz-tab-size:2;-o-tab-size:2;tab-size:2;-webkit-text-size-adjust:none;&#34;&gt;&lt;code class=&#34;language-fallback&#34; data-lang=&#34;fallback&#34;&gt;&lt;span style=&#34;display:flex;&#34;&gt;&lt;span&gt;Claude Code  --&amp;gt;  stdio  --&amp;gt;  sentinelone-mcp-server (Go)  --&amp;gt;  REST API  --&amp;gt;  SentinelOne Console&#xA;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Single binary, no SDK dependencies. Uses Go stdlib &lt;code&gt;net/http&lt;/code&gt; + &lt;code&gt;encoding/json&lt;/code&gt; for all API communication.&lt;/p&gt;</description>
			</item>
			<item>
				<title>Phantom</title>
				<link>https://johnmatrix.org/brain-sharing/phantom/</link>
				<pubDate>Fri, 17 Jul 2026 10:43:50 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/phantom/</guid>
				<description>&lt;p&gt;Autonomous penetration testing operator. Native Go detectors, signal-based attack planning, and an engagement engine that chains findings into critical-severity paths. Designed to work with AI assistants as the reasoning layer while Go handles all detection at machine speed.&lt;/p&gt;</description>
			</item>
			<item>
				<title>The AI-Era Security Engineer</title>
				<link>https://johnmatrix.org/brain-sharing/ai-era-security-engineering/</link>
				<pubDate>Fri, 17 Jul 2026 10:43:50 +0100</pubDate>
				<guid>https://johnmatrix.org/brain-sharing/ai-era-security-engineering/</guid>
				<description>&lt;h1 id=&#34;the-ai-era-security-engineer&#34;&gt;The AI-Era Security Engineer&lt;/h1&gt;&#xA;&lt;p&gt;A practical guide for security professionals building, specifying, and reviewing code in the age of AI-assisted development.&lt;/p&gt;&#xA;&lt;h2 id=&#34;the-mindset-shift&#34;&gt;The Mindset Shift&lt;/h2&gt;&#xA;&lt;p&gt;Traditional security review: find vulnerabilities in human-written code.&lt;/p&gt;</description>
			</item>
	</channel>
</rss>
