Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding new platforms #16

Open
11 tasks
iojw opened this issue Feb 4, 2020 · 12 comments
Open
11 tasks

Adding new platforms #16

iojw opened this issue Feb 4, 2020 · 12 comments
Labels
enhancement New feature or request

Comments

@iojw
Copy link
Owner

iojw commented Feb 4, 2020

This serves as the central issue for tracking the progress of adding new platforms to this tool. I've grouped them into a few categories.

Doable

I've researched into these platforms and they can be added to socialscan. Adding these in will take time so I try to add them in based on priority once I have the time.

  • Paypal email
  • Last.fm
  • about.me

Feel free to send in a PR if you are able to implement any of these platforms.

To research

This platforms will need to be investigated to see if they can be added into socialscan:

Feel free to comment if you have done any research or have any information regarding how to query these platforms.

Not adding

These platforms will not be added into socialscan because their current implementation does not allow socialscan to easily query them:

Email: GitLab, Reddit
Username: Spotify, Pinterest

Related issues: #1, #6

@iojw iojw added the enhancement New feature or request label Feb 4, 2020
@iojw iojw pinned this issue Feb 4, 2020
@Lucky97
Copy link

Lucky97 commented Feb 14, 2020

can you please add mail.com ?

@nosovk
Copy link

nosovk commented Feb 15, 2020

https://osint.support/chrome-extensions/2019/09/29/osint-socmint-tooling.html
now will cause security lock of an account now :(

@Lucky97
Copy link

Lucky97 commented Feb 18, 2020

can i get Pinterest profile link via email ?

@iojw
Copy link
Owner Author

iojw commented Feb 18, 2020

@Lucky97 Sorry, that won't be possible due to how this tool works. I've also added mail.com to the list of platforms in the main post.

@nosovk I see. For which platform specifically? Do you have any additional information regarding this issue? I haven't had time to research into exactly what that tool does.

@Lucky97
Copy link

Lucky97 commented Feb 18, 2020

@Lucky97 Sorry, that won't be possible due to how this tool works. I've also added mail.com to the list of platforms in the main post.

ok where is your main post?

@Lucky97
Copy link

Lucky97 commented Feb 18, 2020

can i get facebook friends email list? via your any chorme extension? and also i need emails graber for facebook..

@iojw
Copy link
Owner Author

iojw commented Feb 19, 2020

@Lucky97 I'm referring to the main post of this GitHub issue. Also FYI, the chrome extension isn't developed by me - it was just a tool I was linked that I was planning to look into, For your requests, I can add it to the backlog but currently there's only me working on this. I'm happy to welcome any contributions if you would like to look into it 👍

@Lucky97
Copy link

Lucky97 commented Feb 20, 2020

@Lucky97 I'm referring to the main post of this GitHub issue. Also FYI, the chrome extension isn't developed by me - it was just a tool I was linked that I was planning to look into, For your requests, I can add it to the backlog but currently there's only me working on this. I'm happy to welcome any contributions if you would like to look into it

thanks man

@sdushantha
Copy link

@iojw If you would like to add Firefox, here is the post request for checking if an email exists or not:

#!/usr/bin/env python

import requests

headers = {
    'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:74.0) Gecko/20100101 Firefox/74.0',
    'Accept': '*/*',
    'Accept-Language': 'en-US,en;q=0.5',
    'Referer': 'https://accounts.firefox.com/',
    'Content-Type': 'application/json',
    'Origin': 'https://accounts.firefox.com',
    'Connection': 'keep-alive',
}

data = '{"email":"youremail@gmail.com"}'

response = requests.post('https://api.accounts.firefox.com/v1/account/status', headers=headers, data=data)

print(response.json().get("exists"))

@sdushantha
Copy link

VSCO

import requests

username = "user123"
email = "username@gmail.com"
headers = {
    'Authorization': 'Bearer 7356455548d0a1d886db010883388d08be84d0c9',
}


r = requests.get(f'https://api.vsco.co/2.0/sites/available?site={username}', headers=headers)
print(r.json())


r = requests.get(f'https://api.vsco.co/2.0/users/email?email={email}', headers=headers)
print(r.json())

If email exists:

{'email_status': 'has_account', 'consent': None}

If email does not exist:

{'email_status': 'no_account', 'consent': None}

If username exists:

{'site': 'user123.vsco.co', 'available': 0}

If username does not exist:

{'site': 'usersfajd123.vsco.co', 'available': 1}

@Lucky97
Copy link

Lucky97 commented Jan 19, 2021

hi can you make binance email checker?

@codeswhite
Copy link

There are theese online name checkers:
https://namechk.com/
https://checkuser.org/
I believe we can port their functionality to the CLI :))

@iojw iojw unpinned this issue Jan 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

5 participants