A Python tool to automate the extraction of direct download links from fuckingfast.co landing pages. Ideal for batch processing large lists of URLs (e.g., game repacks). Now with Cloudflare bypass support via curl_cffi.
- Cloudflare Bypass: Uses
curl_cffito impersonate a real browser and bypass bot protection. - Batch Processing: Reads multiple URLs from a text file.
- Direct Link Extraction: Automatically finds the hidden
https://dl.fuckingfast.co/dl/...URL. - Auto-Retry: Prompts you to retry any failed links after each run.
- Output Export: Saves all direct links to
direct_links.txtfor use in JDownloader 2 or any download manager.
- Python 3.8+
curl_cffiPython package (installed via the setup scripts below)
- Download from python.org.
⚠️ Check "Add Python to PATH" before clicking Install Now.- Verify in Command Prompt:
python --version
sudo apt update && sudo apt install python3 python3-pipbrew install pythongit clone https://github.com/md-ward/fuckingfast-extractor.git
cd fuckingfast-extractor
chmod +x install.sh run.sh
./install.sh- Download or clone this repository.
- Double-click
install.bat— it will install the requiredcurl_cffipackage automatically.
You only need to run the install script once.
Create (or edit) links.txt in the project folder and paste your fuckingfast.co URLs — one per line.
https://fuckingfast.co/tu498dk1d7ab#Part1
https://fuckingfast.co/o4hij09fmd3g#Part2
| Platform | Command |
|---|---|
| Windows (easy) | Double-click run.bat |
| Linux / macOS / Git Bash | ./run.sh |
| Any (Python directly) | python extract_links.py |
| Pass URLs directly | python extract_links.py <url1> <url2> |
Successfully extracted links are saved to direct_links.txt. Import this file directly into JDownloader 2 or any other download manager.
If you used a previous version of this tool, follow these steps to upgrade:
-
Pull the latest code:
git pull
(Or re-download the repository if you didn't use git.)
-
Install the new dependency (
curl_cffireplaces the old systemcurlapproach):- Windows: Double-click
install.bat - Linux/macOS: Run
./install.sh - Or manually:
pip install curl_cffi
- Windows: Double-click
-
That's it. Your existing
links.txtworks as-is. No changes to your workflow needed.
Why the change? The site now uses Cloudflare protection that blocks plain
curlrequests. The newcurl_cffilibrary impersonates a real Chrome browser to reliably bypass this.
MIT License — See LICENSE for details.
This tool is for educational purposes only. Always respect the Terms of Service of the websites you interact with.