CVE-2026-1364: Missing Authentication Bug Enables Unrestricted Admin Access in JNC Industrial Systems

CVE-2026-1364 is a critical authentication bypass vulnerability affecting JNC IAQS and I6 systems.
The core issue is that certain administrative functions are exposed without authentication checks, meaning anyone on the network can perform privileged operations without logging in.

This class of bug is categorized as CWE-306: Missing Authentication for Critical Function.

Severity Summary

  • CVSS v3.1 Base Score: 9.8 (Critical)
  • Attack Vector: Network
  • Privileges Required: None
  • User Interaction: None
  • Impact: Full compromise (confidentiality, integrity, availability)

In practical terms, this is one of the worst possible security flaws.


Technical Root Cause

The vulnerable IAQS/I6 web or API backend exposes administrative endpoints that:

  • Do not validate authentication tokens
  • Do not check session cookies
  • Trust client-side enforcement (UI restrictions only)

So the backend assumes the UI already verified the user, which is a classic security anti-pattern.

Typical vulnerable pattern

/api/admin/system/reboot
/api/admin/config/update
/api/admin/user/create

Requests to these endpoints are processed even when no session token or credentials are provided.


Attack Surface & Exploitation Scenarios

Attack Preconditions

  • Device reachable over network (LAN/WAN/VPN)
  • No credentials required
  • Default ports or exposed management interface

What an Attacker Can Do

  • Reset or reboot systems
  • Change configuration parameters
  • Create or delete admin accounts
  • Extract operational data
  • Disrupt production workflows
  • Potentially pivot deeper into OT/ICS networks

In industrial environments, this could lead to production sabotage or safety incidents.


Proof-of-Concept (PoC) – Educational Example

⚠️ This is a conceptual PoC based on common missing-auth patterns.
Do NOT test on systems you do not own.

Example unauthenticated API call:

curl -X POST http://TARGET_IP/api/admin/system/reboot

Example configuration modification:

curl -X POST http://TARGET_IP/api/admin/config \
     -H "Content-Type: application/json" \
     -d '{"parameter":"debug_mode","value":"true"}'

Browser exploitation:

Just visiting a crafted URL may trigger actions if GET endpoints exist:

http://TARGET_IP/admin/reset?factory=true

How to Detect CVE-2026-1364 (Blue Team / SOC)

Network Scanning Detection

Nmap Script Idea

nmap -p 80,443 --script http-methods,http-auth TARGET_IP

Look for:

  • Admin endpoints accessible without authentication
  • No HTTP 401/403 responses

Web Request Behavior Detection

Indicators:

  • Admin API returning HTTP 200 without session cookies
  • Sensitive actions triggered via GET/POST without authentication headers

IDS/IPS Detection Rules (Snort/Suricata Example)

Basic Suricata rule:

alert http any any -> any any (
    msg:"CVE-2026-1364 possible unauthenticated admin API access";
    content:"/api/admin";
    http_uri;
    sid:20261364;
    rev:1;
)

SIEM / Log Detection (Splunk / ELK Query)

Example Splunk Query:

index=web_logs uri="/api/admin*" status=200 NOT session_id=*

Elastic Query (KQL):

url.path:/api/admin* AND http.response.status_code:200 AND NOT user.session_id:*

Exploitation Risk in Real Environments

This vulnerability is extremely dangerous because:

  • No brute-force required
  • No credentials required
  • Exploit complexity is LOW
  • Attack can be automated by botnets
  • ICS/OT systems often exposed in flat networks

In OT environments, attackers could:

  • Stop production lines
  • Manipulate quality data
  • Cause downtime or safety incidents

Official Patch / Upgrade Guidance

Vendor Patch Guidance

  • Vendor released updates for devices using M4 hardware
  • Devices with M3 hardware cannot be patched and must be replaced

Official Advisory / Patch Source

Vendor advisory page:
https://www.twcert.org.tw/en/cp-139-10653-117a1-2.html

(Always confirm with JNC support for firmware versions and hardware compatibility.)


Hardening & Mitigation (If Patch Not Possible)

Immediate Network Controls

  • Block management ports from internet
  • Restrict admin interfaces to trusted IPs
  • Place devices behind VPN
  • Use network segmentation (VLAN/OT firewall)

Application Controls

  • Disable unused APIs
  • Add reverse proxy authentication (Basic Auth / OAuth / mTLS)
  • Monitor admin endpoint usage

Advanced Detection (Red/Blue Team)

Canary Endpoint Trap

Create a fake admin endpoint and alert on access:

/api/admin/fake

If accessed → likely attacker scanning.


Behavior Analytics

Detect:

  • Reboot/config changes outside maintenance windows
  • API calls without user sessions
  • Requests from non-corporate IPs

Exploit Availability

  • No public weaponized exploit frameworks yet (as of now)
  • Very easy to exploit manually
  • Likely to be integrated into scanners soon (Metasploit / Nuclei templates)

Related Vulnerability

Released alongside:

  • CVE-2026-1363 – Client-side security enforcement bypass
    Combining both can give full admin takeover from the web UI.

  • This is critical severity with trivial exploitation.
  • Any exposed IAQS/I6 system should be treated as compromised until patched.
  • If hardware cannot be patched → replace the device.
  • Monitor admin API usage aggressively.