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
ip-camera-research — Security research on a consumer IP camera built on the Fullhan FH8626V100 SoC (model AJL30PG0803). | Kitploit
Tools/GitHubGitHub/amiraliuks/ip-camera-research
Embedded Systems SecurityExploit FrameworksIoT SecurityVulnerability AnalysisExploitationPenetration TestingHardware & IoT SecurityRed TeamingPayload Development
GitHubamiraliuks/ip-camera-research

ip-camera-research

Security research on a consumer IP camera built on the Fullhan FH8626V100 SoC (model AJL30PG0803).

131 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
View RepositoryWebsite

IP Camera Research - Fullhan FH8626V100 (AJL30PG0803)

Security research on a consumer IP camera built on the Fullhan FH8626V100 SoC (model AJL30PG0803), resulting in six assigned CVEs covering unauthenticated API access, plaintext credential disclosure, and full unauthenticated device compromise via OS command injection.

Full writeup: Breaking Into My Own IP Camera

Device Overview

FieldValue
SoC / PlatformFH8626V100 (Fullhan Microelectronics, FH86xx family)
Device ModelAJL30PG0803
Firmware Versionv201222.1007
ArchitectureARM, embedded Linux
Camera SensorJX-F37P (2MP, 1080p@30fps, MIPI)
Companion AppCareCam Pro
Web APIPSIA-based endpoints (/PSIA/*)
Key ServicesHTTP (80), HTTPS (443), Telnet (23), RTSP (8554), custom control port (1300), snapshot service (6688)

This firmware/SoC combination is reused across many differently branded consumer IP cameras, so the affected surface is broader than a single product listing.

CVE Summary

Exploitation Chain

  1. Query /PSIA/Security/AAA/users unauthenticated to retrieve plaintext admin credentials (CVE-2026-51406), or skip straight to step 2.
  2. Send a crafted <SYSTEM>...</SYSTEM> payload to TCP/1300 to execute a command that resets the root account password (CVE-2026-51402).
  3. Authenticate to the always-on BusyBox telnetd (port 23) with the new root credentials to obtain a full interactive root shell (CVE-2026-51405).
  4. From the shell, harvest /app/userdata/ifcfg.wlan0 for Wi-Fi credentials and/or pivot further into the local network (CVE-2026-51407). Each step individually requires no authentication except the final Telnet login, which is trivially satisfied by the attacker's own password reset in step 2, meaning the full chain from network access to root shell requires no valid credentials at any point.

Repository Structure

root@kitploit:~
.
├── README.md
├── advisory/
│   └── fullhan-ipcam-advisory.txt   # Exploit-DB style advisory + PoC
├── poc/
│   ├── command_payloads.txt         # Fun abuse commands (play audio, reboot camera)
│   ├── data_extraction.py           # Unauthenticated read PoC (users, device info, snapshot)
│   └── full_chain.py                # RCE -> root password reset -> telnet shell chain
├── metasploit/
│   ├── command_payloads.txt         # Fun abuse commands (play audio, reboot camera)
│   ├── data_extraction.py           # Unauthenticated read PoC (users, device info, snapshot)
│   └── full_chain.py                # RCE -> root password reset -> telnet shell chain

Impact

An attacker on the local network or adjacent segment (or with internet exposure, if the device is port-forwarded) can obtain full root access to the device, view the live camera feed, exfiltrate the victim's Wi-Fi credentials, and use the compromised device as a pivot point into the victim's internal network — all without needing any valid credentials.

Disclosure Timeline

DateEvent
31-03-2026Vulnerabilities discovered
01-04-2026Vendor contacted
NONEVendor response

Responsible Use

This research was conducted against a device owned by the author. The code in this repository is provided for defensive research, detection engineering, and authorized testing only. Do not use it against devices you do not own or lack explicit authorization to test.

Credits

Discovered and reported by Amir Aliu

License

Free to use for personal research, education, and authorized security testing. Commercial use, resale, or redistribution as part of a paid product/service is not permitted without written permission.

Download Tool
CVE IDFindingCVSS 3.1CWE
CVE-2026-51402Unauthenticated blind OS command injection via custom <SYSTEM> protocol on TCP/13008.8CWE-78
CVE-2026-51403Unauthenticated read/write access to PSIA API endpoints8.8CWE-306, CWE-284
CVE-2026-51404Unauthenticated live snapshot disclosure via TCP/66886.5CWE-200
CVE-2026-51405BusyBox Telnet enabled by default, exposing root shell once credentials are obtained8.8CWE-287
CVE-2026-51406Plaintext credential disclosure via /PSIA/Security/AAA/users6.5CWE-522
CVE-2026-51407Plaintext Wi-Fi credentials stored in /app/userdata/ifcfg.wlan07.4CWE-319
16-07-2026
CVEs reserved
30-06-2026Public disclosure (blog post)