Scylla: Simplistic Information Gathering Engine
Scylla – The Simplistic Information Gathering Engine
Scylla is an OSINT tool developed in python 3.6. Scylla lets users perform advanced searches on Instagram & Twitter accounts, websites/webservers, phone numbers, names. Scylla also allows users to find all social media profiles (main platforms) assigned to a certain username. This is the first version of the tool and please contact the developer if you want to help contribute and add more to Scylla.
API NOTICE
The API used for the reverse phone number lookup (free package) has a maximum of 250 requests. The one used in the program right now will most definitely run out of uses in the near future. If you want to keep generating API keys, go to https://www.numverify.com, and select the free plan after creating an account. Then simply go scylla.py and replace the original API key with your new API key found in your account dashboard. Insert your new key into the keys[] array (at the top of the source). For the Shodan API key, it is just a sample key given to the program. The developer recommends creating a Shodan account and adding your own API key to the shodan_api[] array at the top of the source (scylla.py).
Install
git clone https://www.github.com/josh0xA/Scylla
cd Scylla
sudo python3 -m pip install -r requirments.txt
python3 scylla.py –help
Use
Example
python3 scylla.py --instagram davesmith --twitter davesmith
Command 1 will return account information of that specified Instagram & Twitter account.python3 scylla.py --username johndoe
Command 2 will return all the social media (main platforms) profiles associated with that username.python3 scylla.py --username johndoe -l="john doe"
Command 3 will repeat command 2 but instead, it will also perform an in-depth google search for the “-l” argument. NOTE: When searching a query with spaces make sure you add the equal sign followed by the query in quotations. If your query does not have spaces, it will be as such:python3 scylla.py --username johndoe -l query
python3 scylla.py --info google.com
Command 4 will return crucial WHOIS information about the webserver/website.python3 scylla.py -r +14167777777
Command 5 will dump information on that phone number (Carrier, Location, etc.)python3 scylla.py -s apache
Command 6 will dump all the IP addresses of apache servers that shodan can grab based on your API key. The query can be anything that shodan can validate.
A Sample API key is given. I will recommend reading API NOTICE below, for more information.python3 scylla.py -s webcamxp
Command 7 will dump all the IP addresses and ports of open webcams on the internet that shodan can grab based on your API key. You can also just use thewebcam
query butwebcamxp
returns better results.
A Sample API key is given. I will recommend reading API NOTICE below, for more information.
Copyright (c) 2020 Josh Schiavone
Source: https://github.com/josh0xA/