🛡️ CVE-2026-55863 — motioneye

⚪ Unknown ✅ No Known Exploit CWE-862 OSV
N/A
CVSS Score
0 Low4 Medium7 High9 Critical10

Description

motionEye's missing authentication on ActionHandler allows unauthenticated camera action execution

Summary

The ActionHandler.post() method in motionEye has no authentication decorator, allowing any unauthenticated attacker to trigger camera actions including snapshots, recording start/stop, and configured action scripts (PTZ controls, alarm triggers, etc.).

Vulnerability Details

File: motioneye/handlers/action.pyActionHandler.post() line 36

CWE: CWE-862 — Missing Authorization

CVSS: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N = 5.3 Medium

Vulnerable Code

```python

class ActionHandler(BaseHandler):

async def post(self, camera_id, action): # ← NO @BaseHandler.auth() decorator

camera_id = int(camera_id)

if camera_id not in config.get_camera_ids():

raise HTTPError(404, 'no such camera')

...

if action == 'snapshot':

await self.snapshot(camera_id) # executed without auth

return

elif action == 'record_start':

return self.record_start(camera_id)

elif action == 'record_stop':

return self.record_stop(camera_id)

action_commands = config.get_action_commands(local_config)

command = action_commands.get(action)

...

self.run_command_bg(command) # executes predefined shell scripts

```

Compare with other handlers that correctly require authentication:

```python

@BaseHandler.auth(admin=True) # ← properly protected

async def delete(self, camera_id, filename):

...

```

Steps to Reproduce

1. Deploy motionEye with at least one camera configured

2. Send unauthenticated POST:

```

POST /action/1/snapshot HTTP/1.1

Host: motioneye-host:8765

Content-Length: 0

```

3. Observe {} (HTTP 200) response — snapshot triggered without any credentials

For action scripts (lock, unlock, alarm_on, alarm_off, light_on, etc.):

```

POST /action/1/alarm_on HTTP/1.1

Host: motioneye-host:8765

```

Impact

  • Unauthenticated attacker can trigger camera snapshots on demand
  • Unauthenticated attacker can start/stop video recording
  • If action scripts are configured by admin: attacker can trigger PTZ movement, alarm control, lighting changes — physical security bypass
  • Via remote cameras: SSRF by triggering action on a remote motionEye server

Verification

Dynamically confirmed on v0.43.1 in Docker lab — POST /action/2/snapshot with no credentials returns HTTP 200 {}. Server log shows the action was processed (failed only because motion daemon was not running for the test camera, not due to an auth rejection).

Recommended Fix

```python

class ActionHandler(BaseHandler):

@BaseHandler.auth() # add authentication requirement

async def post(self, camera_id, action):

...

```

How this vulnerability can be exploited

This issue can be reached over the network, attack complexity is low, an attacker needs no privileges on the target. No user interaction is required. The scope is unchanged, so the impact stays within the vulnerable component. Rated impact: confidentiality none, integrity low, availability none.

Weakness class

CVE-2026-55863 is classified as CWE-862: Missing Authorization. No authorisation check is performed before carrying out a restricted action.

Affected software

CVE-2026-55863 is recorded against 1 package.

  • motioneye (fixed in 0.44.0)

Timeline and source

Published on 23 June 2026 and last revised on 13 July 2026. No public exploit is currently recorded for this entry. Record sourced from OSV.

References

github.com (Web)
github.com (Package)

Details

Severity Unknown
CVSS Score N/A
CVSS Vector CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N
CWE CWE-862
Public Exploit ✅ No
Source OSV
Published 2026-06-23
Updated 2026-08-12
Modified 2026-07-13
Fix URL N/A

Affected Packages

Software From version Fixed in
motioneye 0.44.0

Similar Threats

Free Vulnerability Check

Is your site affected by CVE-2026-55863?

BotEraser helps you identify potentially vulnerable plugins and themes by checking your installation against CVE-2026-55863 and other known CVE records.

Scan My Site Free →

No credit card required  ·  Results in minutes

ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.