Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2026-54477 — CVE-2026-54477: Admin Panel Missing Security Headers (clickjacking/XSS) - Gardyn (ICSA-26-183-03) | Kitploit
Tools/GitHubGitHub/michaeladamgroberman/cve-2026-54477
IoT SecurityVulnerability AnalysisWeb SecurityMisconfiguration
GitHubmichaeladamgroberman/cve-2026-54477

CVE-2026-54477

CVE-2026-54477: Admin Panel Missing Security Headers (clickjacking/XSS) - Gardyn (ICSA-26-183-03)

View Repository
1 month agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

CVE-2026-54477: Admin Panel Missing Security Headers (clickjacking / XSS)

Advisory

FieldValue
CVECVE-2026-54477
ICSAICSA-26-183-03 (Gardyn IoT Hub)
CVSS 3.15.4 (Medium)
Vector (3.1)CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N
Vector (4.0)CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:L/VI:L/VA:N/SC:N/SI:N/SA:N
CWE (CISA-assigned)CWE-644 (Improper Neutralization of HTTP Headers for Scripting Syntax)
CWE (researcher)CWE-693 (Protection Mechanism Failure), CWE-1021 (Improper Restriction of Rendered UI Layers)
ResearcherMichael Groberman
Published2026-07-02
Coordinated findingGr0m-043 (admin panel missing all security headers)

Product

FieldValue
VendorGardyn
ProductGardyn Home Kit, Gardyn Studio
ComponentAdmin panel (admin.gardyn.io, Netlify)
Affected VersionsHome Firmware < master.627, Studio Firmware < master.627, Cloud API < 2.12.2026

Summary

The admin panel is served with no security headers beyond HSTS — no Content-Security-Policy, no X-Frame-Options, no X-Content-Type-Options, no Permissions-Policy. This enables clickjacking and cross-site scripting against authenticated admin sessions.

Vulnerability Details

Headers present

HeaderValue
serverNetlify
strict-transport-securitymax-age=31536000
cache-controlno-cache

Headers missing

Clickjacking scenario

With no X-Frame-Options / CSP frame-ancestors, an invisible overlay iframe over an authenticated admin session can trigger privileged actions on click, e.g. PiReboot, DeleteUser, SwitchBannedDevice.

XSS amplification

Combined with the client-side injection sinks identified in Gr0m-028 (22 dangerouslySetInnerHTML instances, 35 innerHTML assignments), the absence of CSP means any successful payload executes without restriction, enabling data exfiltration and session-propagating behavior.

Mapping to coordinated findings

AspectDetail
Gr0m-043Admin panel served with zero security headers beyond HSTS; enables clickjacking + XSS
CWE reconciliationResearcher classified CWE-693 / CWE-1021; CISA assigned CWE-644. Both describe the missing-header condition
NoteThis finding was asserted by the vendor to CERT/CC as remediated in March 2026; publication as a CISA CVE establishes it on the federal record as a valid, standalone finding

Remediation

Per ICSA-26-183-03, Gardyn states the IoT Hub deployed infrastructure has been updated to address the listed vulnerabilities. Recommended control set (Netlify _headers / netlify.toml):

root@kitploit:~
[[headers]]
  for = "/*"
  [headers.values]
    Content-Security-Policy = "default-src 'self'; script-src 'self'; frame-ancestors 'none';"
    X-Frame-Options = "DENY"
    X-Content-Type-Options = "nosniff"
    Referrer-Policy = "strict-origin-when-cross-origin"
    Permissions-Policy = "camera=(), microphone=(), geolocation=()"

Researcher: Michael Groberman (Gr0m) · Case: CERT/CC VU#653116 · Advisory: ICSA-26-183-03

Download Tool
Missing headerConsequence
Content-Security-PolicyNo restriction on script sources; injected script executes freely
X-Frame-OptionsPanel can be embedded in an attacker iframe (clickjacking)
X-Content-Type-OptionsMIME sniffing
Permissions-PolicyCamera / microphone / geolocation unrestricted
Referrer-PolicyFull URL (incl. tokens) may leak via Referer
Cross-Origin-Opener/Resource-PolicyNo cross-origin isolation