Skip to content

Instantly share code, notes, and snippets.

@ReginaBeahm
Created July 26, 2025 20:58
Show Gist options
  • Select an option

  • Save ReginaBeahm/f620deef9db96d9d45a23743897ceb2e to your computer and use it in GitHub Desktop.

Select an option

Save ReginaBeahm/f620deef9db96d9d45a23743897ceb2e to your computer and use it in GitHub Desktop.
Get Direct Download Link from Buzzheavier Mirror
from requests import get
def get_buzzheavier_url(bh_link):
fragment_split = bh_link.split("#")
bh_link = fragment_split[0]
headers = {
"accept": "*/*",
"accept-language": "en-GB,en;q=0.5",
"accept-encoding": "gzip, deflate, br, zstd",
"hx-request": "true",
"hx-current-url": bh_link,
"connection": "keep-alive",
"referer": bh_link
}
raw_dl_link = get(bh_link + "/download", headers = headers).headers.get("Hx-Redirect")
if (not raw_dl_link):
print(f"Failed to get direct download for {bh_link}")
return
return raw_dl_link
if (__name__ == "__main__"):
import argparse
parser = argparse.ArgumentParser()
parser.add_argument("url",
help = "the Buzzheavier URL (e.g. https://buzzheavier[.]com/r1w2t43ab3wu)")
print(get_buzzheavier_url(parser.parse_args().url))
@ReginaBeahm
Copy link
Author

Usage

get_buzzheavier_url.py [url]

Output

A flashbang.sh URL that is a direct download for the Buzzheavier-hosted file

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