Questo sito utilizza cookies solo per scopi di autenticazione sul sito e nient'altro. Nessuna informazione personale viene tracciata. Leggi l'informativa sui cookies.
Username: Password: oppure
bruteforce.rb - bruteforce.rb

bruteforce.rb

Caricato da:
Scarica il programma completo

  1. #!/usr/bin/env ruby
  2. #####################################################################
  3. #
  4. # bruteforce.rb (Generatore di serie di stringhe per bruteforce)
  5. #
  6. #
  7. # 13/12/2007 - edited by Invisigoth <njprincess_autobot@yahoo.it>"
  8. #
  9. # bruteforce.rb is distributed under the terms of the GNU General Public
  10. # License.  See http://www.gnu.org/copyleft/gpl.html
  11. #
  12. ######################################################################
  13.  
  14. str = "a"
  15. begin ARGV.first.to_i.times { puts str; str.next!} rescue Interrupt end