Skip to content
https://in.gov.br

Security

· 13 checks — HTTP headers, CSP, TLS handshake, and cookie hygiene rolled into one auditable list.
SCORE
63
GRADE
D
FIX
5
REVIEW
3
PASS
5
INFO
0
Checks
13
5 PASS 3 REVIEW 5 FIX
F
Security Headers
Action
2 of 10 headers properly configured
FIX
2 of 10 headers properly configured
Critical::
HSTS header is missing
Strict-Transport-Security forces browsers to use HTTPS, preventing downgrade attacks. Add the header with a max-age of at least 1 year.
Expected: max-age=31536000; includeSubDomains
Warning::
X-Content-Type-Options header is missing
This header prevents MIME-type sniffing, which can lead to XSS attacks. Set it to 'nosniff'.
Expected: nosniff
Warning::
X-Frame-Options header is missing
This header prevents clickjacking by controlling who can embed your page in a frame. Set it to DENY or SAMEORIGIN.
Expected: DENY
Warning::
Referrer-Policy header is missing
Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.
Expected: strict-origin-when-cross-origin
Warning::
Permissions-Policy header is missing
Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.
Expected: geolocation=(), camera=(), microphone=()
Critical::
Content-Security-Policy header is missing
CSP is the most important header for preventing XSS attacks. See the CSP section for detailed analysis.
Expected: default-src 'self'
Warning::
Cross-Origin-Opener-Policy header is missing
COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.
Expected: same-origin
Warning::
Cross-Origin-Embedder-Policy header is missing
COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.
Expected: require-corp
Info::
X-Powered-By header is not present
Info::
Server header is not present

Strict-Transport-Security forces browsers to use HTTPS, preventing downgrade attacks. Add the header with a max-age of at least 1 year.

Expected: max-age=31536000; includeSubDomains
Why this matters

Without HSTS, a network attacker can downgrade the very first connection to HTTP and steal the user's session.

Learn more

HSTS tells browsers 'never speak HTTP to this domain again.' Without it, a network attacker (public WiFi, malicious ISP, hostile DNS) intercepts the first HTTP attempt and serves a downgraded version of your site. One header, big surface reduction.

Source: RFC 6797 / OWASP

CSP is the most important header for preventing XSS attacks. See the CSP section for detailed analysis.

Expected: default-src 'self'
Why this matters

Without a CSP, a single XSS bug can exfiltrate everything your users type — including credentials.

Learn more

Content-Security-Policy is the browser-enforced firewall against XSS. With a strict CSP, a script injection that would otherwise steal session cookies or rewrite the page is silently blocked. Without it, your only defense is hoping every input on every form is escaped correctly forever.

Source: OWASP / MDN

This header prevents MIME-type sniffing, which can lead to XSS attacks. Set it to 'nosniff'.

Expected: nosniff
Why this matters

MIME sniffing lets browsers run uploaded files as JavaScript, turning a file upload into an XSS.

Learn more

Setting X-Content-Type-Options: nosniff tells browsers to trust your declared Content-Type instead of guessing. Without it, an attacker who uploads a polyglot file can sometimes get it executed as a script. One header, no downside.

Source: OWASP / MDN

This header prevents clickjacking by controlling who can embed your page in a frame. Set it to DENY or SAMEORIGIN.

Expected: DENY
Why this matters

Without frame protection, your site can be embedded in a hostile page and used for clickjacking.

Learn more

Clickjacking overlays your site under a transparent malicious page so users click invisible buttons. Setting X-Frame-Options: DENY (or a modern frame-ancestors CSP directive) blocks the embedding entirely. There's almost never a legitimate reason to allow it.

Source: OWASP / MDN

Controls how much referrer information is sent with requests. Set to 'strict-origin-when-cross-origin' or stricter.

Expected: strict-origin-when-cross-origin
Why this matters

Default browser behavior leaks full URLs (including query params and tokens) to every third-party resource — set a strict policy.

Learn more

Without a Referrer-Policy header, browsers send the full referring URL with images, scripts, and fonts loaded from third-party origins. URLs containing tokens, user IDs, or session params end up in third-party logs. Set `Referrer-Policy: strict-origin-when-cross-origin` (or stricter) to limit leakage.

Source: MDN / W3C

Controls which browser features (camera, microphone, geolocation) are allowed. Set it to restrict unused features.

Expected: geolocation=(), camera=(), microphone=()
Why this matters

Permissions-Policy locks down browser APIs you don't use — without it, every page can request camera/mic/geolocation if XSS lands.

Learn more

By default every page can request the camera, microphone, geolocation, payment APIs, and dozens more. Permissions-Policy turns off the ones you don't need so a future bug can't quietly start using them. It's a defense-in-depth header — one line, big surface reduction.

Source: MDN / W3C

COOP isolates your browsing context, preventing cross-origin side-channel attacks. Set to 'same-origin'.

Expected: same-origin
Why this matters

COOP isolates your top-level browsing context from cross-origin windows — without it, popup-based side-channel attacks remain possible.

Learn more

Cross-Origin-Opener-Policy: same-origin prevents cross-origin pages from sharing a browsing-context group with yours. This blocks cross-window references that enable Spectre-style timing attacks and tab-nabbing. Required if you want to enable SharedArrayBuffer.

Source: MDN / web.dev

COEP prevents loading cross-origin resources without explicit permission. Required for SharedArrayBuffer and high-resolution timers.

Expected: require-corp
Why this matters

COEP enforces that all embedded resources opt-in to cross-origin embedding — required for cross-origin isolation features.

Learn more

Cross-Origin-Embedder-Policy: require-corp ensures every embedded resource (script, iframe, image) explicitly allows being loaded cross-origin. Combined with COOP, this enables the cross-origin-isolated context that unlocks SharedArrayBuffer, high-resolution timers, and other powerful APIs.

Source: MDN / web.dev

F
Content Security Policy
Action
No enforcing CSP policy found
FIX
No enforcing CSP policy found
Critical::
No Content-Security-Policy header found
CSP is the most effective defense against XSS attacks. Add a Content-Security-Policy header to restrict resource loading.
Expected: default-src 'self'

CSP is the most effective defense against XSS attacks. Add a Content-Security-Policy header to restrict resource loading.

Expected: default-src 'self'
Why this matters

Without a CSP, a single XSS bug can exfiltrate everything users type — credentials, payment data, session tokens.

Learn more

Content-Security-Policy is the browser-enforced firewall against XSS. With a strict CSP, a script injection that would otherwise steal session cookies is silently blocked. Without it, your only defense is hoping every input on every form is escaped correctly forever. Start in Report-Only mode, fix violations, then graduate to enforcing.

Source: OWASP / MDN

