Advertisement
xosski

Mage Hand

Mar 21st, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # Remote script URL
  4. URL="https://pastebin.com/raw/L1Q7uktU"
  5.  
  6. # Temporary file to store downloaded commands
  7. TMP_FILE=$(mktemp /tmp/remote_commands.XXXXXX.sh)
  8.  
  9. # Function to clean up temp file on exit
  10. cleanup() {
  11. [ -f "$TMP_FILE" ] && rm -f "$TMP_FILE"
  12. }
  13. trap cleanup EXIT
  14.  
  15. # Download commands
  16. echo "[*] Fetching commands from: $URL"
  17. if ! curl -fsSL "$URL" -o "$TMP_FILE"; then
  18. echo "[!] Failed to download commands from the URL."
  19. exit 1
  20. fi
  21.  
  22. # Display the downloaded commands
  23. echo
  24. echo "The following commands were downloaded:"
  25. echo "----------------------------------------"
  26. cat "$TMP_FILE"
  27. echo "----------------------------------------"
  28. echo
  29.  
  30. # Ask for confirmation
  31. read -rp "Do you want to execute these commands? (yes/no): " CONFIRM
  32.  
  33. # Normalize input
  34. CONFIRM=$(echo "$CONFIRM" | tr '[:upper:]' '[:lower:]' | xargs)
  35.  
  36. if [[ "$CONFIRM" != "yes" ]]; then
  37. echo "[*] Execution cancelled by the user."
  38. echo "[*] The commands are saved at: $TMP_FILE (will be deleted after script ends)"
  39. exit 0
  40. fi
  41.  
  42. # Make sure it's executable
  43. chmod +x "$TMP_FILE"
  44.  
  45. # Execute the commands
  46. echo "[*] Executing downloaded commands..."
  47. bash "$TMP_FILE"
  48.  
  49. # Check result
  50. if [ $? -eq 0 ]; then
  51. echo "[✓] Commands executed successfully."
  52. else
  53. echo "[!] An error occurred while executing the commands."
  54. exit 1
  55. fi
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement