Skip to content

Security & Privacy

Power SEO Bot edited this page Feb 27, 2026 · 1 revision

Security & Privacy

Power-SEO follows security best practices.

No Install Scripts

  • ❌ No postinstall hooks
  • ❌ No preinstall scripts
  • ✅ Safe to use in any environment

No Network Access

  • ❌ No external API calls
  • ❌ No telemetry
  • ❌ No beacons
  • ✅ 100% local computation

No Dynamic Code

  • ❌ No eval()
  • ❌ No dynamic imports of user code
  • ✅ Safe for CSP-enabled sites

Input Validation

All user input is validated:

// Schema validation
const { valid, issues } = validateSchema(userSchema);

// Title validation
const titleResult = validateTitle(userTitle);

// Content analysis sanitizes HTML
const result = analyzeContent({
  content: userProvidedHtml, // Safe - parsed safely
});

XSS Prevention

JSON-LD strings are escaped:

const jsonld = toJsonLdString(schema);
// <, >, & are escaped to Unicode sequences
// Safe to embed in HTML

Cryptographic Signing

All releases are:

  • ✅ Signed with Sigstore
  • ✅ Published via GitHub Actions
  • ✅ Provenance-tracked

For security concerns, file an issue at https://github.com/CyberCraftBD/power-seo/issues

Clone this wiki locally