Giter Site home page Giter Site logo

mrtuxx / socialpwned Goto Github PK

View Code? Open in Web Editor NEW
970.0 970.0 103.0 864 KB

SocialPwned is an OSINT tool that allows to get the emails, from a target, published in social networks such as Instagram, Linkedin and Twitter to find possible credentials leaks in PwnDB or Dehashed and obtain Google account information via GHunt.

License: GNU General Public License v3.0

Python 97.35% Dockerfile 2.63% Shell 0.02%
dehashed ghunt hacking haveibeenpwned instagram instagram-api linkedin-api osint pentesting-tools pwndb social-engineering twint

socialpwned's Introduction

SocialPwned

SocialPwned

Python 3.8 License: GPL v3

SocialPwned is an OSINT tool that allows to get the emails, from a target, published in social networks like Instagram, Linkedin and Twitter to find the possible credential leaks in PwnDB or Dehashed and obtain Google account information via GHunt.

The purpose of this tool is to facilitate the search for vulnerable targets during the phase of Footprinting in an Ethical Hacking. It is common for employees of a company to publish their emails in social networks, either professional or personal, so if these emails have their credentials leaked, it is possible that the passwords found have been reused in the environment to be audited. If it’s not the case, at least you would have an idea of the patterns that follow this target to create the passwords and be able to perform other attacks with a higher level of effectiveness.

SocialPwned uses different modules:

  • Instragram: Making use of the unofficial Instagram API from @LevPasha, different methods were developed to obtain the emails published by users. An Instagram account is required.
  • Linkedin: Using @tomquirk's unofficial Linkedin API, different methods were developed to obtain a company's employees and their contact information (email, twitter or phone). In addition, it is possible to add the employees found to your contacts, so that you can later have access to their network of contacts and information. This module also generates different files with combinations of possible usernames for an organization. A Linkedin account is required.
  • Twint: Using Twint from @twintproject you can track all the Tweets published by a user looking for some email. A Twitter account is not necessary.
  • PwnDB: Inspired by the tool PwnDB created by @davidtavarez a module has been developed that searches for all credential leaks from the emails found. In addition, for each email a POST request is made to HaveIBeenPwned to find out the source of the leak.
  • Dehashed: Provides clear passwords and also the hash of passwords that could not be cracked. It is necessary to pay at Dehashed to get an API Key, but it can be a good alternative when PwnDB is slow or does not provide results.
  • GHunt: Using the tool created by @mxrch, GHunt, it is possible to obtain information related to Google mails, e.g. reviews, profile picture, possible location or public calendar events.

Sponsor

Proxycurl APIs enrich people and company profiles with structured data

Scrape public LinkedIn profile data at scale with Proxycurl APIs.

• Scraping Public profiles are battle tested in court in HiQ VS LinkedIn case.
• GDPR, CCPA, SOC2 compliant
• High rate limit - 300 requests/minute
• Fast - APIs respond in ~2s
• Fresh data - 88% of data is scraped real-time, other 12% are not older than 29 days
• High accuracy
• Tons of data points returned per profile

Built for developers, by developers.

Installation 🛠

Easy way

$ service docker start
$ docker pull mrtuxx/socialpwned
$ docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --help

NOTE: You will need to have the docker service correctly installed.

Manual way

The installation of Tor depends on your system. On a Debian:

$ sudo apt-get install tor
$ /etc/init.d/tor start

Clone the repository using Git:

$ git clone https://github.com/MrTuxx/SocialPwned.git
$ cd SocialPwned
$ sudo pip3 install --user --upgrade git+https://github.com/twintproject/twint.git@origin/master#egg=twint
$ sudo pip3 install -r requirements.txt
$ sudo python3 socialpwned.py --credentials credentials.json --help

For the GHunt module to work correctly you must follow these steps:

Usage

To make use of the Instagram and Linkedin features you need to have an account created on each of the social networks. The credentials must be indicated in a JSON file:

