Explore >> Select a destination


You are here

xnux.eu
| | gist.github.com
2.0 parsecs away

Travel
| | GitHub Gist: instantly share code, notes, and snippets.
| | cocomelonc.github.io
2.0 parsecs away

Travel
| | [AI summary] A tutorial explaining how to build a basic keylogger for Linux using the evdev interface to capture keyboard input for educational and defensive research purposes.
| | blog.dornea.nu
2.1 parsecs away

Travel
| | [AI summary] The blog post discusses the process of creating and executing a shellcode in C to read a file named 'flag.txt' and dump its content, including assembly code, compilation steps, and execution considerations.
| | yasoob.me
17.8 parsecs away

Travel
| Hi there fellows. In this post I am going to take you on an adventure with python sockets. They are the real backbones behind web browsing. In simpler terms there is a server and a client. We will deal with the client first. So lets first begin by importing the socket library and making a simple socket. import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) Here we made a socket instance and passed it two parameters.