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

 

 


Tema destacado: Arreglado, de nuevo, el registro del warzone (wargame) de EHN


  Mostrar Mensajes
Páginas: 1 ... 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 [25] 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 ... 123
241  Programación / Ingeniería Inversa / [Crackme] Virt by neon en: 17 Enero 2019, 21:35 pm
Este crackme es jodido... yo todavía no lo he resuelto la verdad... trabaja con excepciones CREO.

A ver si alguno de vosotros es capaz de meterle mano y nos  ilumina a los pobres.

http://ge.tt/9hMpkyt2

Lo descargue de crackmes.one en la página lo catalogan como nivel 4 'hard'

saludos!!
242  Foros Generales / Foro Libre / Re: Que opináis de VOX en: 17 Enero 2019, 20:41 pm
warcry. no me trolles el topic  :rolleyes:

Me gustaría saber también que opina la gente antipodemos que tanto decía que lo subvencionaba el régimen 'dictatorial' de Venezuela que opinan de la financiación de VOX por parte de Irán  :silbar:

saludos  
243  Foros Generales / Foro Libre / Que opináis de VOX en: 17 Enero 2019, 14:01 pm
Pues eso... opiniones  :rolleyes:
244  Foros Generales / Foro Libre / Re: Registro en forocoches en: 16 Enero 2019, 07:44 am
No tengo pensado abandonar elhacker.net   ::) ::) ::) ::) aquí también me lo paso bomba  :laugh: ;-)
245  Programación / Ingeniería Inversa / Re: [Keygenme] Scarlett Swordfish - Softdat CLS en: 16 Enero 2019, 07:43 am
Sois unos devoradores de código  >:D Animaros y poner alguno!!!

246  Programación / Ingeniería Inversa / [Keygenme] Scarlett Swordfish - Softdat CLS en: 15 Enero 2019, 20:34 pm
Pues como esta el subforo animado, continuamos con otro keygen :laugh: este es de Softdat@CLS.

Objetivos:
    -Obtener una validación.
    -Crear keygen.
    -Crear tutorial.


Descarga:

http://ge.tt/3XrY9wt2

saludos!!
247  Foros Generales / Foro Libre / Re: Registro en forocoches en: 15 Enero 2019, 20:28 pm
En Instagram regalan cada día. Creo que ahora sin pagar es casi imposible, son solo 5 euros..

No pienso pagar ni un céntimo   :rolleyes:
248  Foros Generales / Foro Libre / Registro en forocoches en: 15 Enero 2019, 15:04 pm
Pues eso... quiero obtener una cuenta en forocoches pero no pienso pagar  >:D algún alma caritativa por ahí al que le sobre una invitación?  :xD :silbar:

saludos!!
249  Programación / Ingeniería Inversa / Re: KeyGenME fary - v1.0 en: 13 Enero 2019, 00:30 am


ya que hizo en asm, podía escribir isDebuggerPresent() en asm, no api.
mov     eax, large fs:30h
movzx   eax, byte ptr [eax+2]
retn


Si te fijas, compruebo si estoy siendo debugeado dos veces... una llamando a la propia API y otra vez lo compruebo mientras estoy creando los objetos de la ventana :) aunque creo que nadie se tomo cuenta de eso...

Aquí os el código fuente!

