Skill flagged — suspicious patterns detected

ClawHub Security flagged this skill as suspicious. Review the scan results before using.

Instagram Downloader

v1.0.1

交互式下载 Instagram 用户内容(帖子/Reels/头像)。首次使用时会依次询问用户名、下载目录、Cookie路径、代理地址。

0· 108·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for zitao666/instagram-downloader.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Instagram Downloader" (zitao666/instagram-downloader) from ClawHub.
Skill page: https://clawhub.ai/zitao666/instagram-downloader
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install instagram-downloader

ClawHub CLI

Package manager switcher

npx clawhub@latest install instagram-downloader
Security Scan
VirusTotalVirusTotal
Suspicious
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The skill's name and description match the instructions: it asks for username, download path, cookie file and proxy and runs gallery-dl. Minor inconsistency: SKILL.md expects gallery-dl (and optionally yt-dlp) to be available, but the registry metadata lists no required binaries — the runtime will fail or produce confusing errors if those tools are not installed.
Instruction Scope
Instructions stay within the stated purpose: collect parameters and run gallery-dl with user-supplied cookie file and proxy. The skill also gives methods to obtain Netscape-format cookies (including using yt-dlp or copying sessionid from browser). These instruct the user to surface sensitive session tokens, which is functionally necessary but privacy-sensitive.
Install Mechanism
This is an instruction-only skill with no install spec or code files — lowest install risk. Nothing is downloaded or written by the skill itself according to the manifest.
Credentials
No environment variables or credentials are requested, which is consistent. However, the skill explicitly asks for a cookie file (containing sessionid and csrftoken) or for the user to export sessionid values — these are effectively account credentials and should be treated as sensitive. Requesting them is proportionate to the described functionality but presents privacy/security risk if mishandled.
Persistence & Privilege
always is false and there is no install-time persistence or modification of other skills/config. The skill will run commands when invoked; autonomous invocation is allowed by platform default but is not combined with other concerning privileges here.
Assessment
This instruction-only skill is coherent for downloading Instagram content, but take these precautions before installing or running it: 1) Ensure gallery-dl (and yt-dlp if you plan to use the cookie-export method) are installed on the host — the skill expects those binaries but does not declare them. 2) The cookie file (sessionid and csrftoken) grants access to your Instagram session; never paste raw session tokens into chat or share them with untrusted parties. Prefer pointing the agent to a local cookie file path rather than typing token values. 3) Review the exact gallery-dl command the agent will run before execution (especially any --no-check-certificate advice). 4) If possible, use a throwaway/limited Instagram account for bulk downloads. 5) If you do not trust the environment or the skill author, do not provide session cookies or run the command. If you want a more conservative setup, install and run gallery-dl yourself locally following the skill's instructions rather than letting the agent execute commands.

Like a lobster shell, security has layers — review code before you run it.

latestvk973cgrxf1nghgq3jyeq75mdjs83vyty
108downloads
0stars
2versions
Updated 4w ago
v1.0.1
MIT-0

Instagram Downloader Skill

使用流程

第一次使用:必须先询问用户以下 4 个参数

按顺序询问,不要跳步:

1️⃣ Instagram 用户名是什么?(不含 @)
2️⃣ 下载到哪个目录?(完整路径,如 D:\Downloads\Instagram)
3️⃣ Cookie 文件路径?(Netscape 格式,如 C:\Users\xxx\cookies_instagram.txt)
4️⃣ 代理地址?(可选,格式 http://host:port,留空则不使用代理)

收集完所有参数后,执行下载命令。

执行命令模板

gallery-dl --proxy "<代理地址>" --cookies "<cookie文件路径>" -D "<目标目录>" "https://www.instagram.com/<用户名>/"

注意:代理地址如果用户留空,则去掉 --proxy 参数

参数获取方式

1. Instagram 用户名

  • 用户输入即可,例如:fafa.0816
  • 主页链接可能是 https://www.instagram.com/fafa.0816/

2. 下载目录

  • 必须是完整绝对路径
  • Windows 示例:D:\Instagram\fafa.0816
  • Linux/Mac 示例:/home/user/downloads/instagram
  • gallery-dl 会在此目录下创建 instagram/<用户名>/ 子目录

3. Cookie 文件路径(Netscape 格式)

方法 A:用 yt-dlp 从 Chrome 导出

yt-dlp --cookies-from-browser chrome --cookies "cookies_instagram.txt" "https://www.instagram.com/"

然后把 cookies_instagram.txt 路径告诉 agent。

方法 B:手动获取 sessionid

  1. 浏览器登录 Instagram
  2. F12 → Application → Cookies → 找 sessionid
  3. 写成 cookies_instagram.txt
# Netscape HTTP Cookie File
.instagram.com	TRUE	/	FALSE	1800000000	sessionid	你的sessionid值
.instagram.com	TRUE	/	TRUE	1800000000	csrftoken	你的csrftoken值

4. 代理地址(可选)

  • 格式:http://127.0.0.1:7890
  • 如果用户不需要代理,直接留空

下载类型说明

URL 类型下载内容命令后缀
https://www.instagram.com/<用户>/全部(帖子+reels+头像)不加后缀
https://www.instagram.com/<用户>/posts/仅图片帖子/posts/
https://www.instagram.com/<用户>/reels/仅视频/reels/
https://www.instagram.com/<用户>/avatar/头像/avatar/
https://www.instagram.com/p/<帖子ID>/单个帖子直接链接

完整执行示例

假设用户回答:

  • 用户名:fafa.0816
  • 下载目录:D:\Downloads
  • Cookie:C:\Users\栗子\cookies_instagram.txt
  • 代理:http://127.0.0.1:7890

执行:

gallery-dl --proxy "http://127.0.0.1:7890" --cookies "C:\Users\栗子\cookies_instagram.txt" -D "D:\Downloads" "https://www.instagram.com/fafa.0816/"

输出会写入 D:\Downloads\instagram\fafa.0816\

工具对比

工具适用场景注意
gallery-dl首选,稳定支持 Instagram 全部类型首选
yt-dlp备选Instagram 支持已标为 broken

常见错误处理

错误原因解决
401 UnauthorizedCookie 过期重新获取 sessionid
404 Not Found用户不存在或私密确认用户名正确
HttpError 无权限Cookie 缺少必要字段确保有 sessionidcsrftoken 两行
SSL 警告代理证书问题--no-check-certificate(不推荐)

隐私占位符清单

发布前检查:

  • 代理地址 → 用 <代理地址> 占位
  • Cookie 路径 → 用 <cookie文件路径> 占位
  • 下载目录 → 用 <目标目录> 占位
  • 用户名 → 用 <用户名> 占位

Comments

Loading comments...