Re: How to design a cryptographic "check" of a page's integrity using .NET?
Tech Tip: Click here to run a free scan for Windows Errors and optimize PC performance
I googled for intrusion detection systems and got a list of IIS related ones:
http://www.windowsecurity.com/software/Intrusion-Detection/
-Brock
DevelopMentor
http://staff.develop.com/ballen
I have an idea for a way to help maintain my websites, and I'm hoping
someone can help me figure out how to implement it using C#, VB.NET,
or elements of the .NET framework. I'd be putting this on ASP.NET
pages.
There's always the possibility that webpages can a) get defaced, or b)
go offline for one reason or another.
I was thinking that there's probably some way to generate a unique key
based on the content of a page. My program would validate page
integrity by comparing the generated key to a previously generated
value. The easy and obvious answer would be to do a simple byte count
-- and that might be sufficient. Another easy answer is to do a
byte-for-byte comparison of an older content stream to the new. But
just for the sake of my curiousity and our learning, can someone
suggest a way that the content of the page could be analyzed to
generate a unique key?
Are there tools in the .NET framework to do this?
If I were to do this byte-for-byte comparison, is there anything more
advanced in .NETland than [if string x is identical to string Y then
return true]?
Thanks for any suggestions...
.
Relevant Pages
- Re: hash() yields different results for different platforms
... considering to add a "hash" column in the table, make it a unique key, ... I believe this will be faster than making the "url" column unique key ... and hashing a string are both O. ... result in a big savings compared to comparing regular strings; ... (comp.lang.python) - How to design a cryptographic "check" of a pages integrity using .NET?
... I have an idea for a way to help maintain my websites, ... I was thinking that there's probably some way to generate a unique key based ... Are there tools in the .NET framework to do this? ... advanced in .NETland than [if string x is identical to string Y then return ... (microsoft.public.dotnet.framework.aspnet) - Re: AssertionFailure null id in entry
... private String MYROW1; ... However, as stated before, when I have a duplicate unique key, it ... EntityMode entityMode) ... Now Hibernate needs to do 2 things - it needs to persist an object to the ... (comp.lang.java.programmer) - Re: Using multiple keys within Map object
... My problem is that the unique key is 3 double values when non of them is unique by itself. ... There is a function to convert a floating point value to a string which is its ... Matlab help says that num2str is doing that but I've found that it cuts the accuracy dramatically. ... and data classes and value ... (comp.soft-sys.matlab) - Re: AssertionFailure null id in entry
... private String MYROW1; ... However, as stated before, when I have a duplicate unique key, it ... Now deleted the id autoincrement field from my mapping class and used ... (comp.lang.java.programmer) |
|