Skip to content

Instantly share code, notes, and snippets.

@Alex4386
Last active March 14, 2024 02:07
Show Gist options
  • Save Alex4386/2b81399fa6f3e96bf3e3a635698d1f45 to your computer and use it in GitHub Desktop.
Save Alex4386/2b81399fa6f3e96bf3e3a635698d1f45 to your computer and use it in GitHub Desktop.
Remove Korean "Backdoors" from your macOS
#!/bin/bash
echo K-Backdoor Remover
echo by Alex4386
if [ -d "/Applications/AhnLab/ASTx" ]; then
echo Remove AhnLab unSafe Transaction:
cd /Applications/AhnLab/ASTx/
open Uninstaller.app
fi
if [ -d "/Applications/CrossWebEx" ]; then
echo Remove CrossWebEx:
cd /Applications/CrossWebEx/
open UnInstallCrossEX.app
fi
if [ -d "/Applications/CrossEx/touchenex" ]; then
echo Remove CrossEX TouchEnEx
cd /Applications/CrossEx/touchenex
open UnInstallCrossEX.app
fi
if [ -d "/Applications/SoftForum" ]; then
echo Remove SoftForum AnySign4PC
cd /Applications/SoftForum
open Uninstaller_AnySign4PC.app
fi
if [ -d "/Applications/TouchEn nxKey" ]; then
echo Remove INCA Internet TouchEn nxKey
cd "/Applications/TouchEn nxKey"
open TKUninstall.app
fi
echo Done.
@Alex4386
Copy link
Author

Run with these easy steps!

curl https://gist.githubusercontent.com/Alex4386/2b81399fa6f3e96bf3e3a635698d1f45/raw/remove-k-backdoor.sh | sh

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment