安全客July 23, 2026🇨🇳Translated from Chinese

Efort Qizhi Demonstrates Humanoid Robots Mastering Industrial Tasks Through Universal Technology Base at WAIC 2026

At the WAIC 2026 exhibition in Shanghai, Efort Qizhi demonstrated a full-size humanoid robot navigating uneven, gravel-strewn surfaces modeled after lunar terrain. The robot approached an irregular boulder, bent down, lifted it securely with both hands and carried it several meters to a designated area.

Human Teaching Through Multi-Modal Data Collection

Visitors not only watched pre-programmed demonstrations but also tried on the HALO human skill collection suit developed by Efort Qizhi. The suit simultaneously records visual, force, tactile and language signals while operators perform tasks, allowing the system to convert human actions into training data. This approach differs from traditional robot programming that relies on fixed code written by engineers and instead focuses on distilling real human operations into general representations.

The collected data includes both successful and failed attempts to broaden generalization, combined with decades of industrial process documentation and standard operating procedures. Through a human-to-robot action transfer model, skills are mapped across humanoid robots, composite robots and industrial arms, solving the problem of data silos between different hardware configurations.

HumanGPT World Model and Complete Toolchain

Efort Qizhi developed HumanGPT, a specialized world model for embodied intelligence that differs from general large language models such as Doubao or Qwen. HumanGPT fuses data from the HALO suit with multi-modal sensor inputs to construct a virtual dynamic space where robots can plan and execute actions. The model works together with the Dayan data platform, Modou IDE and Openmind OS to form a complete technology stack from data acquisition to on-site deployment.

Chairman Dr. You Wei described the skill iceberg concept, noting that visible simple skills such as grasping and sorting represent only the tip, while the submerged portion includes complex industrial requirements such as multi-robot interaction, tightly coupled process parameters and real-time synchronization. Examples include autonomous generation of spray angle, flow rate, welding current and grinding spindle speed when performing coating, welding or polishing tasks.

Cross-Scenario Skill Transfer Demonstrated Live

During the exhibition, an Efort Qizhi humanoid robot received an unprepared task to move and install a large photovoltaic panel. Without dedicated programming or tuning for this scenario, the robot used HumanGPT and Openmind OS to identify obstacles, plan a path across uneven ground, carry the panel while its view was partially obstructed, and finally use a dexterous hand to operate a standard electric screwdriver to secure the panel with screws.

The company deliberately chose challenging, non-standard scenarios to prove genuine capability rather than relying on simplified setups. The same system has already been deployed in over 4000 factories, accumulating more than 5000 hours of continuous operation on customer production lines.

By providing a standardized universal technology base, Efort Qizhi aims to reduce repeated low-level development across the industry and enable traditional automation integrators and end users to deploy embodied intelligence solutions without deep expertise in AI algorithms or robot control.

Related articles

HabrOther

Implementing 2FA Kubernetes Access via Gateway API, Dex and MULTIDIRECTORY

A Russian cybersecurity company replaced static kubeconfig files with corporate accounts and mandatory 2FA for its Talos Linux Kubernetes clusters. The solution routes all authentication through a single FQDN using NGINX Gateway Fabric, Dex as an OIDC provider connected to MULTIDIRECTORY via LDAP, and kube-oidc-proxy for token validation and impersonation. Groups stored in the directory are passed directly into RBAC bindings, eliminating manual certificate management. A lightweight Python service dynamically generates kubeconfig files that contain no secrets. The team documented several Gateway API migration pitfalls including namespace route restrictions and BackendTLSPolicy hostname validation. The approach keeps the entire configuration in Git and avoids modifying kube-apiserver flags.

AntiMalwareOther

Windows File System Tunneling Preserves Old File Metadata for Legacy Compatibility

Microsoft has clarified that Windows sometimes assigns creation dates from deleted files to new ones due to a long-standing mechanism called File System Tunneling. The feature keeps metadata in a short-term cache for about 15 seconds after a file is deleted or renamed. If a new file with the same name is created quickly in the same folder, it inherits the previous file's timestamps and short-to-long name mappings. This behavior exists to support safe saving patterns used by many applications and to maintain compatibility with old DOS-era 8.3 filename formats. The actual file content is never restored, only the metadata. The cache is temporary and clears over time, so the effect does not occur with files deleted long ago. The explanation came after users noticed unexpected dates in Windows Explorer and questioned whether it was a bug.

HabrOther

Amazon Confirms Irrecoverable Data Loss in UAE and Bahrain Data Centers After Drone Attacks

Amazon Web Services has officially confirmed that data stored in specific availability zones within its Middle East regions was permanently destroyed following physical attacks on data centers in the UAE and Bahrain. The incidents began on March 1 and continued through April and July, damaging infrastructure tied to AI development projects. In the UAE region mec1, only zone mec1-az2 was completely destroyed with no external backups, while mec1-az3 suffered severe damage and mec1-az1 remained operational but overloaded. All three zones in the Bahrain region me-south-1 were rendered inoperable. AWS had spent six months attempting recovery before issuing the final statement on September 15, 2026, and has advised customers to migrate workloads to unaffected regions. The event highlights growing risks to data from physical-world attacks beyond traditional network threats.

HabrOther

Bots Overload OT Commerce Store on OT Box, Spike Paid OTAPI Calls Mistaken for DDoS Attack

An online store running OT Commerce experienced CPU loads reaching 98-100% and a 6-7x increase in paid OTAPI calls over three days due to automated bot traffic rather than a traditional DDoS. The site owner had already deployed a paid anti-bot module on the VPS, yet behavioral bots continued to bypass protections and force expensive calls to the external OTAPI platform for product data from Taobao, Tmall, 1688 and other marketplaces. Traffic analysis after switching to the CRONARMOR WAF revealed that 41.9% of page requests were automated, with 99.3% of early-stage automation blocked before reaching the origin server. Only 0.5% were behavioral bots visible in analytics, while legitimate search crawlers accounted for 27,190 requests that were explicitly allowed. The WAF approach stopped requests at the reverse proxy layer, preventing PHP execution, database queries and OTAPI billing events on the origin. Post-deployment CPU dropped to single digits for most of the day, eliminating both performance issues and the anomalous rise in paid API usage.