Created
June 26, 2017 08:09
-
-
Save levisre/6c00ce56352672428f15da40967f39db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
IF EXIST "%USERPROFILE%\AppData\Local\Google" ( | |
ECHO "Checking Chrome" | |
CD "%USERPROFILE%\AppData\Local\Google\Chrome\User Data\Default\Extensions" | |
IF EXIST "ldobpmmlhhamdbpcipmehcibdlkoliah" ( | |
ECHO "Found Malicious Extension in %COMPUTERNAME%. Removing..." | |
RMDIR /q "ldobpmmlhhamdbpcipmehcibdlkoliah" | |
) ELSE ( | |
ECHO "SAFE!" | |
) | |
) | |
IF EXIST "%USERPROFILE%\AppData\Local\CocCoc" ( | |
ECHO "Checking CocCoc" | |
CD "%USERPROFILE%\AppData\Local\CocCoc\Browser\User Data\Default\Extensions" | |
IF EXIST "ldobpmmlhhamdbpcipmehcibdlkoliah" ( | |
ECHO "Found Malicious Extension in %COMPUTERNAME%. Removing..." | |
RMDIR /q "ldobpmmlhhamdbpcipmehcibdlkoliah" | |
) ELSE ( | |
ECHO "SAFE!" | |
) | |
) | |
@echo on |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment