Handling a Human in Medium Attacks in NServiceBus

We were hoping to use NServiceBus to communicate with the DMZ web server from the application server, and I was looking for recommendations to defend against a MITM attack.

How can one encrypt a message (prevent eavesdropping) and hash (prevent unauthorized use) using NServiceBus or any other way?

Any help with this would be great, thanks

+3


source to share


1 answer


The OOTB way of doing this in NSB is with the underlying encryption function . If you need more, I would look at Message Mutators . These are extension points that allow you to manipulate messages at the application and transport levels. It sounds to me like you want to get to the transport level.



+1


source







All Articles