D
Subresource Integrity
Action
1 of 36 external resources have SRI
FIX
1 of 36 external resources have SRI
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_css/Sunburst%20Theme/reset-cachekey-36a0eaeb508054872b131a1a7d5e65ba.css
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_css/Sunburst%20Theme/base-cachekey-238632634df9973e874d01613f438a08.css
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_css/Sunburst%20Theme/resourceplone.formwidget.datetimestyles-cachekey-20da2f9a416eda974010cab6dab4c686.css
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_css/Sunburst%20Theme/embedder-cachekey-7738ccde5f7d75651b7f481971025b39.css
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_css/Sunburst%20Theme/ploneCustom-cachekey-82743d074ce0ba16cd310afb87dfd2bc.css
Warning::
External link from cdnjs.cloudflare.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/css/swiper.min.css
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_css/Sunburst%20Theme/resourcelgpd.plugindsgov.min-cachekey-dcd1a3cc7a91c961f9fd0a1389cf4d78.css
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_css/Sunburst%20Theme/resourcegovbr.policycanais-cachekey-6677aef78cf3207a331bde99161acaf3.css
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcegovbr.policybrowser-update-cachekey-7062ef8658a2da7a740d86aa40368f6e.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourceplone.app.jquery-cachekey-8a2a4a3afeef6b357770cf9b13a6e0c6.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcegovbr.policyfolder_contents-cachekey-b265b80625dcfbea4b8907fa81c84498.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcegovbr.policycookiebar_1_3_57-cachekey-7f02b58d415983da0a0fe599bf58850b.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcegovbr.policyapplication_cookiebar_1_3_57-cachekey-fea0b619344a4a1ca9be7338b02f8dc6.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/collective.js.jqueryui.custom.min-cachekey-1fe1144781002d30dc4efa18e980df09.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourceplone.formwidget.recurrencejquery.tmpl-beta1-cachekey-9b075858129ebf97bfae387e2c52dcaa.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcecollective.js.bootstrapjsbootstrap.min-cachekey-abbe8c90ab077391cfb31f9beed614f8.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcecollective.coverjsmain-cachekey-809cd0a433551a6d88ffe26e5eb4229d.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcebrasil.gov.tilesvendorjquery.jplayer.min-cachekey-6ea901b82d93f98e1e166a3fdf8af27d.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcedropdown-menu-cachekey-8f43166f81cdc79156fe6e42b611e046.js
Warning::
External script from cdnjs.cloudflare.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //cdnjs.cloudflare.com/ajax/libs/Swiper/3.4.2/js/swiper.min.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcelgpd.pluginchangeCookieImage-cachekey-e02d58655e6e9dd6a3bf1991081fb634.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/resourcelgpd.pluginblock_cookies-cachekey-93e0c2f7c7a0c31b14964436ae1d2308.js
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/portal_javascripts/Sunburst%20Theme/++resource++govbr.recomendacao/govbr.recom.c339e72c8ffbb2f6c087.js
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/++resource++brasil.gov.agenda/brasilgovagenda-720c34e.css
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/++resource++brasil.gov.agenda/brasilgovagenda-720c34e.js
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/++resource++brasil.gov.portal/brasilgovportal-ee510e4.css
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/++resource++brasil.gov.portal/brasilgovportal-ee510e4.js
Warning::
External link from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/++resource++brasil.gov.tiles/brasilgovtiles-7d5753d.css
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/++resource++brasil.gov.tiles/brasilgovtiles-7d5753d.js
Info::
link from cdnjs.cloudflare.com has SRI protection
Warning::
External script from barra.sistema.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://barra.sistema.gov.br/v1/barra-govbr-wc.iife.js
Warning::
External link from barra.sistema.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://barra.sistema.gov.br/v1/fonts/rawline/css/rawline.css
Warning::
External link from cdnjs.cloudflare.com lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css
Warning::
External script from www.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://www.gov.br/imprensanacional/++resource++govbr.policy/lgpd_cookie_handling_1_3_91.js
Warning::
External script from vlibras.gov.br lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: https://vlibras.gov.br/app/vlibras-plugin.js
Warning::
External script from browser-update.org lacks integrity attribute
Without SRI, if this CDN is compromised, attackers could inject malicious code.
Got: //browser-update.org/update.min.js
SRI Coverage 1 / 36 of external resources have integrity hashes
TagDomainIntegrity
<link>www.gov.br Missing
<link>www.gov.br Missing
<link>www.gov.br Missing
<link>www.gov.br Missing
<link>www.gov.br Missing
<link>cdnjs.cloudflare.com Missing
<link>www.gov.br Missing
<link>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>cdnjs.cloudflare.com Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<script>www.gov.br Missing
<link>www.gov.br Missing
<script>www.gov.br Missing
<link>www.gov.br Missing
<script>www.gov.br Missing
<link>www.gov.br Missing
<script>www.gov.br Missing
<link>cdnjs.cloudflare.com Protected
<script>barra.sistema.gov.br Missing
<link>barra.sistema.gov.br Missing
<link>cdnjs.cloudflare.com Missing
<script>www.gov.br Missing
<script>vlibras.gov.br Missing
<script>browser-update.org Missing
D
Permissions-Policy
Action
No header set
FIX
No header set
Warning::
No Permissions-Policy header
Consider adding a Permissions-Policy header to restrict browser feature access from embedded content.

No Permissions-Policy header set.

