Changes Made to SSL Implementation

We have changed our SSL implementation to prioritize application only in areas necessary for user registration and security. As shown in the chart above, there are still many users on XP with Internet Explorer 8 or below, which means that areas with SSL do not function correctly for them. In the future, we plan to...

Server Migration Completed

Main account has been migrated.   After being attacked by ransomware from Nayana, I migrated to iwinv hosting, but it seems the recovery has progressed to some extent recently, and I expect I will need to focus on security for a while, so I've set it back up with Nayana.   I have installed WordPress...

Windows Cleaner 3.0 Beta Released

It's been a while since we upgraded Windows Cleaner.   The speed has significantly improved compared to the previous version. We’ve made it much easier to manage startup programs and browser plugins. The startup program management is compatible with MSConfig, and recovery works perfectly. The report screen now outputs from the user's default browser. We've...

Web Hacking: Backdoor Risk Code Detection Plugin

This plugin is designed to easily find backdoors (PHP) secretly installed for server hacking. It locates files that use functions susceptible to misuse in PHP and notifies you via email.   You can easily install and use it on WordPress and GnuBoard 5.   Upon initial activation, it scans your system thoroughly, and if suspicious...

Bank Cleaner - Uninstall Internet Banking Security Programs

Features Easily manage programs that run automatically on boot. Integrates management of various items such as startup folder, registry, task scheduler, and services. Safely change settings by disabling instead of deleting. DownloadDownload from Kilho.net   How to Use Run the program. Click or drag to select from the list of installed programs. Click the “Remove”...

Registry Monitoring (Delphi)

How to Use procedure RegistryMonitor(RootKey: HKEY; Key: string; Proc: TProc; WatchSub: boolean); begin TThread.CreateAnonymousThread(procedure var Reg: TRegistry; Event: cardinal; begin Reg := TRegistry.Create; Reg.RootKey := RootKey; if Reg.OpenKeyReadOnly(Key) then begin Event := CreateEvent(nil, False, False, nil); if Event > 0 then begin while True do begin RegNotifyChangeKeyValue(Reg.CurrentKey, WatchSub, REG_NOTIFY_CHANGE_LAST_SET, Event, True); if WaitForSingleObject(Event, INFINITE) =...