Skip to content

Instantly share code, notes, and snippets.

@hlorand
Last active April 27, 2026 10:12
Show Gist options
  • Select an option

  • Save hlorand/60307a80c4c82062b0d5eb9af959aada to your computer and use it in GitHub Desktop.

Select an option

Save hlorand/60307a80c4c82062b0d5eb9af959aada to your computer and use it in GitHub Desktop.
CapCut offline installers download links
#!/bin/bash
# Searches for CapCut video editor (https://capcut.com) offline installer files.
# If links not available, use https://web.archive.org to download executable.
# PARALLEL CHECK VERSION (FASSTER)
# how many parallel curl checks at once
P=50
for va in {4..7}; do
for vb in {1..20}; do
for vc in {0..20}; do
for build in {1647..4000}; do
for ext in dmg exe; do
echo "https://lf16-capcut.faceulv.com/obj/capcutpc-packages-us/packages/CapCut_${va}_${vb}_${vc}_${build}_capcutpc_0_creatortool.${ext}"
done
done
done
done
done |
xargs -n1 -P "$P" sh -c '
url="$1"
ext="${url##*.}"
# show progress (prints to your screen)
echo "checking: $url" >&2
# check if exists
if curl -sI "$url" | grep -q "HTTP/2 200"; then
lm=$(curl -sI "$url" | grep -i "^last-modified:" | sed "s/^[Ll]ast-[Mm]odified: //")
echo "$url;$lm" >> "capcutlinks.$ext.txt"
echo "FOUND: $url" >&2
fi
' sh
#!/bin/bash
# Searches for CapCut video editor (https://capcut.com) offline installer files.
# If links not available, use https://web.archive.org to download executable.
for va in {4..5}; do
for vb in {1..20}; do
for vc in {0..20}; do
for build in {1647..3000}; do
for extension in dmg exe; do
url=$(echo "https://lf16-capcut.faceulv.com/obj/capcutpc-packages-us/packages/CapCut_"$va"_"$vb"_"$vc"_"$build"_capcutpc_0_creatortool.$extension")
echo $url
curl --head $url -s | grep "HTTP/2 200" \
&& echo -n "$url;" >> capcutlinks.$extension.txt \
&& echo $(curl --head -s $url | grep "last-modified" | sed 's/last-modified: //g') >> capcutlinks.$extension.txt
done
done
done
done
done
@lchiume
Copy link
Copy Markdown

lchiume commented Apr 6, 2026

@luislobo9b That worked! Thanks!

@adeguntoro
Copy link
Copy Markdown

hahah thanks man.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment