All Projects → ollyxar → Php Malware Detector

ollyxar / Php Malware Detector

Licence: mit
PHP malware detector

Projects that are alternatives of or similar to Php Malware Detector

Lynis
Lynis - Security auditing tool for Linux, macOS, and UNIX-based systems. Assists with compliance testing (HIPAA/ISO27001/PCI DSS) and system hardening. Agentless, and installation optional.
Stars: ✭ 9,137 (+7451.24%)
Mutual labels:  vulnerability-scanners
Malice
VirusTotal Wanna Be - Now with 100% more Hipster
Stars: ✭ 1,253 (+935.54%)
Mutual labels:  antivirus
Patrowldocs
PatrOwl - Open Source, Free and Scalable Security Operations Orchestration Platform
Stars: ✭ 105 (-13.22%)
Mutual labels:  vulnerability-scanners
Purify
All-in-one tool for managing vulnerability reports from AppSec pipelines
Stars: ✭ 72 (-40.5%)
Mutual labels:  vulnerability-scanners
Avdetection
A simple way for detection the remote user's antivirus
Stars: ✭ 82 (-32.23%)
Mutual labels:  antivirus
Huorong vulnerabilities
Huorong Internet Security vulnerabilities 火绒安全软件漏洞
Stars: ✭ 85 (-29.75%)
Mutual labels:  antivirus
Iva
IVA is a system to scan for known vulnerabilities in software products installed inside an organization. IVA uses CPE identifiers to search for CVEs related to a software product.
Stars: ✭ 49 (-59.5%)
Mutual labels:  vulnerability-scanners
Arissploit
Arissploit Framework is a simple framework designed to master penetration testing tools. Arissploit Framework offers simple structure, basic CLI, and useful features for learning and developing penetration testing tools.
Stars: ✭ 114 (-5.79%)
Mutual labels:  vulnerability-scanners
Php Malware Finder
Detect potentially malicious PHP files
Stars: ✭ 1,245 (+928.93%)
Mutual labels:  antivirus
Vailyn
A phased, evasive Path Traversal + LFI scanning & exploitation tool in Python
Stars: ✭ 103 (-14.88%)
Mutual labels:  vulnerability-scanners
Awesome Windows Kernel Security Development
windows kernel security development
Stars: ✭ 1,208 (+898.35%)
Mutual labels:  antivirus
Angelsword
Python3编写的CMS漏洞检测框架
Stars: ✭ 1,223 (+910.74%)
Mutual labels:  vulnerability-scanners
Clamav Devel
ClamAV Development - FAQ is here: https://github.com/Cisco-Talos/clamav-faq
Stars: ✭ 1,301 (+975.21%)
Mutual labels:  antivirus
Vuls
Agent-less vulnerability scanner for Linux, FreeBSD, Container, WordPress, Programming language libraries, Network devices
Stars: ✭ 8,844 (+7209.09%)
Mutual labels:  vulnerability-scanners
Gda Android Reversing Tool
GDA is a new fast and powerful decompiler in C++(working without Java VM) for the APK, DEX, ODEX, OAT, JAR, AAR, and CLASS file. which supports malicious behavior detection, privacy leaking detection, vulnerability detection, path solving, packer identification, variable tracking, deobfuscation, python&java scripts, device memory extraction, dat…
Stars: ✭ 2,332 (+1827.27%)
Mutual labels:  vulnerability-scanners
Openvas Scanner
Open Vulnerability Assessment Scanner - Scanner for Greenbone Vulnerability Management (GVM)
Stars: ✭ 1,056 (+772.73%)
Mutual labels:  vulnerability-scanners
Struts Scan
Python2编写的struts2漏洞全版本检测和利用工具
Stars: ✭ 1,256 (+938.02%)
Mutual labels:  vulnerability-scanners
Xsscon
XSSCon: Simple XSS Scanner tool
Stars: ✭ 118 (-2.48%)
Mutual labels:  vulnerability-scanners
Green Hat Suite
Green-hat-suite is a tool to generate meterpreter/shell which could evade antivirus.
Stars: ✭ 112 (-7.44%)
Mutual labels:  antivirus
H4cker
This repository is primarily maintained by Omar Santos and includes thousands of resources related to ethical hacking / penetration testing, digital forensics and incident response (DFIR), vulnerability research, exploit development, reverse engineering, and more.
Stars: ✭ 10,451 (+8537.19%)
Mutual labels:  vulnerability-scanners

PHP malware detector

Build Status Version Downloads License

Smart PHP vulnerability detector

Web mode:

ollyxar php-malware-detector

Console mode:

chat

Using PHP malware detector

Requirements

  • PHP 5.4+

Install php-malware-detector via composer.

# Install Composer
curl -sS https://getcomposer.org/installer | php

Next, run the Composer command to install the latest stable version of php-malware-detector:

php composer.phar require ollyxar/php-malware-detector

After installing, you need to require Composer's autoloader and run scan:

require 'vendor/autoload.php';

(new Scanner())->run();

Using php-malware-detector in Web-mode:

Put scanner.php in the web-root directory on the web-server and open your website in the browser (like http://mywebsite.com/scanner.php)

Using php-malware-detector in Cron-mode:

You can schedule scanning process. To do that you have to add commend:

php /path_to/scanner.php > "log.txt"

Additional parameters for scanner:

// First parameter is a scan directory
// Second parameter is an array of file extensions to scan
(new Scanner('/var/some_other_direcrory_to_scan'), ['php', 'txt', 'php5'])->run();
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].