Skip to content

Commit f979cad

Browse files
authored
fix: decryption url update (#261)
* Update lobster.sh * Update lobster.sh
1 parent 08ca2b8 commit f979cad

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lobster.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env sh
22

3-
LOBSTER_VERSION="4.5.0"
3+
LOBSTER_VERSION="4.5.1"
44

55
### General Variables ###
66
config_file="$HOME/.config/lobster/lobster_config.sh"
@@ -562,7 +562,7 @@ EOF
562562

563563
extract_from_json() {
564564
encrypted_video_link=$(printf "%s" "$json_data" | tr "{|}" "\n" | $sed -nE "s_.*\"sources\":\"([^\"]*)\".*_\1_p" | head -1)
565-
key=$(curl -s "https://superbillgalaxy.github.io/megacloud-keys/api.json" | $sed -n 's/.*"rabbitstream": *"\([^"]*\)".*/\1/p')
565+
key=$(curl -s "https://raw.githubusercontent.com/eatmynerds/key/refs/heads/e1/key.txt")
566566
video_link=$(printf "%s" "$encrypted_video_link" | base64 -d | openssl enc -aes-256-cbc -d -md md5 -k "$key" 2>/dev/null | $sed -nE "s_.*\"file\":\"([^\"]*)\".*_\1_p")
567567

568568
[ -n "$quality" ] && video_link=$(printf "%s" "$video_link" | $sed -e "s|/playlist.m3u8|/$quality/index.m3u8|")

0 commit comments

Comments
 (0)