Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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)

share|improve this question

closed as off topic by dmckee, martin clayton, mah, Don Roby, amon Jan 26 at 17:38

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

You could use NAT on your router which would change your source IP address. It's a legitimate way of masking your IP address and the easiest way.

share|improve this answer
The issue is that the traffic needs to reach the proxy (application layer) and be sent back. How will the router know which source IP to use if the TCP connection isnt the same? – volkaj Jan 7 at 17:53

Not the answer you're looking for? Browse other questions tagged or ask your own question.