Advertisement
Guest User

reclaim_generator.sh

a guest
Jan 29th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.39 KB | None | 0 0
  1. #!/bin/bash
  2. #File: reclaim_generator.sh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            
  3. hash=$(echo -e "##############################################")
  4. param=$(echo -e "Parameter: btc (btc)\n    Type: btc\n    Title: btc >= btc btc)\n    Payload: (btc))(btc)) AND (\n---\n[root@enterprise]# btc btc\n---\n")
  5. function show_options {
  6.         echo -e "
  7.        url: $VULNERABLE
  8.        requested amount: $BTC
  9.        receiving address: $ADRSBTC
  10.        langage $LANGAGE"
  11. }
  12.  
  13. function en {
  14. echo -e "Dear $VULNERABLE!
  15. $hash
  16. A vulnerability has been discovered on $VULNERABLE
  17. You must pay a minimum of $BTC BTC to the following address:
  18. $ADRSBTC
  19. to know the "POC" ...
  20. $param
  21. $hash
  22. So...
  23. Here is the list of your databases
  24. [...]
  25. $hash
  26. if no response within 48 hours your vulnerability will be sent to mr.inj3ct0r@gmail.com"
  27. }
  28.  
  29. function fr {
  30. echo -e "Cher $VULNERABLE!
  31. $hash
  32. Une vulnérabilité a été découverte sur $VULNERABLE
  33. Vous devez payer un minimum de $BTC BTC à l'adresse suivante:
  34. $ADRSBTC
  35. pour connaître le "POC" ...
  36. $param
  37. $hash
  38. Aussi...
  39. Voici la liste de vos bases de données
  40. [...]
  41. $hash
  42. si aucune réponse dans les 48h votre vulnerabilité sera envoyé a mr.inj3ct0r@gmail.com"
  43. }
  44.  
  45. function it {
  46. echo -e "Caro $VULNERABLE!
  47. $hash
  48. Una vulnerabilità è stata scoperta su $VULNERABLE
  49. Debe pagar un mínimo de $BTC BTC a la siguiente dirección:
  50. $ADRSBTC
  51. per conoscere il "POC" ...
  52. $param
  53. $hash
  54. Anche...
  55. Ecco l'elenco dei tuoi database
  56. [...]
  57. $hash
  58. in assenza di risposta entro 48 ore, la vulnerabilità verrà inviata a mr.inj3ct0r@gmail.com"
  59. }
  60.  
  61.  
  62. function es {
  63. echo -e "Estimado $VULNERABLE!
  64. $hash
  65. Una vulnerabilidad fue encontrada en $VULNERABLE
  66. Debe pagar un mínimo de $BTC BTC a la siguiente dirección:
  67. $ADRSBTC
  68. para saber el "POC" ...
  69. $param
  70. $hash
  71. También...
  72. Aquí está la lista de sus bases de datos
  73. [...]
  74. $hash
  75. Si no hay respuesta en 48 horas, su vulnerabilidad se enviará a mr.inj3ct0r@gmail.com."
  76. }
  77.  
  78. function de {
  79. echo -e "Sehr geehrter $VULNERABLE!
  80. $hash
  81. Es wurde eine Schwachstelle in $VULNERABLE ausgemacht
  82. Sie müssen mindestens $BTC BTC an folgende Adresse bezahlen:
  83. $ADRSBTC
  84. den "POC" kennen ...
  85. $param
  86. $hash
  87. So...
  88. Hier ist die Liste Ihrer Datenbanken
  89. [...]
  90. $hash
  91. Wenn Sie innerhalb von 48 Stunden keine Antwort erhalten, wird Ihre Sicherheitsanfälligkeit an mr.inj3ct0r@gmail.com gesendet"
  92. }
  93.  
  94.  
  95.  
  96. function main {
  97. read -p "Enter url: " VULNERABLE
  98. clear
  99. echo -e "set url: $VULNERABLE"
  100. read -p "Enter requested amount BTC: " BTC
  101. clear
  102. echo -e "set requested amount: $BTC"
  103. read -p "Enter receiving address BTC: " ADRSBTC
  104. clear
  105. echo -e "set receiving address: $ADRSBTC"
  106. read -p "Enter langage [en|fr|es|it|de]: " LANGUAGE
  107. clear
  108. show_options
  109. if [ $LANGUAGE == "en" ];
  110. then
  111. en
  112. elif [ $LANGUAGE == "fr" ];
  113. then
  114. fr
  115. elif [ $LANGUAGE == "es" ];
  116. then
  117. es
  118. elif [ $LANGUAGE == "it" ];
  119. then
  120. it
  121. elif [ $LANGUAGE == "de" ];
  122. then
  123. de
  124. fi
  125.  
  126. }
  127. main
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement