PhantomBuster

PassAudited by ClawScan on May 1, 2026.

Overview

This is a straightforward PhantomBuster API CLI, but it needs an API key and can start or stop automations and retrieve scraped result data.

Install this only if you want the agent to operate your PhantomBuster workspace. Protect the API key, double-check agent IDs and launch arguments, and handle fetched results as sensitive data.

Findings (4)

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.

What this means

A mistaken or overly broad request could run the wrong PhantomBuster automation or stop a running job.

Why it was flagged

The skill exposes commands to start and stop remote PhantomBuster agents and pass run arguments. This matches the stated purpose, but it can trigger external automation and consume account resources.

Skill content
python3 pb.py launch <agent-id> --argument '{"search": "CEO fintech"}' ... python3 pb.py abort <agent-id>
Recommendation

Use explicit agent IDs and review launch arguments before running or aborting automations.

What this means

Anyone with access to this API key could control the connected PhantomBuster workspace within the key's permissions.

Why it was flagged

The skill requires a PhantomBuster API key to perform account actions. This is expected for the integration, but the registry metadata does not declare a required credential.

Skill content
export PHANTOMBUSTER_API_KEY=your-api-key-here
Recommendation

Provide the key only in a trusted environment, rotate it if exposed, and use the least-privileged PhantomBuster access available.

What this means

Fetched results may contain sensitive lead/profile information or untrusted scraped content that the agent could reuse in later work.

Why it was flagged

The skill can bring PhantomBuster result data, including scraped lead or social profile data, into downstream workflows. This is purpose-aligned but may involve personal or untrusted external data.

Skill content
Download the actual result data (CSV) from an agent's latest run ... perfect for integrating PhantomBuster data into your workflows.
Recommendation

Treat fetched outputs as sensitive and untrusted; review them before sharing, storing, or using them to drive further automated actions.

What this means

It may be harder to verify who maintains the skill or compare it against an upstream project.

Why it was flagged

The registry does not provide a verified source or homepage for the skill. The bundled code is readable and purpose-aligned, so this is a provenance note rather than a behavior concern.

Skill content
Source: unknown; Homepage: none
Recommendation

Review the included pb.py before use and prefer verified sources for account-control integrations.