Skip to content

Instantly share code, notes, and snippets.

@hlorand
Last active September 17, 2025 16:40
Show Gist options
  • Save hlorand/60307a80c4c82062b0d5eb9af959aada to your computer and use it in GitHub Desktop.
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.
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
@ratatouillex
Copy link

How could this be trusted? This is an unofficial hacked version of capcut full of malware?

@hlorand
Copy link
Author

hlorand commented Aug 12, 2025

@ratatouillex No, these are the official links. Back in 2023–2024, it was linked directly on the CapCut website.

For example, inspect the download button's URL in this archive snapshot — you can see it's faceulv.com, some kind of CDN: https://web.archive.org/web/20230307002541/https://www.capcut.com/

I just collected it in this gist, along with the script above, because, unfortunately, they removed the offline installer download option.

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