Security Software How to dectect malicious code from a php script

mayheptad

Recruit
hello techenclave members
i got a script from a pen friend , i tested it with xampp on local host and it work fine,
but please is there any sure way/method to check if the script contain any form of virus malware backdoor trojan etc, and how to remove it
because an plannning to install the script online for commercial use
 
There are a few online scanners that can check your website for malicious code. You will have to put it online, I guess.
Many times malicious code has two common traits:
1 ) It’s appended near the top or near the bottom of valid code. It’s rarely inserted within valid code as it may break that code, defeating the purpose which is to run undetected.
2) It’s been encoded in Base64 - a binary-to-text encoding scheme designed to obscure its purpose, commands, and URLs.
 
Back
Top