utils/libaflppdesock/README.md
Other desocketing solutions:
If these desocket solutions fail, then this one will likely easily work for you - alass with slightly lower performance. And it is easy to extend :-)
What makes this desocket library special is that only only intercepts
accept() calls bound to a specified port. Hence any other network stuff
the application does is still working as expected.
AFL_PRELOAD this library and use the following environment variables:
DESOCK_PORT=8080 - required for intercepting incoming connections for fuzzing - sets the TCP portDESOCK_FORK=1 - intercept and prevent forkingDESOCK_CLOSE_EXIT=1 - call _exit() when the desocketed file descriptor is closed or shutdownedDESOCK_DEBUG=1 - print debug information to stderr** Internals
Currently the library intercepts the following calls:
shutdown
close
fork
accept
accept4
listen
bind
setsockopt
getsockopt
getpeername
getsockname
`