aboutsummaryrefslogtreecommitdiffstats
path: root/skylog/skydbg.py
diff options
context:
space:
mode:
Diffstat (limited to 'skylog/skydbg.py')
-rw-r--r--skylog/skydbg.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/skylog/skydbg.py b/skylog/skydbg.py
deleted file mode 100644
index ae55f4b..0000000
--- a/skylog/skydbg.py
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/usr/bin/env python
-
-# skydbg v0.1
-# Logs all skype notifications
-# Usage: python skydbg.py >> dbg.log &
-# 2013, Laurent Ghigonis <laurent@p1sec.com>
-
-import Skype4Py
-import time
-import sys
-import atexit
-
-do_exit = False
-
-def cb_exit():
- print sys.stderr, "cb_exit()"
- print "EXIT"
-
-def cb_notify(notification):
- t = time.strftime("%Y%m%d-%H%M%S", time.localtime())
- print "%s %s" % (t, notification)
- sys.stdout.flush()
-
-atexit.register(cb_exit)
-skype = Skype4Py.Skype()
-skype.RegisterEventHandler('Notify', cb_notify)
-skype.Attach()
-print >> sys.stderr, 'Started'
-
-while True:
- time.sleep(0.1)
- if do_exit is True:
- break