Skip to content

Instantly share code, notes, and snippets.

@PaulSec
Created October 29, 2015 11:48
Show Gist options
  • Save PaulSec/a303721443f5eb46035e to your computer and use it in GitHub Desktop.
Save PaulSec/a303721443f5eb46035e 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()
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