Skip to content

Instantly share code, notes, and snippets.

@NoobieDog
Forked from PaulSec/skype_sniffer.py
Last active October 29, 2015 12:36
Show Gist options
  • Save NoobieDog/3d06defdc995c6257ec5 to your computer and use it in GitHub Desktop.
Save NoobieDog/3d06defdc995c6257ec5 to your computer and use it in GitHub Desktop.
Simple Skype Sniffer
import Skype4Py
def Commands(message, status):
if status == 'SENT' or (status == 'RECEIVED'):
print message.Body
skype = Skype4Py.Skype()
if not skype.Client.IsRunning:
print "Skype not running"
quit()
skype.OnMessageStatus = Commands
skype.Attach()
while True:
pass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment