How to implement integrity control of web applications

56 views Asked by At

Any web application (for example asp.net/asp.net mvc) contains many *.dll, *.js, *.css, *.aspx, *.ascx, *.cshtml and other files.

We need to implement mechanism to control integrity of all these files to quickly analyze was modified any file or not after deploy.

So, we can on continuous integration server generate file with hashes of all files, put it into some dll of project as embedded resource, and sign dll via strong name. Then in every time we can check integrity of dll and validate hash of all files.

Is there a more simple solution? Or ready to use third party solution?

0

There are 0 answers