Advertisement
hackerfree

Riptool

Mar 9th, 2018
480
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.51 KB | None | 0 0
  1. #!/bin/bash
  2. #BY KISSKOOL
  3. #https://riptool.blogspot.fr
  4. #Date:2/03/2018                          
  5. #JE NE SUIS PAS RESPONSABLE DE VOS ACTES.    
  6. #I AM NOT RESPONSIBLE FOR YOUR ACTS.
  7. #--------------------------------------------------------------------------------------------------------------------------------#
  8. echo -e "\033[31m                                                  
  9.    ____  ________  __________  ____  __
  10.   / __ \/  _/ __ \/_  __/ __ \/ __ \/ /
  11.  / /_/ // // /_/ / / / / / / / / / / /  
  12. / _, _// // ____/ / / / /_/ / /_/ / /___
  13. /_/ |_/___/_/     /_/  \____/\____/_____/
  14.                                        
  15.                                                                      
  16. \033[0m"
  17. PS3='Choose a command to execute:'
  18. options=("RIPIMAGE" "RIPMP3" "RIPTORRENT" "RIPVIDEO" "RIPYOUTUBE" "RIPFILES" "INSTALLATION" "QUIT")
  19. select opt in "${options[@]}"
  20. do                                      
  21.  
  22. case $opt in
  23.        "RIPIMAGE")
  24.            echo
  25.            echo "Cette commande extrait les images
  26. This command extracts the images"
  27.            echo -e "\033[32mURLIMAGE"
  28.            read http;
  29.            wget --no-directories --content-disposition --user-agent=Firefox --restrict-file-names=nocontrol \ -e robots=off -A .jpg,.gif,.png,.svg -r -P ./RIPIMAGE $http;;
  30.        "RIPMP3")
  31.            echo
  32.            echo "Cette commande extrait les mp3
  33. This command extracts the mp3"
  34.            echo -e "\033[32mURLMP3"
  35.            read http;
  36.            wget --no-directories --content-disposition --user-agent=Firefox --restrict-file-names=nocontrol \ -e robots=off -A .mp3 -r -P ./RIPMP3 $http;;
  37.        "RIPTORRENT")
  38.            echo
  39.            echo "Cette commande extrait les torrents
  40. This command extracts the torrents"
  41.            echo -e "\033[32mURLTORRENT"
  42.            read http;
  43.            wget --no-directories --content-disposition --user-agent=Firefox --restrict-file-names=nocontrol \ -e robots=off -A .torrent -r -P ./RIPTORRENT $http;;
  44.        "RIPVIDEO")
  45.            echo
  46.            echo "Cette commande extrait les videos
  47. This command extracts the videos"
  48.            echo -e "\033[32mURLVIDEO"
  49.            read http;
  50.            wget --no-directories --content-disposition --user-agent=Firefox --restrict-file-names=nocontrol \ -e robots=off -A .avi,.wmv,.mov,.mkv,.mpeg,.flv -r -P ./RIPVIDEO $http;;
  51.        "RIPYOUTUBE")
  52.            echo
  53.            echo "Cette commande va convertir les videos youtube en mp3
  54. This command will convert youtube videos to mp3"
  55.            echo -e "\033[32mURLYOUTUBE"
  56.            read http;
  57.            youtube-dl -cit --extract-audio --audio-format mp3 $http;;
  58.            
  59.       "RIPFILES")
  60.            echo
  61.            echo "Cette commande extrait les fichiers
  62. This command extracts the files"
  63.            echo -e "\033[32mRIPFILES"
  64.            read http;
  65.            wget --no-directories --content-disposition --user-agent=Firefox --restrict-file-names=nocontrol \ -e robots=off -A .txt,.pdf -r -P ./RIPFILES $http;;
  66.  
  67.        "INSTALLATION")
  68.            echo
  69.            echo -e "\033[32mINSTALLATION"
  70.            read -p "Install youtube-dl press Enter to continue..."
  71.            sudo bash -c "add-apt-repository ppa:rvm/smplayer -y && apt-get update && apt-get install python-pip && apt-get install youtube-dl && apt-get install ffmpeg";;
  72.      
  73.         "QUIT")
  74.             break;;
  75.  
  76.         *) echo invalid option;;
  77.     esac
  78. done
  79.  
  80. #------------------------------------------------------------------------------------------------------------------------------------
  81. Je recherche 1 ou 2 personnes pour m'aider développer riptool pour les personnes intéressées me contacter sur :[email protected]
  82.  
  83. I'm looking for 1 or 2 people to help me develop riptool for people interested contact me on:kiss-kool@gmx.fr
  84.  
  85. RIPTOOL INSTALLATION
  86. Copier coller le dossier riptool dans le dossier opt en root
  87. Copy paste riptool folder in opt as root
  88.  
  89. OPTIONS
  90. OPENVPN
  91. RIPIMAGE: pour extrait les images jpg,gif,png,svg
  92. RIPMP3: pour extrait les mp3
  93. RIPTORRENT: pour extrait les torrents
  94. RIPVIDEO: pour extrait les videos avi,wmv,mov,mkv,mpeg,flv
  95. RIPYOUTUBE: pour convertir les videos youtube en mp3
  96. RIPFILES: pour extrait les fichiers txt,pdf
  97. INSTALLATION: installeur youtube-dl obligatoire pour faire fonctionner ripyoutube installation se fera automatiquement une fois l'option choisie
  98.  
  99. UPDATE RIPTOOL
  100. OPENVPN:09/03/2018
  101. ------------------------------------------------------------------------------------------------------------------------------------#
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement