phpchecker = PHP Malware/Hacker/Security Vulnerability Checker

Scan your website for potential security vulnerabilites

Last updated on
((( spellific )))
Practice spelling while playing a fun word game!
Click here to play
Speech Recognition Anywhere
  • Type emails with your voice
  • Write documents with your voice
  • Control the Inernet with your voice
  • Chrome Extension
Reconocimiento de voz en cualquier lugar
  • Escribe correos electrónicos con tu voz
  • Escribe documentos con tu voz
  • Controla la Inernet con tu voz
  • Extensión de Chrome
Spracherkennung Allerorts
  • Geben Sie E-Mails mit Ihrer Stimme ein
  • Schreiben Sie Dokumente mit Ihrer Stimme
  • Steuern Sie das Internet mit Ihrer Stimme
  • Chrome-Erweiterung
Reconnaissance de la parole
  • Tapez des e-mails avec votre voix
  • Écrivez des documents avec votre voix
  • Contrôlez l'Inernet avec votre voix
  • Extension Chrome
Riconoscimento vocale ovunque
  • Digita e-mail con la tua voce
  • Scrivi documenti con la tua voce
  • Controlla Internet con la tua voce
  • Estensione Chrome
どこでも
音声認識
  • あなたの声で文書を書く
  • あなたの声でメールを入力してください
  • あなたの声でInernetを制御する
  • Chrome拡張機能
语音识别
无处不在
  • 用你的声音写文件
  • 用您的声音输入电子邮件
  • 用你的声音控制互联网
  • Chrome 扩展程序
語音識別
無處不在
  • 用你的聲音寫文件
  • 用您的聲音輸入電子郵件
  • 用你的聲音控制互聯網
  • Chrome 擴展程序
Subscribe to Internet Tips and Tools Feed

Here is a php script to check your Apache/PHP website for potential security vulnerabilities. Also if your site has been hacked this php script can scan for potential content injection by hackers.

Features

  • Checks Apache and PHP versions
  • Checks Crontab jobs
  • Scans files for mysql injection vulnerabilities
  • Scans files for scripts that can send email
  • Informs of files that have been added or modified recently on the server
  • Scans files for SPAM words that might have been injected by a hacker
  • Scans for 666 file permissions and 777 folder permissions
  • Scans for files that are php files but are disguised as image files
  • Checks for scripts that have the ability to accept uploading of files
  • Checks for .user.ini, php.ini, .htacess, httpd.conf hacked settings and vulnerabilities
  • Checks for potential redirects by hackers in scripts
dlc_b

Download

Downloaded 0 times.
Please make a donation to reveal the download link.

How To Use

Download the file and then you can customize the following settings if you desire:

Before uploading this file to your server you should rename it to a random name so that hackers can't use it to find vulnerabilities. Upload the php file to you server and then go to the file in your browser for checking.

History

11/3/2019 - Version 1.2 - Now also looks for fputs and fputcsv as potential threats.

7/18/2019 - Version 1.1 - eval() is always a high level threat. Also added create_function() as a high level threat.

7/8/2019 - Version 1.0 - phpchecker created.

Last updated on December 16, 2020
Created on July 8, 2019

((( spellific )))
Practice spelling while playing a fun word game!
Click here to play
Speech Recognition Anywhere
  • Type emails with your voice
  • Write documents with your voice
  • Control the Inernet with your voice
  • Chrome Extension
Reconocimiento de voz en cualquier lugar
  • Escribe correos electrónicos con tu voz
  • Escribe documentos con tu voz
  • Controla la Inernet con tu voz
  • Extensión de Chrome
Spracherkennung Allerorts
  • Geben Sie E-Mails mit Ihrer Stimme ein
  • Schreiben Sie Dokumente mit Ihrer Stimme
  • Steuern Sie das Internet mit Ihrer Stimme
  • Chrome-Erweiterung
Reconnaissance de la parole
  • Tapez des e-mails avec votre voix
  • Écrivez des documents avec votre voix
  • Contrôlez l'Inernet avec votre voix
  • Extension Chrome
Riconoscimento vocale ovunque
  • Digita e-mail con la tua voce
  • Scrivi documenti con la tua voce
  • Controlla Internet con la tua voce
  • Estensione Chrome
どこでも
音声認識
  • あなたの声で文書を書く
  • あなたの声でメールを入力してください
  • あなたの声でInernetを制御する
  • Chrome拡張機能
语音识别
无处不在
  • 用你的声音写文件
  • 用您的声音输入电子邮件
  • 用你的声音控制互联网
  • Chrome 扩展程序
語音識別
無處不在
  • 用你的聲音寫文件
  • 用您的聲音輸入電子郵件
  • 用你的聲音控制互聯網
  • Chrome 擴展程序
Back to www.seabreezecomputers.com
Subscribe to Internet Tips and Tools Feed        

User Comments

There are 3 comments.

Displaying first 50 comments.

1. Posted By: Bob - - October 28, 2020, 3:59 am
Parse error: syntax error, unexpected '[' in phpchecker.php on line 249

2. Posted By: Jeff - - October 31, 2020, 6:15 pm
Hi Bob,

It appears you are using an old version of PHP that does not support the Array Initialization Construct: []
Convert the line to this:
$result=array();

Jeff
www.seabreezecomputers.com/

3. Posted By: Bob - - October 31, 2020, 7:36 pm
Thanks.