<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: priyanka kesharwani</title>
    <description>The latest articles on DEV Community by priyanka kesharwani (@prijec31).</description>
    <link>https://dev.to/prijec31</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4116348%2Fce934298-d858-470e-a185-d701909e6286.jpg</url>
      <title>DEV Community: priyanka kesharwani</title>
      <link>https://dev.to/prijec31</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/prijec31"/>
    <language>en</language>
    <item>
      <title>I built a secret scanner that tries to answer “is this secret actually live?"</title>
      <dc:creator>priyanka kesharwani</dc:creator>
      <pubDate>Tue, 08 Sep 2026 19:14:51 +0000</pubDate>
      <link>https://dev.to/prijec31/i-built-a-secret-scanner-that-tries-to-answer-is-this-secret-actually-live-56mn</link>
      <guid>https://dev.to/prijec31/i-built-a-secret-scanner-that-tries-to-answer-is-this-secret-actually-live-56mn</guid>
      <description>&lt;p&gt;I’ve been building &lt;strong&gt;SecretLoop&lt;/strong&gt;, and it’s now available in Preview on Open VSX.&lt;/p&gt;

&lt;p&gt;The problem I was trying to solve is pretty simple.&lt;/p&gt;

&lt;p&gt;You run a secret scanner and get:&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;“Found an API key.”&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Cool. But then what?&lt;/p&gt;

&lt;p&gt;Is it still active?&lt;br&gt;
Was it already revoked?&lt;br&gt;
Is it buried somewhere in Git history?&lt;br&gt;
Do I need to rotate it?&lt;br&gt;
And how do I actually remove it without manually hunting through the code?&lt;/p&gt;

&lt;p&gt;SecretLoop is built around this flow:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Detect → Verify → Remediate&lt;/strong&gt;&lt;/p&gt;
&lt;h3&gt;
  
  
  What it does
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Scans your working tree, staged files and Git history&lt;/li&gt;
&lt;li&gt;Uses 100+ provider rules + entropy detection&lt;/li&gt;
&lt;li&gt;Can verify supported credentials against their provider to determine whether they're currently live&lt;/li&gt;
&lt;li&gt;Shows findings directly in VS Code&lt;/li&gt;
&lt;li&gt;Provides quick fixes to redact a secret or move it to &lt;code&gt;.env&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Supports rotation where the provider API allows it&lt;/li&gt;
&lt;li&gt;Includes pre-commit and CI/SARIF support&lt;/li&gt;
&lt;li&gt;Has an MCP server for AI coding agents&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The MCP part was particularly important to get right.&lt;/p&gt;

&lt;p&gt;SecretLoop doesn't have an LLM inside it. The scanner produces deterministic findings; the AI assistant can explain and work with those findings.&lt;/p&gt;

&lt;p&gt;Credential values are always redacted in MCP responses, and &lt;strong&gt;verification is opt-in and requires explicit human approval before a credential is sent to its provider&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;You can try it without installing anything:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx secretloop scan
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Or scan Git history:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx secretloop &lt;span class="nb"&gt;history&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;For CI:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;npx secretloop scan &lt;span class="nt"&gt;--format&lt;/span&gt; sarif &lt;span class="nt"&gt;-o&lt;/span&gt; results.sarif
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Open VSX:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://open-vsx.org/extension/gpyanalytics/secretloop?utm_source=chatgpt.com" rel="noopener noreferrer"&gt;SecretLoop – Open VSX&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;GitHub:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/gpyanalytics/secretloop?utm_source=chatgpt.com" rel="noopener noreferrer"&gt;SecretLoop on GitHub&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's still early/Preview, so I'm much more interested in &lt;strong&gt;feedback than downloads&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;If you use gitleaks, TruffleHog, GitGuardian, GitHub Secret Scanning, etc., I'd especially love to know:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What happens after your scanner finds a secret?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's the part I'm trying to improve.&lt;/p&gt;

</description>
      <category>cybersecurity</category>
      <category>git</category>
      <category>security</category>
      <category>vscode</category>
    </item>
  </channel>
</rss>
