Skip to content

Commit

Permalink
Readme added
Browse files Browse the repository at this point in the history
  • Loading branch information
soxoj committed Feb 1, 2021
1 parent 184c448 commit 90af54a
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 3 deletions.
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,27 @@
# YaSeeker
Yandex OSINT tool

## Description

YaSeeker - an OSINT tool to get info about any Yandex account using email or login.

It can find:
- Fullname
- Photo
- Gender
- Yandex UID
- Yandex Public ID
- Linked social accounts
- Activity (count of reviews, comments; subscribers and subscriptions)
- Account features (is it verified, banned, deleted, etc.)

Checked Yandex services: Music, Collections, Bugbounty, Reviews, Q (Znatoki), Zen, Market.

## Installation

Python 3.6+ and pip are required.

pip3 install -r requirements.txt

## Usage

python3 ya_seeker.py login
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
socid-extractor==0.0.6
socid-extractor>=0.0.7
8 changes: 7 additions & 1 deletion ya_seeker.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,18 @@ def get_znatoki_info(self) -> dict:
def get_zen_info(self) -> dict:
return self.simple_get_info_request(f'https://zen.yandex.ru/user/{self.identifier}')

def get_market_info(self) -> dict:
return self.simple_get_info_request(f'https://market.yandex.ru/user/{self.identifier}/reviews')


def main():
if len(sys.argv) > 1:
username = sys.argv[1]
else:
username = input('Enter Yandex profile username (email name before @yandex): ')
username = input('Enter Yandex username / login / email: ')

username = username.split('@')[0]
print(f'Get info about {username}...')

username_obj = YaUsername(username)
username_obj.collect()
Expand Down

0 comments on commit 90af54a

Please sign in to comment.