Author - 오길호

Setting DNS on Windows 10

In SecretDNS, the settings automatically configure when you exit without entering DNS. However, in some scenarios, it may not set automatically, so here’s how to manually configure DNS. If you have internet access, you can easily change it through the following address.https://gnu.kilho.net/bbs/board.php?bo_table=tiptech&wr_id=1202   Manual Configuration 1. Click the Start button and then click the settings...

Formatting When Drive Is Not Recognized

I’m writing this after purchasing an external hard drive for Mac that isn't recognized in Windows. (I could have used “Create and Format Hard Disk Partitions” to make it easier, but since that didn’t work, I’m trying another method ㅠㅠ) First, run the Command Prompt (CMD) as an administrator. Then, use the following commands to...

Using Threads in Delphi

This is an easy way to work with threads in Delphi. Just make sure to use synchronize properly 🙂 Function Details uses System.Classes, System.SysUtils, Vcl.Forms; procedure Wait(Proc: TProc); begin Thread := TThread.CreateAnonymousThread(procedure() begin Proc; end); Thread.FreeOnTerminate := True; Thread.Start; while not Thread.Finished do Application.ProcessMessages; end; How to Use Wait(procedure() begin // .... content end);

Finding Current Location (PHP)

We can determine the location using the geolocation function. If there are relevant permissions issues or if the browser is not supported, we can use the API provided by Naver to obtain the location via IP address. Before using it, please get your Naver API key at the following address.(https://www.ncloud.com/product/applicationService/geoLocation) <? function makeSignature($secretKey, $method, $baseString,...

SecretDNS Update

Recently, there has been an issue regarding SNI eavesdropping, which led us to create and release SecretDPI and SecretSNI. Given the feedback on running various programs separately, we've integrated these features into a single application—SecretDNS—to enable DNS encryption and bypass SNI eavesdropping more efficiently. Additionally, the program now automatically configures DNS settings upon exit. However,...

Secret SNI Deployment

This program prevents eavesdropping and tampering of Server Name Indication (SNI). It was created due to the speed reductions experienced when using existing solutions like Secret DPI, Goodbye DPI, and MTU settings. Only the strings detected in the SNI are fragmented, while other packets are used normally. (1) Before execution (2) After execution Before the...