I work for someone who has recently had their web server hacked and had a bunch of text added to their sites without their knowledge. I'm looking for a service that alerts you when your pages change. A cursory Google search yields a bunch of options, but I was looking for something that is reliable, need not be free or instantaneous, but is just solid. Any suggestions?
|
feedback
|
|
Some Links: You could also try Website Watcher or ChangeDetection or Watch That Page I think one of those tools should be just what you are after. Credit to GHacks.NET which is where I lifted these links from. | |||
|
feedback
|
|
How about coding the website and throwing it into a git or subversion repository? That way you can easily compare changes between versions. If you are just looking for simple notification of changes and you're comfortable with the command line, check out tar. You can back up the site folder like this for example:
then periodically check for differences (you could even automate it with cron):
if you want details on the changes, you can uncompress your original copy and diff the two. | |||||
feedback
|