Reputation: 35
I use a plugin for WordPress called "WordFence". It works by scanning all files on the server and checking for changes or suspicious code.
I am looking for something similar to Magento. Does it exist?
To put it another way, I am looking for an extension to help with security, and scanning files looking for changes would help a lot.
Upvotes: 0
Views: 393
Reputation: 3253
You should use a version control system for that, as it does exactly what you describe (and more).
For example, git status
will show you all modified files since last release. You could use .gitignore
to exclude media files and other volatile stuff.
See Yireo's tutorial on git and Magento on how to get started.
Upvotes: 1