Yandex OSINT tool

Overview

YaSeeker

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), O (Classified), Zen, Market, Messenger.

Installation

Python 3.6+ and pip are required.

pip3 install -r requirements.txt

Usage

$ python3 ya_seeker.py login
[*] Get info by username `login`...

[+] Yandex.Collections
	URL: https://yandex.ru/collections/user/login/
	Yandex_public_id: c48fhxw0qppa50289r5c9ku4k4
	Fullname: haxxor elite
	Image: https://avatars.mds.yandex.net/get-yapic/24700/enc-0f504b0d68d5f6fb0d336e2157b44e88ef2225aff6a621016f4dccad990b5d3e/islands-200
	Likes: 0
	Cards: 0
	Boards: 0
	Is_passport: True
	Is_restricted: False
	Is_forbid: False
	Is_km: False
	Is_business: False

[+] Yandex.Music
	URL: https://music.yandex.ru/users/login/playlists
	Yandex_uid: 266797119
	Username: login
...

$ python3 ya_seeker.py c48fhxw0qppa50289r5c9ku4k4 yandex_public_id
[*] Get info by yandex_public_id `c48fhxw0qppa50289r5c9ku4k4`...

[+] Yandex.Collections API
	URL: https://yandex.ru/collections/user/c48fhxw0qppa50289r5c9ku4k4/
	Yandex_public_id: c48fhxw0qppa50289r5c9ku4k4
	Fullname: haxxor elite
	Image: https://avatars.mds.yandex.net/get-yapic/24700/enc-0f504b0d68d5f6fb0d336e2157b44e88ef2225aff6a621016f4dccad990b5d3e/islands-200
	Likes: 0
	Cards: 0
	Boards: 0
	Is_passport: True
	Is_restricted: False
	Is_forbid: False
	Is_km: False
	Is_business: False

[+] Yandex.Reviews
	URL: https://reviews.yandex.ru/user/c48fhxw0qppa50289r5c9ku4k4
	Yandex_public_id: c48fhxw0qppa50289r5c9ku4k4
...

Cookies

Some services are required cookies for API requests. Follow next steps to use your cookies for YaSeeker:

  1. Login into Yandex through your browser.
  2. Install any extension to download all the Ya cookies in Netscape format aka cookies.txt (Chrome, Firefox).
  3. Save it to the directory of YaSeeker in file cookies.txt.
  4. Run script and enjoy!
You might also like...
Hermes Bytecode Reverse Engineering Tool (Assemble/Disassemble Hermes Bytecode)
Hermes Bytecode Reverse Engineering Tool (Assemble/Disassemble Hermes Bytecode)

hbctool A command-line interface for disassembling and assembling the Hermes Bytecode. Since the React Native team created their own JavaScript engine

An integrated information collection tool

infoscaner 环境配置 目前infoscaner仅支持在linux上运行,建议运行在最新版本的kali中 infoscaner是基于python3版本实现的,运行之前首先安装python库 如果同时存在python2和python3,请输入以下命令 pip3 install -r requi

A tool for exporting Telegram group chats into static websites, preserving chat history like mailing list archives.
A tool for exporting Telegram group chats into static websites, preserving chat history like mailing list archives.

tg-archive is a tool for exporting Telegram group chats into static websites, preserving chat history like mailing list archives. Preview The @fossuni

A little proxy tool based on Tencent Cloud Function Service.
A little proxy tool based on Tencent Cloud Function Service.

SCFProxy 一个基于腾讯云函数服务的免费代理池。 安装 python3 -m venv .venv source .venv/bin/activate pip3 install -r requirements.txt 项目配置 函数配置 开通腾讯云函数服务 在 函数服务 新建 中使用自定义

修改自SharpNoPSExec的基于python的横移工具 A Lateral Movement Tool Learned From SharpNoPSExec  --  Twitter: @juliourena
修改自SharpNoPSExec的基于python的横移工具 A Lateral Movement Tool Learned From SharpNoPSExec -- Twitter: @juliourena

PyNoPSExec A Lateral Movement Tool Learned From SharpNoPSExec -- Twitter: @juliourena 根据@juliourena大神的SharpNOPsExec项目改写的横向移动工具 Platform(平台): Windows 1