{
    "instagram":{
        "username":"username",
        "password":"password"
    },
    "linkedin":{
        "email":"email",
        "password":"password"
    },
    "ghunt":{
        "SID":"SID",
        "SSID":"SSID",
        "APISID":"APISID",
        "SAPISID":"SAPISID",
        "HSID":"HSID"
    },
    "dehashed":{
         "email":"email",
         "apikey":"apikey"
    }
}

NOTE: The cookies necessary for the GHunt module to work can be obtained by following the steps explained here.

usage: socialpwned.py [-h] --credentials CREDENTIALS [--pwndb] [--tor-proxy PROXY] [--instagram] [--info QUERY]
                      [--location LOCATION_ID] [--hashtag-ig QUERY] [--target-ig USERNAME] [--search-users-ig QUERY]
                      [--my-followers] [--my-followings] [--followers-ig] [--followings-ig] [--linkedin]
                      [--company COMPANY_ID] [--search-companies QUERY] [--employees] [--my-contacts]
                      [--user-contacts USER_ID] [--search-users-in QUERY] [--target-in USERNAME] [--add-contacts]
                      [--add-a-contact USER_ID] [--twitter] [--limit LIMIT] [--year YEAR] [--since DATE]
                      [--until DATE] [--profile-full] [--all-tw] [--target-tw USERNAME] [--hashtag-tw USERNAME]
                      [--followers-tw] [--followings-tw] [--ghunt] [--email-gh [email protected]] [--dehashed]
                      [--email-dh [email protected]]

If you do a pull of the docker image you should run:

docker run -v $(pwd)/<YOUR CREDENTIALS JSON FILE>:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json <COMMANDS>

Tips 📌

  1. Keep Linkedin and Instagram sessions in a browser to resolve possible blocks. Interact in a normal way.

  2. Before trying to get all the emails of an organization's employees on Linkedin make sure you have a wide network of contacts, friends in common and some employees added to your network. Many times you can't see a contact's information if they are not in your network.

  3. Try not to perform massive searches to avoid being blocked.

  4. Combine the modules when it is a specific target or will not handle a large amount of information, otherwise it may fail or you will be blocked.

Output format 💾

Each time SocialPwned is run, a directory with the following format will be generated:

output
└── session_year_month_day_time
    ├── dehashed
    │   ├── raw_dehashed.txt
    │   └── socialpwned_dehashed.txt
    ├── emails
    │   └── socialpwned_emails.txt
    ├── instagram
    │   └── socialpwned_instagram.txt
    ├── linkedin_userames
    │   ├── first.last.txt
    │   ├── firstl.txt
    │   ├── first.txt
    │   ├── f.last.txt
    │   ├── flast.txt
    │   ├── lastf.txt
    │   └── rawnames.txt
    ├── pwndb
    │   ├── passwords_pwndb.txt
    │   ├── pwndb.txt
    │   └── socialpwned_pwndb.txt
    ├── socialpwned.json
    └── twitter
        └── socialpwned_twitter.txt
  • The dehashed directory contains the raw API information in one file and the email-related passwords in another.
  • The pwndb directory contains a file with only the passwords, another one with the passwords and related emails and finally a file that adds the sources of the leaks.
  • The emails directory contains a file with all the emails obtained.
  • The instagram directory contains a file with user accounts and their related email addresses.
  • The twitter directory contains a file with user accounts and their related email addresses.
  • The linkedin directory contains different files with combinations of user names obtained. Inspired by the linkedin2username tool.
  • The socialpwned.json file provides in JSON format all the information obtained by SocialPwned and its different modules. Where the ID of each item is the email, in case you have information about a user but not his email, the ID will be his unique social network identifier.

Basic Examples and Combos 🚀

Video Demo

SocialPwned

Here are some examples:

Instagram

SocialPwned SocialPwned

docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --instagram --info España
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --instagram --location 832578276
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --instagram --hashtag-ig someHashtag --pwndb
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --instagram --target-ig username --pwndb
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --instagram --target-ig username --followers-ig --followings-ig --pwndb

Linkedin

SocialPwned SocialPwned SocialPwned

docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --linkedin --search-companies "My Target"
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --linkedin --search-companies "My Target" --employees --pwndb
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --linkedin --company 123456789 --employees --pwndb
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --linkedin --company 123456789 --employees --add-contacts
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --linkedin --user-contacts user-id --pwndb
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --linkedin --user-contacts user-id --add-contacts

Twitter

SocialPwned

docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --twitter --hashtag-tw someHashtag --pwndb --limit 200 --dehashed
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --twitter --target-tw username --all-tw --pwndb --dehashed --ghunt
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --twitter --target-tw username --all-tw --followers-tw --followings-tw --pwndb

GHunt

SocialPwned

docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --ghunt --email-gh "[email protected]"

NOTE: Whenever you add the --ghunt flag this module will be executed. If you do it in a bulk search it may fail due to the amount of requests.

Dehashed

SocialPwned

docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --dehashed --email-dh "[email protected]"

NOTE: Adding the --dehashed flag at the end of each search will make an API request for each email.

Combos

docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --instagram --target-ig username --followers-ig --followings-ig --linkedin --company 123456789 --employees --twitter --target-tw username --all-tw --pwndb --ghunt --dehashed
docker run -v $(pwd)/credentials.json:/socialpwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --instagram --target-ig username --linkedin --target-in username --twitter --target-tw username --all-tw --pwndb --ghunt --dehashed

References 📚

Disclaimer ⚠️

The usage of SocialPwned to attack targets without prior mutual consent is illegal. In addition, it makes use of different modules that violate Linkedin and Instagram rules, therefore, you will be banned temporarily or permanently.

It is the responsibility of the end user to use SocialPwned. The developers are not responsible and are not liable for any misuse or damage caused.

socialpwned's People

Contributors

mrtuxx avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

socialpwned's Issues

Error with twint despite already running commands

I have tried all the troubleshooting for twint, using the commands listed, but without success. I keep getting this errror: Traceback (most recent call last): File "/home/kali/Desktop/osint/SocialPwned/socialpwned.py", line 4, in <module> from core.main import run File "/home/kali/Desktop/osint/SocialPwned/core/main.py", line 10, in <module> from core import twitter File "/home/kali/Desktop/osint/SocialPwned/core/twitter.py", line 5, in <module> from lib.TwitterAPI import Twitter File "/home/kali/Desktop/osint/SocialPwned/lib/TwitterAPI/Twitter.py", line 4, in <module> import twint File "/root/.local/lib/python3.9/site-packages/twint/__init__.py", line 14, in <module> from . import run File "/root/.local/lib/python3.9/site-packages/twint/run.py", line 4, in <module> from . import datelock, feed, get, output, verbose, storage File "/root/.local/lib/python3.9/site-packages/twint/get.py", line 6, in <module> import aiohttp File "/usr/lib/python3/dist-packages/aiohttp/__init__.py", line 6, in <module> from .client import ( File "/usr/lib/python3/dist-packages/aiohttp/client.py", line 35, in <module> from . import hdrs, http, payload File "/usr/lib/python3/dist-packages/aiohttp/http.py", line 7, in <module> from .http_parser import ( File "/usr/lib/python3/dist-packages/aiohttp/http_parser.py", line 15, in <module> from .helpers import NO_EXTENSIONS, BaseTimerContext File "/usr/lib/python3/dist-packages/aiohttp/helpers.py", line 667, in <module> class CeilTimeout(async_timeout.timeout): TypeError: function() argument 'code' must be code, not str How can I fix? Help pls

ImportError: No module named requests_toolbelt

Hi,

I got this issue when I launch : python socialpwned.py

Traceback (most recent call last):
File "socialpwned.py", line 4, in
from core.main import run
File "/home/blakibali/Bureau/SocialPwned/core/main.py", line 4, in
from lib.InstagramAPI import InstagramAPI
File "/home/blakibali/Bureau/SocialPwned/lib/InstagramAPI/init.py", line 1, in
from .InstagramAPI import *
File "/home/blakibali/Bureau/SocialPwned/lib/InstagramAPI/InstagramAPI.py", line 18, in
from requests_toolbelt import MultipartEncoder
ImportError: No module named requests_toolbelt

So the application doesn't work du to this message.

Hope u answer me

Regards,

Help needed

Hi how can i fix this when i’m trying to see instagram emails:

Traceback(most recent call last):
File “/home/kali/SocialPwned/socialpwned.py”, Line 51 in
run(args)
file “home/kali/SocialPwned/core/main.py”, line 209 is in run
results.extended(instagramParameters(args, ig_username, ig_password))
File “home/kali/SocialPwned/core/main.py”, line 41, in instagramParameters
api = instagramAPI (ig_username, ig_password)
File “home/kali/SocialPwned/lib/InstagramAPI/InstagramAPI.py” Line 69, in AttributeError: ‘NoneType’ object has no attribute ‘encode’

AttributeError: module 'lib' has no attribute 'LinkedInAPI'

Hello,

I read carefully your (F)Manual to install all the prerequisites and use your tool.

However I get this error message:

AttributeError: module 'lib' has no attribute 'LinkedInAPI'

LinkedInAPI

FYI I'm using Python 3.6.8:

LinkedInAPI2

Do you have an idea? I forgot something?..

BUG install twint (disable it)

Debian 12 (x64) pip

  Building wheel for cchardet (setup.py) ... error
  error: subprocess-exited-with-error
  
  × python setup.py bdist_wheel did not run successfully.
  │ exit code: 1
  ╰─> [23 lines of output]
      running bdist_wheel
      running build
      running build_py
      creating build
      creating build/lib.linux-x86_64-cpython-311
      creating build/lib.linux-x86_64-cpython-311/cchardet
      copying src/cchardet/version.py -> build/lib.linux-x86_64-cpython-311/cchardet
      copying src/cchardet/__init__.py -> build/lib.linux-x86_64-cpython-311/cchardet
      running build_ext
      building 'cchardet._cchardet' extension
      creating build/temp.linux-x86_64-cpython-311
      creating build/temp.linux-x86_64-cpython-311/src
      creating build/temp.linux-x86_64-cpython-311/src/cchardet
      creating build/temp.linux-x86_64-cpython-311/src/ext
      creating build/temp.linux-x86_64-cpython-311/src/ext/uchardet
      creating build/temp.linux-x86_64-cpython-311/src/ext/uchardet/src
      creating build/temp.linux-x86_64-cpython-311/src/ext/uchardet/src/LangModels
      x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -Isrc/ext/uchardet/src -I/usr/include/python3.11 -c src/cchardet/_cchardet.cpp -o build/temp.linux-x86_64-cpython-311/src/cchardet/_cchardet.o
      src/cchardet/_cchardet.cpp:196:12: fatal error: longintrepr.h: File o directory non esistente
        196 |   #include "longintrepr.h"
            |            ^~~~~~~~~~~~~~~
      compilation terminated.
      error: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
  ERROR: Failed building wheel for cchardet
  Running setup.py clean for cchardet
  Building wheel for googletransx (setup.py) ... done
  Created wheel for googletransx: filename=googletransx-2.4.2-py3-none-any.whl size=15953 sha256=395307c7fc539c6f8bdb052b90a01075d3dd37b025c06494fe2b4fe276ab5725
  Stored in directory: /root/.cache/pip/wheels/b1/35/1b/145e2fa3229232fce5e9de984e82843abf7c1a27cec582398e
Successfully built twint googletransx
Failed to build cchardet
Installing collected packages: dataclasses, cchardet, schedule, multidict, googletransx, frozenlist, elastic-transport, async-timeout, yarl, pycares, elasticsearch, aiosignal, aiohttp, aiodns, aiohttp_socks, twint
  Running setup.py install for cchardet ... error
  error: subprocess-exited-with-error
  
  × Running setup.py install for cchardet did not run successfully.
  │ exit code: 1
  ╰─> [25 lines of output]
      running install
      /usr/lib/python3/dist-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
        warnings.warn(
      running build
      running build_py
      creating build
      creating build/lib.linux-x86_64-cpython-311
      creating build/lib.linux-x86_64-cpython-311/cchardet
      copying src/cchardet/version.py -> build/lib.linux-x86_64-cpython-311/cchardet
      copying src/cchardet/__init__.py -> build/lib.linux-x86_64-cpython-311/cchardet
      running build_ext
      building 'cchardet._cchardet' extension
      creating build/temp.linux-x86_64-cpython-311
      creating build/temp.linux-x86_64-cpython-311/src
      creating build/temp.linux-x86_64-cpython-311/src/cchardet
      creating build/temp.linux-x86_64-cpython-311/src/ext
      creating build/temp.linux-x86_64-cpython-311/src/ext/uchardet
      creating build/temp.linux-x86_64-cpython-311/src/ext/uchardet/src
      creating build/temp.linux-x86_64-cpython-311/src/ext/uchardet/src/LangModels
      x86_64-linux-gnu-gcc -Wsign-compare -DNDEBUG -g -fwrapv -O2 -Wall -g -fstack-protector-strong -Wformat -Werror=format-security -g -fwrapv -O2 -fPIC -Isrc/ext/uchardet/src -I/usr/include/python3.11 -c src/cchardet/_cchardet.cpp -o build/temp.linux-x86_64-cpython-311/src/cchardet/_cchardet.o
      src/cchardet/_cchardet.cpp:196:12: fatal error: longintrepr.h: File o directory non esistente
        196 |   #include "longintrepr.h"
            |            ^~~~~~~~~~~~~~~
      compilation terminated.
      error: command '/usr/bin/x86_64-linux-gnu-gcc' failed with exit code 1
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: legacy-install-failure

× Encountered error while trying to install package.
╰─> cchardet

note: This is an issue with the package mentioned above, not pip.
hint: See above for output from the failure.

This package in the github repository is no longer maintained

Can't login in accounts

The docker returns an error like:
[!] Can't Login to Instagram!
for all services in credentials.json, LinkedIn, etc.
the credentials are correct I've checked it several times.

Request example:
sudo docker run -v $(pwd)/credentials.json:/home/.../SocialPwned/credentials.json -v $(pwd)/output:/socialpwned/output -it mrtuxx/socialpwned socialpwned.py --credentials credentials.json --instagram --target-ig pavlosidelov

KeyError: 'user'

After the first scan where wasn't any Problems, I got this Error to all Users I search :

[+] Successful login to Instagram!

[-] Searching users with emails :)
Traceback (most recent call last):
File "/home/kali/Tools/invest/SOCIAL/SocialPwned/socialpwned.py", line 51, in
run(args)
File "/home/kali/Tools/invest/SOCIAL/SocialPwned/core/main.py", line 209, in run
results.extend(instagramParameters(args,ig_username,ig_password))
File "/home/kali/Tools/invest/SOCIAL/SocialPwned/core/main.py", line 52, in instagramParameters
temp = instagram.getUserInformation(api,args.target_ig)
File "/home/kali/Tools/invest/SOCIAL/SocialPwned/core/instagram.py", line 95, in getUserInformation
if not checkUserVisibility(api,info["user"].get("pk")) and results == []:
KeyError: 'user'

Please tell me how I can fix it ?

Greetz : )

Nothing happens

If i go:
python3 socialpwned.py --credentials credentials.json --target-ig XXX
nothing happens:

image

SocialPwned

Hi I’m trying to run socialpwned,I’m still pretty new to this and wanted to ask how do I make a JSON file because i keep getting “The file can’t be accessed “or am I doing something else wrong?

KeyError: 'data"

Hello,

I have an error while trying to scrap Linkedn. it is able to get the list of companies but when trying to get the employees, it fail at some point. I tried this on a basic Ubuntu with python3.
Thanks for the script anyway :)

