Author - 오길호

PHP Hacking: Risk Code Check Program

This program was created to easily monitor whether malicious PHP has been installed through server hacking and to check for potentially risky code. Upload the following code to your server account. <? /** * Name: Kilho's PHP Diagnosis * Author: Kilho Oh (prince@kilho.net) * Author URI: http://kilho.net/ */ class TDiagnosis { public $dir;public function __construct()...

SSHScript - Simplifying Linux (Web Hosting) Backups

How to Use Run the program. Click the File button, fill out the tasks as shown below and save it. (If you have multiple accounts, just repeat the process.) # Connect to the account to create a backup file. ssh://{username}:{password}@{ip}:{port} # Navigate to the location of the file you want to back up. cd {path}...

Gilhonet Has Been Revamped

We have launched the Gilhonet website with a new theme.The previous theme took up a lot of load time, so we've switched to a lighter and cleaner design.If you notice any issues during the transition, please leave a message in the Q&A board, and we will check and fix it.We appreciate your interest.

A Simple CDN Service Module Made with PHP

To reduce traffic load, I used CloudFlare, but I noticed that the connection at LAX (Los Angeles) was slowing things down significantly. In a hurry, I decided to create a CDN-like service. The server is located in Tokyo (Vultr). The principle is to connect kilho.net/{file} to cdn.kilho.net/{file}, which distributes the traffic of the main hosting....

Server Migration Completed

The main domain (excluding subdomains) has been migrated to a new server.Previously, we were using Cafe24 for hosting, but due to issues with CentOS versions, we received a response that upgrading OpenSSL was impossible. We temporarily patched the WordPress core and plugins to keep things running, but continuous upgrades made the migration unavoidable.We have now...

HTTP Connection Information Logging

This is to check if the connection information is correct for testing when using OpenAPI. Method values, host, POST values upon connection. [PHP] <? $log = $_SERVER['REQUEST_METHOD'].' '.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'].' n'; foreach($_SERVER as $k => $v) { if($k=='HTTP_HOST') continue; if(substr($k, 0,5)!='HTTP_') continue; $log .= '$k: $v'." "; } $log .= " "; $post = array_map('urldecode', explode('&', file_get_contents('php://input')));...