Socket Command Injection
Socket binding example with Python
In the following example a unix socket is created (/tmp/socket_test.s
) and everything received is going to be executed by os.system
.I know that you aren't going to find this in the wild, but the goal of this example is to see how a code using unix sockets looks like, and how to manage the input in the worst case possible.
s.py
Execute the code using python: python s.py
and check how the socket is listening:
Exploit
Last updated