Explore >> Select a destination


You are here

dustingram.com
| | yasoob.me
2.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.
| | idea.popcount.org
3.6 parsecs away

Travel
| |
| | pentestmonkey.net
3.7 parsecs away

Travel
| | [AI summary] This article provides a cheat sheet for creating reverse shells in various scripting languages during penetration testing.
| | blog.oddbit.com
16.9 parsecs away

Travel
| Overview I was recently working with someone else's C source and I wanted to add some basic error checking without mucking up the code with a bunch of if statements and calls to perror. I ended up implementing a simple must function that checks the return value of an expression, and exits with an error if the return value is less than 0. You use it like this: must(fd = open("textfile.txt", O_RDONLY)); Or: