Skip to content

Instantly share code, notes, and snippets.

@phretor
Created March 2, 2011 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phretor/850721 to your computer and use it in GitHub Desktop.
Save phretor/850721 to your computer and use it in GitHub Desktop.
Quick and dirty check for BlackHole RAT (OSX/MusMinim-A)
#! /bin/sh
# Quick and dirty check for BlackHole RAT (OSX/MusMinim-A)
# * http://www.sophos.com/security/analyses/viruses-and-spyware/osxmusminima.html
#
# USAGE:
# - Copy this file in your Desktop
# - Open Terminal.app
# - Run the following commands:
# - cd ~/Desktop
# - chmod +x blackholeratcheck.sh
# - ./blackholeratcheck.sh
#
# DISCLAIMER: This script can lie to you :)
#
/usr/sbin/netstat -n -p tcp | awk '{print $5}' | awk -F\. '{ print $5}' | sort -u | grep -q -E '^(7777|7779|7780|7781|7782|9999|10000|10001|10004|10005)$' && echo 'You are probably infected by OSX/MusMinim-A (BlackHole RAT)' || echo 'Your Mac looks clean. But try an A/V product anyways.'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment