lorax

AdvisoryAudited by VirusTotal on Mar 23, 2026.

Overview

Type: OpenClaw Skill Name: lorax Version: 1.0.1 The 'lorax' skill bundle is a legitimate set of instructions and examples for using the Lorax toolset to build system images (ISO, QCOW2, Cloud images). The content in SKILL.md consists of standard documentation, command-line examples for tools like lorax, livemedia-creator, and virt-builder, and template configurations (Kickstart/Lorax templates). No evidence of malicious intent, data exfiltration, or harmful prompt injection was found; the high-privilege operations described are consistent with the stated purpose of OS image creation.

Findings (0)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

ConcernMedium Confidence
ASI02: Tool Misuse and Exploitation
What this means

Using the sample installer configuration as-is could wipe disks on a target machine during installation.

Why it was flagged

The example writes a Kickstart file containing an automatic 'clear all partitions' directive; if used in an installer workflow, it can erase target disks without additional per-disk confirmation shown in the artifact.

Skill content
cat > fedora-live.ks << 'EOF' ... clearpart --all --initlabel
Recommendation

Require explicit user confirmation for partitioning, document the destructive effect, and replace the example with a safer, clearly scoped disk layout.

What this means

A generated image could ship with a known root password, allowing unauthorized administrator access.

Why it was flagged

The sample sets the generated system root password to a predictable plaintext value; images built from it would have an obvious administrator credential unless changed.

Skill content
rootpw --plaintext password
Recommendation

Use a locked root account or a hashed, user-supplied password, and clearly warn users not to use the sample password in real images.

What this means

Running these commands can install software, consume disk space, and write image files on the local machine.

Why it was flagged

The visible workflow asks the user or agent to install OS packages and run local image-building commands. This is central to the stated purpose, but it can change the host environment.

Skill content
dnf install lorax lorax-templates-generic ... lorax ... livemedia-creator ... virt-builder
Recommendation

Run the skill only on an appropriate Fedora/RHEL build host or disposable VM, and review commands before granting elevated privileges.

What this means

Users may only discover missing or unsupported tools at runtime, and the agent may suggest manual setup steps on an unsuitable system.

Why it was flagged

The registry metadata does not declare the external Lorax-related tools that the SKILL instructions tell users to install and run, so automated dependency and OS suitability checks are not enforced.

Skill content
Required binaries (all must exist): none ... Install specifications: No install spec — this is an instruction-only skill.
Recommendation

Declare required binaries and Fedora/RHEL/Linux OS expectations in metadata, or clearly gate setup commands behind user confirmation.