GG Dorking is a tool to generate GitHub and Google dorking for pentesters and bug bounty hunters.
GG Dorking is a tool to generate GitHub and Google dorking for pentesters and bug bounty hunters.

GG-Dorking GG Dorking is a python tool to generate GitHub and Google dorking links for pentesters and bug bounty hunters. It will help you to find imp

A pre-attack hacker tool which aims to find out sensitives comments in HTML comment tag and to help on reconnaissance process
A pre-attack hacker tool which aims to find out sensitives comments in HTML comment tag and to help on reconnaissance process

Find Out in Comment Find sensetive comment out in HTML ⚈ About This is a pre-attack hacker tool that searches for sensitives words in HTML comments ta

A Tool to scrape URLs for a given domain from wayback machine, Commoncrawl and OTX Alienvault
A Tool to scrape URLs for a given domain from wayback machine, Commoncrawl and OTX Alienvault

Mr_URL Mr.URL fetches known URLs for a given domain from Wayback Machine, Commoncrawl and OTX Alienvault. It also finds old versions of any given URL

Pinopoly is a tool to remove the
Pinopoly is a tool to remove the "banker" player and replace them with a digitalized system

Pinopoly is a tool to remove the "banker" player and replace them with a digitalized system. It is intended to be used on a Raspberry Pi but can be used in the command line as well.

Comments
  • Исправления значений по умолчанию в методах

    Исправления значений по умолчанию в методах

    Доброго времени суток!

    Обусловлено ли чем-то создание словарей и списков непосредственно в параметрах по умолчанию?

    Если нет, было бы лучше определить их как None, проверять внутри метода/функции и уже после создавать. Стоит избегать инициализацию изменяемых объектов в параметрах по умолчанию, если это возможно

    opened by FieryDruid 1
Owner
HowToFind
Nonprofit project aimed at simplifying investigations and creating new OSINT methodologies
HowToFind
OSINT tool to get information from a Github and Gitlab profile and find user's email addresses leaked on commits.

gitrecon OSINT tool to get information from a Github or Gitlab profile and find user's email addresses leaked on commits. ?? How does this work? GitHu

GOΠZO 211 Dec 17, 2022
A twitter multi-tool for OSINT on twitter accounts.

>TwitterCheckr A twitter multi-tool for OSINT on twitter accounts. Infomation TwitterCheckr also known as TCheckr is multi-tool for OSINT on twitter a

IRIS 16 Dec 23, 2022
Public release of Telepathy, an OSINT toolkit for investigating Telegram groups. Enhanced features and improvements will be added over time.

Telepathy Welcome to Telepathy, an OSINT toolkit for scraping Telegram data to help investigate shady goings on. Currently, the tool is limited to scr

Jordan Wildon 484 Jan 1, 2023
SEMID - OSINT module with lots of discord functions

SEMID Framework About Semid is a framework with different Discord functions and

Hima 20 Sep 23, 2022
TheTimeMachine - Weaponizing WaybackUrls for Recon, BugBounties , OSINT, Sensitive Endpoints and what not

The Time Machine - Weaponizing WaybackUrls for Recon, BugBounties , OSINT, Sensi

Anmol K Sachan 112 Dec 29, 2022
📷 Instagram Bot - Tool for automated Instagram interactions

InstaPy Tooling that automates your social media interactions to “farm” Likes, Comments, and Followers on Instagram Implemented in Python using the Se

Tim Großmann 13.5k Dec 1, 2021
A tool for extracting plain text from Wikipedia dumps

WikiExtractor WikiExtractor.py is a Python script that extracts and cleans text from a Wikipedia database dump. The tool is written in Python and requ

Giuseppe Attardi 3.2k Dec 31, 2022
A tool that helps keeping track of your AWS quota utilization

aws-quota-checker A tool that helps keeping track of your AWS quota utilization. It'll determine the limits of your AWS account and compare them to th

Max 63 Dec 14, 2022
An automated tool that fetches information about your crypto stake and generates historical data in time.

Introduction Yield explorer is a WIP! I needed a tool that would show me historical data and performance of my staked crypto but was unable to find a

Sedat Can Yalçın 42 Nov 26, 2022