Here is the command :
python3 socialpwned.py --credentials creds.json --output out.txt --linkedin --search-companies "MyCompany" --employees --pwndb

And here is the output :

Traceback (most recent call last):
  File "socialpwned.py", line 51, in <module>
    run(args)
  File "SocialPwned/core/main.py", line 214, in run
    results.extend(linkedinParameters(args,in_email,in_password))
  File "SocialPwned/core/main.py", line 109, in linkedinParameters
    users = linkedin.getCompanyEmployees(api,companies)
  File "SocialPwned/core/linkedin.py", line 46, in getCompanyEmployees
    employees = searchUsersOfCompany(api,nameCompany)
  File "SocialPwned/core/linkedin.py", line 84, in searchUsersOfCompany
    employees = api.search_people(keywords=nameCompany)
  File "SocialPwned/lib/LinkedInAPI/linkedin.py", line 177, in search_people
    data = self.search(params, limit=limit)
  File "SocialPwned/lib/LinkedInAPI/linkedin.py", line 107, in search
    for i in range(len(data["data"]["elements"])):
KeyError: 'data'

Instagram API issues

Seems like the instagram API repo has been deleted and the script doesnt work

Not authorized

[+] Successful login to Instagram!

[-] Searching users with emails:)
[!] You are not authorized to view this user

