$npx -y skills add transilienceai/communitytools --skill securitySecurity-posture and third-party SaaS identification — security headers, CSP, HSTS, email auth, security.txt, plus payments/analytics/auth/CRM/support integrations.
| 1 | # Security Posture & Third-Party Tech-Stack |
| 2 | |
| 3 | ## Scope |
| 4 | |
| 5 | Two related lenses on a target: |
| 6 | |
| 7 | 1. **Security posture** — HTTP security headers, Content Security Policy, HSTS, email auth (SPF/DKIM/DMARC/MTA-STS), `security.txt`, certificate practices. |
| 8 | 2. **Third-party / SaaS detection** — payment processors, analytics, customer support, identity providers, CRM/marketing, error monitoring, A/B testing, social/communication SDKs, media CDNs. |
| 9 | |
| 10 | The two are coupled: CSP `script-src` and DNS `TXT` verifications reveal third-party services, while third-party domains contribute to the overall security surface. |
| 11 | |
| 12 | ## Signals (input) |
| 13 | |
| 14 | - HTTP response headers — security headers, CSP directives, HSTS |
| 15 | - DNS TXT records — SPF, DKIM, DMARC, SaaS verification tokens |
| 16 | - HTML — meta-tag security policies, embedded widgets/iframes |
| 17 | - Loaded JS / script-src URLs and globals |
| 18 | - `/.well-known/security.txt`, `/security.txt`, `/.well-known/change-password` |
| 19 | |
| 20 | ## Inferences (output) |
| 21 | |
| 22 | - Security score (header coverage, CSP strength, email-auth strength, security.txt presence) |
| 23 | - CSP analysis (unsafe-inline/eval issues, allowed third-party domains) |
| 24 | - Email-auth grade (DMARC policy strength) |
| 25 | - Third-party SaaS catalogue by category, with integration mode (client SDK vs CSP-only vs DNS-only) |
| 26 | |
| 27 | ## Techniques |
| 28 | |
| 29 | See [reference/patterns.md](reference/patterns.md). |
| 30 | |
| 31 | ## When to use |
| 32 | |
| 33 | - Pre-engagement security baseline |
| 34 | - Mapping supply-chain / SaaS exposure |
| 35 | - Identifying integrations that grant pivot opportunities (Auth0, Stripe webhook surface, Sentry DSN leakage, etc.) |
| 36 | - Phase 3 of tech-stack OSINT |