Sky Discloses Five Vulnerabilities in SKYSEA Client View and SKYMEC IT Manager
Sky has disclosed multiple vulnerabilities in its popular IT asset management products SKYSEA Client View and SKYMEC IT Manager. The company published a security advisory on 24 August 2026 detailing five externally reported issues that have now been addressed through software updates.
All Windows-based deployments are affected, including master servers, management machines, terminal machines, and standalone terminal machines. The flaws range from missing authorization processing to insecure file permissions and memory corruption issues.
Details of the vulnerabilities
- CVE-2026-66109 β Missing authorization processing (CVSSv4: 8.5, CVSSv3: 7.8)
- CVE-2026-69665 β Improper file access rights during installation (CVSSv4: 8.5, CVSSv3: 7.8)
- CVE-2026-68062 and CVE-2026-68959 β Path traversal vulnerabilities (CVSSv4: 5.8, CVSSv3: 8.5)
- CVE-2026-68960 β Stack-based buffer overflow (CVSSv4: 5.8, CVSSv3: 8.5)
Sky is distributing update modules and correction modules to contracted users and urges immediate application to mitigate potential risks.
Related articles
New Windows 11 Bypass Lets Users Skip Internet and Microsoft Account During Setup
A new method has been discovered that allows Windows 11 Home users to complete initial setup without an internet connection or Microsoft account. The technique requires no command-line tools or scripts and was found by enthusiast Bob Pony. During the OOBE process, users simply open the sign-in options and click the Learn more link, which redirects the wizard to local account creation. Previous bypasses such as OOBE\bypassnro and start ms-cxh:localonly have already been blocked by Microsoft. The new approach appears to be an overlooked interface element and works only on the Home edition. Microsoft is expected to close this loophole in a future update as it continues tightening account requirements.
CISA Adds Four Actively Exploited Vulnerabilities in GitLab, ConnectWise ScreenConnect and JFrog Artifactory to KEV Catalog
The U.S. Cybersecurity and Infrastructure Security Agency has added four vulnerabilities to its Known Exploited Vulnerabilities catalog after confirming active exploitation in the wild. The flaws affect GitLab Community Edition and Enterprise Edition, ConnectWise ScreenConnect, and JFrog Artifactory. CVE-2026-85706 allows unauthenticated path traversal in GitLabβs commit API, enabling arbitrary file reads. CVE-2026-84869 in ScreenConnect permits unauthorized file transfer and execution over active remote sessions. Two additional issues in Artifactory, CVE-2026-42018 and CVE-2026-42016, can lead to token leakage and privilege escalation. Federal agencies have been directed to apply mitigations and investigate potential compromises by specific deadlines.
Critical Vulnerability in ConnectWise ScreenConnect Enables Unauthorized File Transfers
ConnectWise has disclosed a serious vulnerability in its remote access product ScreenConnect that allows attackers to transfer and execute files from active remote sessions without requiring authorization or host-side confirmation. The flaw, tracked as CVE-2026-84869, impacts both Support and Access session types and carries a CVSS v3.1 base score of 9.9, placing it in the Critical severity category. The company rated the issue as Important in its three-tier scale and assigned it the highest priority of High. Exploitation of the vulnerability has already been confirmed in the wild, increasing the urgency for organizations using the product. ConnectWise published the security advisory on September 8, 2026, urging users to apply available mitigations promptly. The vulnerability stems from improper handling in the file transfer process within the client component.
Can IDOR Vulnerabilities Be Found Through Static Analysis? New Python Kernel Aims to Answer the Question
A researcher has developed a static analysis module for detecting Insecure Direct Object Reference (IDOR) vulnerabilities in Python web applications. The tool moves beyond simple heuristics by tracking the relationship between user-controlled identifiers, database objects, and authorization checks. It supports Django, Django REST Framework, Flask, and FastAPI, using a custom taint-tracking system called SIAOD to label data origins. Existing approaches such as OpenAPI specifications, broad AST heuristics, Semgrep, and CodeQL were analyzed and found insufficient for capturing the precise semantics of IDOR. Testing on 150 small repositories yielded 48 true positives out of 112 findings, while analysis of 12 million lines of production code from 15 companies produced only five confirmed issues amid hundreds of false positives caused by authorization logic residing outside handler functions. The work demonstrates both the feasibility and current limitations of deterministic static detection for this vulnerability class.