Last active
August 29, 2015 14:16
-
-
Save miguelbalparda/b57a47a010a5995bc44d to your computer and use it in GitHub Desktop.
Check for global/crypt/key in Magento
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -path './app/code/core' -prune -o -iname '*php' \! -type d -print0 | xargs -0 grep -il "global/crypt/key" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will search outside app/code/core for the string "global/crypt/key" to check if it is being used to send info to 3rd party services or extension providers.