This file contains 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
<# | |
Downloads FireFox Send executable made by Tim Visée - https://github.com/timvisee/ffsend/releases | |
Current Version ffsend v0.2.30 as of 03-14-19 | |
Script made by John Davis @John_Davis - https://github.com/Belorum | |
#> | |
Net Session 2>&1 > $null | |
if ( $? -eq "False" ) { | |
$Current_Time = Get-Date |
This file contains 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 | |
REM Prevents Bad Rabbit Ransomware | |
REM Vaccine by Amit Serper @0xAmit | |
REM I added a line that removes inheritance from the command line instead of editing via the GUI | |
REM Creates infpub.dat and cscc.dat in the C:\Windows directory | |
echo This file is a vaccine for Bad Rabbit Ransomware, please do not remove. > C:\Windows\infpub.dat && echo This file is a vaccine for Bad Rabbit Ransomware, please do not remove. > C:\Windows\cscc.dat | |
REM Removes inheritance from previously created files | |
icacls C:\Windows\infpub.dat /inheritance:r /remove Administrators && icacls C:\Windows\cscc.dat /inheritance:r /remove Administrators |