Humanize Image

Security checks across malware telemetry and agentic risk

Overview

This skill is explicitly designed to hide AI-generated image provenance from detectors and can permanently strip metadata from original files.

Avoid installing this for normal use. Its central purpose is to remove AI provenance and bypass detectors, and its scripts can alter original files. If you must examine it for authorized research, use copies only, run it in an isolated environment, and preserve original images and metadata.

VirusTotal

66/66 vendors flagged this skill as clean.

View on VirusTotal

Risk analysis

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.

#
ASI09: Human-Agent Trust Exploitation
High
What this means

The skill can help present AI-generated images as less detectable or more human-origin, which may mislead people or platforms and violate terms of service or laws around provenance/watermarks.

Why it was flagged

The workflow is measured by evading AI detectors and gives steps to improve evasion, showing a primary anti-provenance/anti-detection purpose.

Skill content
**Success rate** = percentage bypassing Hive/Illuminarty/AI or Not detectors. ... If still detected, try: Increase strength ... Process twice
Recommendation

Do not use this for public posting, platform evasion, impersonation, or misleading content; only handle it in clearly authorized research or testing contexts.

#
ASI02: Tool Misuse and Exploitation
Medium
What this means

Original image metadata such as camera data, timestamps, location, copyright, and provenance labels may be irreversibly removed, even when the user expects only a new output file.

Why it was flagged

The Python processor calls ExifTool with overwrite_original on the input path before saving the output, so original source metadata can be permanently erased.

Skill content
subprocess.run(["exiftool", "-all=", "-overwrite_original", str(filepath)], ...) ... self.remove_metadata()
Recommendation

Run only on copies in a sandbox, and change the tool to copy inputs first and require explicit confirmation before modifying originals.

#
ASI04: Agentic Supply Chain Vulnerabilities
Low
What this means

Installing the dependencies may require elevated privileges and trust in local package sources.

Why it was flagged

The skill relies on manual system and Python package installation; this is purpose-aligned for image processing but changes the local environment and is not captured by a registry install spec.

Skill content
sudo apt install -y imagemagick libimage-exiftool-perl python3 python3-pip
pip3 install Pillow numpy
Recommendation

Review dependency sources, avoid blindly running privileged commands, and prefer a contained environment such as a VM or container.