Quantcast
Channel: EL-Capitan – Security List Network™
Viewing all articles
Browse latest Browse all 90

skype-osint – Python OSINT Tool to retrieve information from Skype.

$
0
0

Python Skype OSINT util is a tool allows you to retrieve the Skype ID from an e-mail address but also the LAN IP from the Skype ID.
Installation ;
– Install https://github.com/davisp/python-spidermonkey.git
– git clone https://github.com/PaulSec/skype-osint
– cd
– run

Skype API Example

Skype API Example

Then checkout the API_example.py file:

from SkypeOsintAPI import *

api = SkypeOSINTAPI(True)
res = api.email_to_skype_id('username@gmail.com')

if res:
    print "Username(s) found: {0}".format(res)
    for username in res:
        print api.skype_id_to_lan_ip(username)

Source : https://github.com/PaulSec


Viewing all articles
Browse latest Browse all 90

Trending Articles