elhacker.net cabecera Bienvenido(a), Visitante. Por favor Ingresar o Registrarse
¿Perdiste tu email de activación?.

 

 


Tema destacado: Como proteger una cartera - billetera de Bitcoin


  Mostrar Temas
Páginas: [1]
1  Seguridad Informática / Seguridad / conecto disco duro y el antivirus se desactiva en: 5 Noviembre 2017, 22:10 pm
Hola a ver si alguien me puede ayudar conecto un disco duro a mi ordenador se desactiva el antivirus y no consigo entrar en el.
Me huele muy mal, ¿puede ser un virus?
tengo un ordenador con linux si lo enchufo ahi no se ejecutaria en caso de que sea un virus no?
Si es asi como le paso un antivirus en linux?
2  Seguridad Informática / Bugs y Exploits / Intentando explotar buffer overflow en: 2 Noviembre 2017, 18:56 pm
Hola buenas, he creado este programa he conseguido ejecutar la funcion system("pause"); sobreescribiendo el return con el lugar donde se encuentra pasandosolo en ascii, ahora quisiera ejecutar un shellcode
he creado uno con msfvenom pero como hago para que se ejecute?

Código
  1. msfvenom -p windows/exec cmd=calc.exe -f c --smallest --platform windows--arch x86
  2. unsigned char buf[] =
  3. "\xfc\xe8\x82\x00\x00\x00\x60\x89\xe5\x31\xc0\x64\x8b\x50\x30"
  4. "\x8b\x52\x0c\x8b\x52\x14\x8b\x72\x28\x0f\xb7\x4a\x26\x31\xff"
  5. "\xac\x3c\x61\x7c\x02\x2c\x20\xc1\xcf\x0d\x01\xc7\xe2\xf2\x52"
  6. "\x57\x8b\x52\x10\x8b\x4a\x3c\x8b\x4c\x11\x78\xe3\x48\x01\xd1"
  7. "\x51\x8b\x59\x20\x01\xd3\x8b\x49\x18\xe3\x3a\x49\x8b\x34\x8b"
  8. "\x01\xd6\x31\xff\xac\xc1\xcf\x0d\x01\xc7\x38\xe0\x75\xf6\x03"
  9. "\x7d\xf8\x3b\x7d\x24\x75\xe4\x58\x8b\x58\x24\x01\xd3\x66\x8b"
  10. "\x0c\x4b\x8b\x58\x1c\x01\xd3\x8b\x04\x8b\x01\xd0\x89\x44\x24"
  11. "\x24\x5b\x5b\x61\x59\x5a\x51\xff\xe0\x5f\x5f\x5a\x8b\x12\xeb"
  12. "\x8d\x5d\x6a\x01\x8d\x85\xb2\x00\x00\x00\x50\x68\x31\x8b\x6f"
  13. "\x87\xff\xd5\xbb\xf0\xb5\xa2\x56\x68\xa6\x95\xbd\x9d\xff\xd5"
  14. "\x3c\x06\x7c\x0a\x80\xfb\xe0\x75\x05\xbb\x47\x13\x72\x6f\x6a"
  15. "\x00\x53\xff\xd5\x63\x61\x6c\x63\x2e\x65\x78\x65\x00";
  16.  
Código
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include<string.h>
  4.  
  5. int main()
  6. {
  7. FILE *archivo;
  8. char buf[20];
  9.  
  10. char caracteres[100];
  11.  
  12. archivo = fopen("A.txt","r");
  13.  
  14. if (archivo == NULL)
  15. exit(1);
  16. else
  17.        {
  18.    printf("\nEl contenido del archivo de prueba es \n\n");
  19.    while (feof(archivo) == 0)
  20.    {
  21. fgets(caracteres,100,archivo);
  22. printf("%s",caracteres);
  23.    }
  24.  
  25.        }
  26.        fclose(archivo);
  27.        system("PAUSE");
  28.            strcpy(buf,caracteres);//bof
  29. return 0;
  30. }
  31.  
  32. void f1(){
  33. system("calc.exe");//bof
  34. return;
  35. }
3  Programación / Programación C/C++ / Ayuda ficheros c unicode txt en: 2 Noviembre 2017, 16:05 pm
Hola buenas estoy intentando leer unu archivo y pasarselo a una cadena pero no funciona correctamente
Código
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include<string.h>
  4.  
  5. int main()
  6. {
  7. FILE *archivo;
  8. int i=0;
  9. char buf[20];
  10.  
  11. char caracteres[100];
  12.  
  13. archivo = fopen("A.txt","r");
  14.  
  15. if (archivo == NULL)
  16. exit(1);
  17. else
  18.        {
  19.    printf("\nEl contenido del archivo de prueba es \n\n");
  20.    while (feof(archivo) == 0)
  21.    {
  22. fgets(caracteres,100,archivo);
  23. printf("%s",caracteres);
  24.    }
  25.            system("PAUSE");
  26.            strcpy(buf,caracteres);
  27.        }
  28.        fclose(archivo);
  29. return 0;
  30. }
  31.  
  32. void f1(){
  33. system("calc.exe");//bof
  34. return;
  35. }
4  Seguridad Informática / Seguridad / virus o no? en: 24 Octubre 2017, 19:04 pm
Hola buenas, he usado la herramienta autoruns de sysinternals en u ordenador y he visto que tiene un activador(kmspico) de winds, estos son los resultados de virus total, uno lo detecan 41/67 y el servicio 34/67
\AutoPico Daily Restart   AutoPico   (Verified) @ByELDI   autopico.exe      41/67
Service KMSELDI   Service_KMS   (Verified) @ByELDI   service_kms.exe   34/67
Páginas: [1]
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines