Http server with exploit callbacks

โš“ Rust    ๐Ÿ“… 2025-09-12    ๐Ÿ‘ค surdeus    ๐Ÿ‘๏ธ 10      

surdeus

Warning

This post was published 61 days ago. The information described in this article may have changed.

Many years ago I was handed a simple HTTP server written in C that was designed to call callback functions when it detects certain attack types, such as path traversal attacks, slowloris, some well-known malformed headers. I recently tried to build it, but quickly noticed that its build system was not designed to be moved out of the environment in which it was original developed. I would like the functionality, but donโ€™t like the idea of fixing the build system.

Does anyone know if thereโ€™s a Rust HTTP server that can do this?

Not looking for anything that is safe to run exposed to the Internet and not looking for anything modern (HTTP/1.0 is sufficient), this is just for internal testing/education.

1 post - 1 participant

Read full topic

๐Ÿท๏ธ Rust_feed