Search code examples
phpdeobfuscation

php -f file.php?


So anyways, I was talking to someone about PHP about deobfuscating PHP code and he said "Change the eval to echo and then run php -f file.php".

I understand what it means to change eval to echo (in the code), however, what does he mean by php -f file.php?


Solution

  • php -f file.php is a simple command to run the specific file.This is assume has nothing to do with deobfuscating PHP code

    enter image description here