Code Monkey home page Code Monkey logo

Comments (12)

nosovk avatar nosovk commented on May 28, 2024 1

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

from socialscan.

iojw avatar iojw commented on May 28, 2024 1

@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 👍

from socialscan.

sdushantha avatar sdushantha commented on May 28, 2024 1

@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":"[email protected]"}'

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

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

from socialscan.

Lucky97 avatar Lucky97 commented on May 28, 2024

can you please add mail.com ?

from socialscan.

Lucky97 avatar Lucky97 commented on May 28, 2024

can i get Pinterest profile link via email ?

from socialscan.

iojw avatar iojw commented on May 28, 2024

@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.

from socialscan.

Lucky97 avatar Lucky97 commented on May 28, 2024

@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?

from socialscan.

Lucky97 avatar Lucky97 commented on May 28, 2024

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

from socialscan.

Lucky97 avatar Lucky97 commented on May 28, 2024

@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

from socialscan.

sdushantha avatar sdushantha commented on May 28, 2024

VSCO

import requests

username = "user123"
email = "[email protected]"
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}

from socialscan.

Lucky97 avatar Lucky97 commented on May 28, 2024

hi can you make binance email checker?

from socialscan.

codeswhite avatar codeswhite commented on May 28, 2024

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

from socialscan.

Related Issues (20)

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.