^ what do i do?

Socialpwned error

Always the same error, vmware kali 2022.4 , 2023.2-3, any idea?

[+] Successful login to Instagram!

Traceback (most recent call last):
File "/home/kali/SocialPwned/socialpwned.py", line 56, in
run(args)
File "/home/kali/SocialPwned/core/main.py", line 236, in run
results.extend(instagramParameters(args,ig_username,ig_password,out_dir))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/kali/SocialPwned/core/main.py", line 35, in instagramParameters
instagram.getLocationID(api,args.info)
File "/home/kali/SocialPwned/core/instagram.py", line 89, in getLocationID
items = api.LastJson["items"]
~~~~~~~~~~~~^^^^^^^^^
KeyError: 'items'

OSError: [WinError 6] The handle is invalid

Traceback (most recent call last):
File "Downloads\PortableGit\SocialPwned\SocialPwned.py", line 8, in
banner.banner()
File "Downloads\PortableGit\SocialPwned\core\banner.py", line 41, in banner
centered = line.center(os.get_terminal_size().columns)
OSError: [WinError 6] The handle is invalid

ModuleNotFoundError: No module named 'twint'

whenever i run this command
python3 socialpwned.py --credentials credentials.json --instagram --target-ig mhd_alashhab --followers-ig --followings-ig --pwndb

i get his error

Traceback (most recent call last):
File "/home/kali/SocialPwned/socialpwned.py", line 4, in
from core.main import run
File "/home/kali/SocialPwned/core/main.py", line 10, in
from core import twitter
File "/home/kali/SocialPwned/core/twitter.py", line 5, in
from lib.TwitterAPI import Twitter
File "/home/kali/SocialPwned/lib/TwitterAPI/Twitter.py", line 4, in
import twint
ModuleNotFoundError: No module named 'twint'

Can´t login to instagram

tried python3 socialpwned.py --credentials credentials.json --instagram --target-ig kimkardashian --pwndb and got [!] Can't Login to Instagram!, already checked the password in credentials.json being correct and instagram not asking for 2FA

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.