Without this header, embedded iframes can request access to sensitive device features.

Suggested header
Permissions-Policy: camera=(), microphone=(), geolocation=(), payment=(), usb=()
D
security.txt
Action
No /.well-known/security.txt published
FIX

security.txt

No security.txt found at /.well-known/security.txt

C
CORS Configuration
Action
Origin: *
REVIEW
Origin: *
Info::
Access-Control-Allow-Origin: * — unrestricted
Any website can read this resource's response. Appropriate for public APIs but not for user-specific content.
Info::
Origin reflection not testable with a single request
Some servers reflect the request Origin header. This requires manual testing with a crafted Origin header.
CORS Configuration Permissive
Allow-Origin *

Any website can read responses from this resource.

HeaderValueStatus
Access-Control-Allow-Origin*

Origin reflection test

Some servers mirror the request Origin header, which can be exploited. Test manually:

curl -sI -H "Origin: https://evil.com" <url> | grep -i access-control
C
Known vulnerability matches
Action
14 known vulnerability match(es) against detected tech
REVIEW

Known Vulnerabilities

LibraryVersionSeveritySummaryFixed In
Bootstrapabbe8c90ab077391cfb31f9beed614f8mediumcross-site scripting vulnerability2.1.0
Bootstrapabbe8c90ab077391cfb31f9beed614f8mediumIn Bootstrap before 3.4.0, XSS is possible in the tooltip data-viewport attribute.3.4.0
Bootstrapabbe8c90ab077391cfb31f9beed614f8mediumXSS in data-container property of tooltip3.4.0
Bootstrapabbe8c90ab077391cfb31f9beed614f8mediumIn Bootstrap before 3.4.0, XSS is possible in the affix configuration target property.3.4.0
Bootstrapabbe8c90ab077391cfb31f9beed614f8mediumXSS in data-target property of scrollspy3.4.0
Bootstrapabbe8c90ab077391cfb31f9beed614f8lowBootstrap before 4.0.0 is end-of-life and no longer maintained.3.999.999
jQuery1.8.3mediumSelector interpreted as HTML1.9.0b1
jQuery1.8.3mediumVersions of jquery prior to 1.9.0 are vulnerable to Cross-Site Scripting. The load method fails to recognize and remove "<script>" HTML tags that contain a whitespace character, i.e: "</script >", which results in the enclosed script logic to be executed. This allows attackers to execute arbitrary JavaScript in a victim's browser. ## Recommendation Upgrade to version 1.9.0 or later.1.9.0
jQuery1.8.3medium3rd party CORS request may execute1.12.0
jQuery1.8.3mediumparseHTML() executes scripts in event handlers2.2.0
jQuery1.8.3lowjQuery 1.x and 2.x are End-of-Life and no longer receiving security updates2.999.999
jQuery1.8.3mediumjQuery before 3.4.0, as used in Drupal, Backdrop CMS, and other products, mishandles jQuery.extend(true, {}, ...) because of Object.prototype pollution3.4.0
jQuery1.8.3mediumpassing HTML containing <option> elements from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code.3.5.0
jQuery1.8.3mediumRegex in its jQuery.htmlPrefilter sometimes may introduce XSS3.5.0
B
Transport Security
HTTP/3, HSTS, and TLS version analysis
REVIEW
HTTP/3, HSTS, and TLS version analysis
Info::
HTTP/3 (QUIC) not advertised
HTTP/3 eliminates head-of-line blocking. If your CDN supports it, consider enabling it.
Warning::
Missing Strict-Transport-Security header
HSTS tells browsers to only use HTTPS, preventing SSL stripping attacks.
A+
TLS & Certificates
TLS 1.2, 7 checks passed
PASS
TLS 1.2, 7 checks passed
Info::
TLS 1.2 is used
Got: TLS 1.2
Info::
TLS 1.3 is not negotiated
TLS 1.3 offers improved performance and security. Consider enabling it.
Got: TLS 1.2
Info::
Strong cipher suite is used
Got: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
Info::
HTTP/2 is not negotiated
HTTP/2 provides multiplexing and header compression for better performance.
Got: http/1.1
Info::
Certificate is valid (expires in 146 days)
Got: 2026-09-15T23:59:59Z
Info::
Certificate chain has 2 certificates
Info::
Certificate uses modern signature algorithm
Got: SHA256-RSA
Info::
Certificate covers 2 domain(s)
Got: *.in.gov.br, in.gov.br
Info::
Certificate is issued by a trusted CA
Got: CN=Sectigo Public Server Authentication CA OV R36,O=Sectigo Limited,C=GB

