Advertisement
hackerfree

Riptool

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