I host an application server which is vulnerable to several DoS and remote code executions attacks. This server is a black box and I cant change how it behaves except for specifying on which port and interfaces it listens for connections.
Patching up the vulnerabilities is impractical due to lack of support from the developer, so I am trying to set up a proxy that filters out the exploits from the incoming data sent to the server. (Not a perfect solution, but its better than nothing.)
However, the server requires the source IP address to be from its clients.
Is there a way to make my proxy transparent and spoof the source IP address of the packets it sends to the server?
I've looked for raw sockets, but they wont receive TCP packets as those are handled by the kernel subsystems. And a normal TCP socket would hide the connection data needed to inject the packet back to the server.
Platform: Windows Server 2008 R2, both proxy and server are on the same host.
Note: The server uses a simplistic encryption scheme on its data, making the use of an IDS/IDPS impossible. (Rules not being flexible enough to see through the encryption)