TLS 1.3 offers improved performance and security. Consider enabling it.

Why this matters

TLS 1.3 not in use — connection falls back to 1.2 and pays the extra round-trip.

Learn more

Most clients prefer TLS 1.3 if both sides support it. If your server has TLS 1.3 enabled but it's not being negotiated, check for a downgrade-attack mitigation issue or a misconfigured cipher list. nginx ≥ 1.13.0 and OpenSSL ≥ 1.1.1 support TLS 1.3.

Source: RFC 8446 / Mozilla SSL Config

HTTP/2 provides multiplexing and header compression for better performance.

Why this matters

HTTP/1.1 forces the browser to make sequential requests, multiplying latency on every page.

Learn more

HTTP/2 (and HTTP/3) multiplex many requests over a single connection, eliminating head-of-line blocking. HTTP/1.1 forces the browser to either queue requests or open many parallel connections — both worse. Most modern web servers support HTTP/2 with one config line.

Source: MDN Web Docs

Connection
Protocol
TLS 1.2
Cipher Suite
TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
HTTP Version
HTTP/1.1

Certificate Chain

Leaf Certificate
Subject CN=*.in.gov.br,O=IMPRENSA NACIONAL,ST=Distrito Federal,C=BRIssuer CN=Sectigo Public Server Authentication CA OV R36,O=Sectigo Limited,C=GBValid 2025-08-15T00:00:00Z → 2026-09-15T23:59:59ZExpires in 146 days SANs *.in.gov.br, in.gov.brSignature SHA256-RSASerial 9542ae4f25b7590b0949345a7cb678b4
Intermediate (CA Certificate)
Subject CN=Sectigo Public Server Authentication CA OV R36,O=Sectigo Limited,C=GBIssuer CN=Sectigo Public Server Authentication Root R46,O=Sectigo Limited,C=GBValid 2021-03-22T00:00:00Z → 2036-03-21T23:59:59ZExpires in 3621 days Signature SHA384-RSASerial 2c1a3c76e943ddddff191b31890aed71
A+
Cookie Security
No cookies set — no cookie security risks
PASS
No cookies set — no cookie security risks
Info::
No cookies set — no cookie security risks

No cookies detected — no cookie security risks to report.

A+
JS Library Vulnerabilities
No known vulnerabilities
PASS
No known vulnerabilities
Info::
No known JavaScript library vulnerabilities detected

No known JavaScript library vulnerabilities detected.

A+
Information Leakage
No exposures
PASS
No exposures
Info::
No security.txt found
Consider adding a security.txt at /.well-known/security.txt.
Info::
No sensitive files exposed

No sensitive files exposed — all paths returned 404.

PathStatusCategoryRisk
/.git/HEAD Not foundVersion Control
/.git/config Not foundVersion Control
/.svn/entries Not foundVersion Control
/.env Not foundConfiguration
/.env.local Not foundConfiguration
/.env.production Not foundConfiguration
/wp-config.php Not foundConfiguration
/.htaccess Not foundConfiguration
/phpinfo.php Not foundDebug
/server-status Not foundDebug
/server-info Not foundDebug
/.well-known/security.txt Not foundSecurity Policy
A
Email Security
DMARC: quarantine
PASS
DMARC: quarantine
Info::
DMARC policy is quarantine — good protection
DMARC
Policy quarantine — good protection Record v=DMARC1;p=quarantine;sp=reject;pct=100;ruf=mailto:dinfs@in.gov.br
All checks on this page are automated. Results are estimates - run targeted manual reviews when the score affects a release decision.

Send Feedback