SShortSingh.
Back to feed

ZoomEye Finds 2.7 Million Home Assistant Instances Exposed on Public Internet

0
·1 views

A ZoomEye fingerprint search conducted on September 23, 2026, identified approximately 2.71 million publicly reachable Home Assistant installations, highlighting the scale of consumer automation platforms exposed beyond their intended private-network boundaries. Home Assistant is a local-first smart home platform designed to operate without internet connectivity, typically running on a small in-home device managing lights, locks, cameras, and thermostats. Security concerns arise because many installations may lack multi-factor authentication or rely on simple port forwarding rather than a VPN or managed tunnel, leaving login interfaces directly accessible from the internet. Long-lived API access tokens, which carry no built-in expiry, compound the risk as they are rarely audited after initial setup, and installed add-ons can extend attacker reach to the underlying host operating system. Experts recommend verifying whether installations appear in public indexes, enforcing authenticated access paths, enabling multi-factor authentication, and regularly reviewing issued tokens and trusted-network configurations.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Dev Team Learns Hard Lessons After Building Multi-Repo Project with Git Submodules

A development team designed their project around five separate Git repositories and submodules from day one, prioritizing CI isolation, access control, and clean history. In practice, the setup demanded strict two-step push discipline — once inside the submodule and once in the parent repo — and forgetting either step caused silent failures that only surfaced during fresh CI checkouts. On one occasion, three submodules simultaneously had unpushed local commits, while a fourth required an interactive rebase to recover. The core 'engine' repository also caused CI conflicts by behaving differently as a standalone repo versus as a nested submodule, breaking path-resolution logic and missing cross-repo dependencies. These recurring failures pushed the team to move beyond one-off patches and establish a shared convention for managing the dual-context build environment.

0
ProgrammingDEV Community ·

Python Data Types Explained: Practical Guide to int, list, dict, and More

Python uses distinct data types — including integers, floats, strings, lists, tuples, dictionaries, sets, booleans, and None — to categorize and manage different kinds of values in a program. Each type serves a specific purpose: lists are mutable collections, while tuples are immutable; dictionaries store key-value pairs useful for structured data like JSON; and sets automatically eliminate duplicate values. Floats can produce minor precision issues due to internal binary representation, which matters in calculations requiring exactness. Booleans represent True or False and are widely used in conditions and data filtering, while None signals the absence of a value. Understanding these data types is foundational for working with functions, APIs, databases, and data analysis in Python.

0
ProgrammingDEV Community ·

AI Boosts Coding Productivity but May Shortcut the Learning Process

A developer perspective published on DEV Community argues that while AI tools have significantly accelerated coding workflows, they risk allowing developers to become productive before they become genuinely skilled. The author draws a key distinction between asking AI to explain an error versus simply asking it to fix one, noting that the latter can eliminate the struggle that builds deeper understanding. Using a hypothetical comparison, the piece illustrates how a developer who spends hours working through a problem may retain more durable knowledge than one who resolves it in minutes via AI. The author is not calling for abandoning AI tools, but rather urging developers to distinguish between unnecessary struggle worth skipping and productive struggle worth preserving. The core concern is that modern development increasingly rewards task completion, and AI excels at completion — potentially masking gaps in foundational understanding.

0
ProgrammingDEV Community ·

Developers Build Graph-Based Agentic Fraud Investigation Tool Using TigerGraph

A team participating in the TigerGraph × HHGoa 2026 hackathon challenge built an agentic fraud investigation system using TigerGraph Savanna as the graph layer. The solution organizes transaction, customer, and card entities through interconnected relationships to surface fraud-related evidence. A custom Python agent applies rule-based fraud pattern detection and heuristic risk scoring to generate structured investigation decisions for each case. The system successfully processed all 20 benchmark cases, from HHG-001 to HHG-020, with results stored as individual JSON files. Future development plans include full TigerGraph MCP integration, LLM-assisted reasoning, and more advanced fraud detection models.