PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Er. Rochak Chauhan   PHP Vulnerability Scanner   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example Script
Class: PHP Vulnerability Scanner
Scan script files for malicious code
Author: By
Last change:
Date: 13 years ago
Size: 377 bytes
 

Contents

Class file image Download
<?php
$dir
="../Facebook Clones"; // Where to scan recurcivly
$toScanArray=array("base64_encode", "base64_decode", "unescape"); // What to find inside a file (possible virus / Malicious code)

require_once("phpVulnerabilityScanner.inc.php");
$phpVulnerabilityScanner = new PhpVulnerabilityScanner($dir,$toScanArray);
$phpVulnerabilityScanner->showResult();
?>