Skip to content

Instantly share code, notes, and snippets.

@miguelbalparda
Last active August 29, 2015 14:16
Show Gist options
  • Save miguelbalparda/b57a47a010a5995bc44d to your computer and use it in GitHub Desktop.
Save miguelbalparda/b57a47a010a5995bc44d to your computer and use it in GitHub Desktop.
Check for global/crypt/key in Magento
find . -path './app/code/core' -prune -o -iname '*php' \! -type d -print0 | xargs -0 grep -il "global/crypt/key"
@miguelbalparda
Copy link
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment