SShortSingh.
Back to feed

PII Guardrail Studio Offers Local Privacy Gateway for LLMs Under 25ms

0
·3 views

PII Guardrail Studio is a local, air-gapped privacy gateway designed to strip and restore personally identifiable information before and after calls to external LLM APIs like OpenAI or Claude. The tool intercepts sensitive data such as names, SSNs, and dates of birth, replacing them with tokens that are only restored locally after the model responds. All PII mappings are stored in an AES-256 encrypted SQLCipher database, secured with SHA-256 digests and Ed25519 node-locking, making the data unreadable without the local node key. The gateway can be deployed via a PyPI package or Docker container and integrates with existing Python pipelines using standard HTTP libraries. To mark its v2.0 release, the developers are offering a free six-month enterprise evaluation key valid through March 2027, unlocking unlimited throughput and over 30 entity recognizers.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Free JetBrains plugin HotRulez hits 1,000 downloads two months after launch

HotRulez, a free open-source plugin for Firebase Security Rules, has surpassed 1,000 downloads on the JetBrains Marketplace roughly two months after its initial release. The plugin was built by a developer who wanted proper Firebase Security Rules tooling in their IDE but could not find a free alternative. HotRulez supports JetBrains IDEs including Android Studio and IntelliJ IDEA, offering features such as syntax highlighting, formatting, structural diagnostics, and symbol navigation. The developer noted that downloads continued to grow even after the initial launch spike, suggesting the tool addresses a genuine gap shared by other developers. The plugin is released under the MIT license and remains open to community feedback and contributions.

0
ProgrammingDEV Community ·

Developer releases HTMLPlus Element v4, a compiler that automates web component boilerplate

A developer has publicly unveiled HTMLPlus Element v4 after several years of intermittent work and over 500 commits, describing it as a compiler that eliminates repetitive boilerplate when writing native web custom elements. The tool uses TypeScript decorators to automatically derive tag names from class names, resolve property types, pick up co-located CSS files, and generate TypeScript definitions at build time. Output components work across major frameworks — including React, Vue, Angular, Svelte, and Solid — without wrapper packages, by emitting events under each framework's expected naming convention. The runtime weighs approximately 8 KB gzipped per element and under 11 KB for the full library, and the project is already used to power the htmlplus.io UI kit. Currently available as a Vite and Rollup plugin via unplugin, the project is MIT-licensed and open to public feedback on its API design.

0
ProgrammingDEV Community ·

TruffleHog, Gitleaks, GitHub Secret Scanning: How the Top CI Tools Compare in 2026

Hardcoded credentials remain a critical security risk, with exposed API keys and tokens often detected by malicious bots within minutes of being pushed to a repository. Engineering teams commonly integrate secret scanning tools into CI/CD pipelines, but widespread use has revealed a significant alert fatigue problem caused by false positives from test fixtures and expired tokens. A 2026 comparison of three leading tools — Gitleaks, TruffleHog, and GitHub Secret Scanning — highlights distinct trade-offs across regex detection, entropy analysis, and live API verification methods. Gitleaks is praised for speed and custom rule support but lacks live key validation, while TruffleHog offers over 750 detectors with active verification at the cost of slower CI performance. GitHub Secret Scanning is seamlessly integrated for public repos but requires a paid enterprise license for private repository coverage.

0
ProgrammingDEV Community ·

Tool Automates Weekly PostgreSQL Restore Testing via GitHub Actions

A tool called Revenant has been built to automate database restore validation, addressing the common problem of teams skipping or delaying restore drills. It uses a simple YAML configuration file and a GitHub Action to run weekly checks verifying that a PostgreSQL database can actually be recovered. The checks cover connection health, schema integrity, row counts, foreign key relationships, and data freshness. For AWS RDS users, Revenant can also restore an actual snapshot into a temporary sandbox, validate it, record recovery time, and automatically tear it down. The goal is to surface restore failures with specific, actionable error details before they become a crisis.