Código
  1. format PE GUI 4.0
  2. entry start
  3.  
  4. include 'win32w.inc'
  5.  
  6. section '.text' code readable executable
  7. start:
  8.    invoke  GetModuleHandle,0
  9.    mov     [wc.hInstance],eax
  10.    invoke  LoadIcon,0,IDI_APPLICATION
  11.    mov     [wc.hIcon],eax
  12.    invoke  LoadCursor,0,IDC_ARROW
  13.    mov     [wc.hCursor],eax
  14.    invoke  RegisterClass,wc
  15.    test    eax,eax
  16.    jz      error
  17.  
  18.    invoke IsDebuggerPresent,0    ; ACTIVAR despues de depurar
  19.    cmp eax,0
  20.    jne end_loop
  21.  
  22.    invoke  CreateWindowEx,0,_class,_title,WS_VISIBLE+WS_DLGFRAME+WS_SYSMENU,128,128,256,100,NULL,NULL,[wc.hInstance],NULL
  23.    test    eax,eax
  24.    jz      error
  25.  
  26.    msg_loop:
  27.        invoke  GetMessage,msg,NULL,0,0
  28.        cmp     eax,1
  29.        jb      end_loop
  30.        jne     msg_loop
  31.        invoke  TranslateMessage,msg
  32.        invoke  DispatchMessage,msg
  33.        jmp     msg_loop
  34.  
  35.  error:
  36.        invoke  MessageBox,NULL,_error,NULL,MB_ICONERROR+MB_OK
  37.  
  38.  end_loop:
  39.        invoke  ExitProcess,[msg.wParam]
  40.  
  41. proc WindowProc uses ebx esi edi, hwnd,wmsg,wparam,lparam
  42.        cmp     [wmsg],WM_DESTROY
  43.        je      .wmdestroy
  44.        cmp     [wmsg],WM_CREATE
  45.        je      .wmcreate
  46.        cmp     [wmsg],WM_COMMAND
  47.        je      .wmcommand
  48.  
  49.        jmp .defwndproc
  50.  
  51.  .wmcommand:
  52.        xor eax, eax
  53.        xor edx, edx
  54.  
  55.        mov eax, [_buttonregistry]
  56.        mov edx, [lparam]
  57.  
  58.        cmp eax,edx
  59.        jne .finish
  60.  
  61.        invoke GetWindowTextA,[_editregistry],password,10
  62.  
  63.        stdcall checkpass,password ; Comprobamos la contraseña.
  64.  
  65.        jmp .finish
  66.  .defwndproc:
  67.        invoke  DefWindowProc,[hwnd],[wmsg],[wparam],[lparam]
  68.        jmp     .finish
  69.  .wmcreate:
  70.        invoke CreateWindowExA,WS_EX_APPWINDOW,_labelclass,_labeltext,WS_CHILD+WS_VISIBLE,10,10,150,20,[hwnd],NULL,[wc.hInstance],NULL
  71.        mov edx,dword[fs:0x18]
  72.        push edx
  73.        invoke CreateWindowExA,WS_EX_APPWINDOW,_editclass,0,WS_CHILD+WS_VISIBLE+WS_BORDER,115,10,125,20,[hwnd],NULL,[wc.hInstance],NULL
  74.        mov [_editregistry],eax
  75.        pop edx
  76.        mov edx,dword[edx+0x30]
  77.        push edx
  78.        invoke CreateWindowExA,WS_EX_APPWINDOW,_buttonclass,_buttonname,WS_CHILD+WS_VISIBLE,10,40,230,20,[hwnd],NULL,[wc.hInstance],NULL
  79.        mov [_buttonregistry],eax
  80.        pop edx
  81.        movsx edx,byte[edx+2]
  82.        mov [dbg],edx    ; Si esta debugger presente
  83.  
  84.        jmp .finish
  85.  .wmdestroy:
  86.        invoke  PostQuitMessage,0
  87.        xor     eax,eax
  88.  .finish:
  89.        ret
  90. endp
  91.  
  92. proc checkpass,pass
  93.    mov esi, [pass]
  94.  
  95.    compute_hash:
  96.        xor     edi, edi     ;EDI = 0
  97.        xor     eax, eax   ;EAX = 0
  98.        cld
  99.    compute_hash_again:
  100.        lodsb                ;AL = BYTE[ESI] , ESI = ESI + 1
  101.        test    al, al
  102.       jz       compute_hash_finished
  103.        ror     edi, 0xD
  104.        add     edi, eax
  105.       jmp      compute_hash_again
  106.    compute_hash_finished:
  107.  
  108.    ;EDI = El Hash de la cadena
  109.    cmp edi,0xF6C53333
  110.    jne salircheck
  111.    mov eax, [dbg]
  112.    cmp eax,1
  113.    je salircheck
  114.  
  115.    invoke MessageBoxA,0,_goodpass,_goodtitle,MB_OK+MB_ICONINFORMATION
  116.  
  117.    salircheck:
  118.    ret
  119. endp
  120.  
  121. section '.data' data readable writeable
  122.  
  123.  _class        TCHAR 'KeyGenMe Fary',0
  124.  _title        TCHAR 'Fary KeyGenME - 1.0',0
  125.  _error        TCHAR 'Startup failed.',0
  126.  _goodpass     db    'Enhorabuena, superaste el reto!ahora el keygen ;)',0
  127.  _goodtitle    db    'Good Boy',0
  128.  
  129.  _buttonregistry       dd ?
  130.  _buttonclass          db 'BUTTON',0
  131.  _buttonname           db 'Registrar',0
  132.  
  133.  _editregistry         dd ?
  134.  _editclass            db 'EDIT',0
  135.  
  136.  _labelclass           db 'STATIC',0
  137.  _labeltext            db 'Fary Password: ',0
  138.  
  139.   password             rb 11
  140.   dbg                  dd 0
  141.  
  142.  wc WNDCLASS 0,WindowProc,0,0,NULL,NULL,NULL,COLOR_BTNFACE+1,NULL,_class
  143.  
  144.  msg MSG
  145.  
  146. section '.idata' import data readable writeable
  147.  
  148.  library kernel32,'KERNEL32.DLL',\
  149.          user32,'USER32.DLL'
  150.  
  151.  include 'api\kernel32.inc'
  152.  include 'api\user32.inc'
  153.  

También quiero aclarar que el código que crear los hashes no es mio! pero me parecio interesante  >:D >:D >:D

https://foro.elhacker.net/programacion_visual_basic/asmvb6invoke_llamas_apis_sin_declararlas_kinvokebas-t290072.0.html

Aunque claro, veté tu a saber quién sea el autor porque por aquí también aparece el mismo hash  :xD

https://github.com/debasishm89/x86-Assembly/blob/master/speaking%20shell%20code.asm

Entre otras páginas...
250  Programación / Ingeniería Inversa / Re: KeyGenME fary - v1.0 en: 11 Enero 2019, 23:10 pm
Ya que esta esto resuelto, diré que la contraseña maestra es: f4RyKeY    :laugh:
Páginas: 1 ... 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 [25] 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 ... 123
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines