Skip to content

Instantly share code, notes, and snippets.

@hlorand
Last active January 3, 2026 21:18
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
@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.

@Qee2
Copy link

Qee2 commented Nov 5, 2025

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

https://lf16-capcut.faceulv.com/obj is the same in both urls above and download url of online official installer.

@luislobo9b
Copy link

I copied one of those links you sent and replaced the number with the latest version listed on the site
https://capcut.en.uptodown.com/windows

Now: 7.5.0.3053

So it turned out like this:
https://lf16-capcut.faceulv.com/obj/capcutpc-packages-us/packages/CapCut_7_5_0_3053_capcutpc_0_creatortool.exe

@wan23smile
Copy link

wan23smile commented Dec 26, 2025

I tried with the current version doesn't work
https://lf16-capcut.faceulv.com/obj/capcutpc-packages-us/packages/CapCut_7_7_0_3143_capcutpc_0_creatortool.exe

Now: 7.7.0.3143
Previous one also doesn't work: 7.6.0.3123
Last one that is working: 7.5.0.3053

@luislobo9b
Copy link

@wan23smile the link didn’t work for me either. So my only alternative was to do this manually.

For this, you’ll need a Windows computer (or a Windows virtual machine) with internet access. Then follow these steps:

  1. Download the standard CapCut installer.
  2. Open it and start the installation. At this point, it will begin downloading the actual package.
  3. Go to the folder C:\Users\{USERNAME}\AppData\Local.
    It helps to sort the items by Date modified (newest first) so it’s easier to find.
  4. You should see a folder with a name similar to app_package_e69a6da048. Open it and you’ll find an .exe file without an icon, since the download is still in progress.
  5. When the download progress reaches about 95%, the download itself is finished. The remaining 5% is the installation step. Once the installation completes, the installer will likely delete this file, so you need to be quick.
  6. Press F5 to refresh the folder. If the .exe file (in my case app_package_e69a6da048.exe) now shows an icon, that confirms the download is complete.
  7. Immediately copy and paste this .exe file to another folder before it gets deleted.
  8. Done. This file can now be used on another machine as an offline installer.

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