Debes crear el ejecutable con persistencia, comprueba si está esa opción.
Un saludo.
Un saludo.

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ú
$sql = "SELECT username FROM vb_user
WHERE username = '{$_POST['fusername']}'
AND password = md5( concat( md5('{$_POST['fpassword']}'), salt));"; You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
Si que es un poco preocupante. no soy muy experto. pero no se siente bien cuando en un colegio particular una persona joven empieza a ser el punto a muchas sospechas de los profesores (el chico ya tiene quejas de los padres por los comentarios ya dichos antes). y en una reunión donde los profesores piensan que al tener un servidor y un encargado de sistemas ya se puede ver las conversaciones o se puede hacer "AUDITORIA" así es como lo entienden ellos y hacerles mas fácil despejar sus dudas.
Es donde a mi me ponen en su concepto de no saber mucho.
El caso es este el chico entra a una sala de computo. ahí si puedo recurrir al keyloger, pero a la hora de almuerzo en el comedor y en el horario de investigación en la biblioteca el chico usa su laptop. coge internet de la red del colegio donde yo como encargado de sistemas atravez de amarre de ARP doy a cada alumno internet con ancho de banda controlada.
Estaba pensando promover AD en mi servidor y tratar de hacer auditoria incluyendo a todos a un dominio, pero aun estoy en materia de investigación. por que hasta donde yo se no puedo ver las conversaciones de los chicos dentro de mi red.
Citarlo que pasa es que un alumno esta haciendo bulling y amenasas a un compañero. y se presume que realiza sus ventas de droga por facebook
Citarel se toma tiempo de eliminar sus conversaciones ya que sabe que le puedo hackear.
CitarUse sniffer pero solo me ataca contraseñas. yo necesito uno que me ataque las conversaciones de facebook en caliente

You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
No has probado hacer un shell finder en php? sería muy bueno..
Saludos.

You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login
Muy buena info. @You are not allowed to view links. You are not allowed to view links. Register or Login or You are not allowed to view links. Register or Login ! La verdad nunca se me dio por buscar botnets en hostings, pero con este post quizás me ponga a ver algo. jaja
Saludos!
)

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# Author: @alvarodh5 | Blackdrake
#########################################################################################################
# Shell Finder Python #
# #
# coded by Blackdrake for Underc0de #
# #
# 05/06/2015 #
# #
# Underc0de.org | twitter.com/alvarodh5 #
# #
# Run this tool as root #
#########################################################################################################
import os
class color:
PURPLE = '\033[95m'
CYAN = '\033[96m'
DARKCYAN = '\033[36m'
BLUE = '\033[94m'
GREEN = '\033[92m'
YELLOW = '\033[93m'
RED = '\033[91m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
END = '\033[0m'
print color.BLUE + " __ _ _ _ ___ _ _" + color.END
print color.BLUE + "/ _\ |__ ___| | | / __( )_ __ __| | ___ _ __ "+ color.END
print color.BLUE + "\ \| '_ \ / _ \ | | / _\ | | '_ \ / _` |/ _ \ '__|"+ color.END
print color.BLUE + "_\ \ | | | __/ | | / / | | | | | (_| | __/ | "+ color.END
print color.BLUE + "\__/_| |_|\___|_|_| \/ |_|_| |_|\__,_|\___|_| "+ color.END
print ""
print color.YELLOW + "By Blackdrake (@alvarodh5) para Underc0de" + color.END
print ""
print color.GREEN + "Asegurese que los ficheros que detecta son ilegitimos antes de eliminarlos" + color.END
print color.GREEN + "Tenga en cuenta, que dependiendo de la cantidad de ficheros que tenga en su servidor, el script tardara mas o menos" + color.END
raw_input("[Pulse INTRO para continuar]")
print color.GREEN + "Introduzca ruta del directorio donde aloja sus ficheros (Pulsa Intro para utilizar por defecto, /var/www/)" + color.END
directorio = raw_input ("")
if (directorio == ""):
directorio = "/var/www/"
else:
longitud = len(directorio) - 1
if not(directorio[longitud] == "/"):
directorio += "/"
print color.BLUE + "Buscando Shells conocidas" + color.END + "" + color.RED
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep r57 | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible R57 [PHP] --> rm -rf " $2}\'| uniq')
os.system('find ' + directorio + ' -name "*".txt -type f -print0 | xargs -0 grep r57 | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible R57 [TXT] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep c99 | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible C99 [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".txt -type f -print0 | xargs -0 grep c99 | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible C99 [TXT] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep c100 | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible C100 [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".txt -type f -print0 | xargs -0 grep c100 | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible C100 [TXT] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep c98 | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible C98 [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".txt -type f -print0 | xargs -0 grep c98 | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible C98 [TXT] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep SE3lRVER | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible WEEVELY SHELL [PHP] --> rm -rf " $2}\' | uniq')
print color.END + color.BLUE + "Otros posibles casos de Shell" + color.END + "" + color.YELLOW
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep shell | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep backdoor | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep stealth | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep exec | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep popen | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep proc_open | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep symlink | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep passthru | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep system | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
os.system('find ' + directorio + ' -name "*".php -type f -print0 | xargs -0 grep milw0rm | uniq -c | sort -u | cut -d":" -f1 | awk \'{print "Posible Shell [PHP] --> rm -rf " $2}\' | uniq')
print color.END + color.GREEN + "Escaner finalizado, siguenos! @underc0de @alvarodh5 " + color.END