vkOsint - Python package for searching vk accounts by phone number
Features:
- Authorization by login and password
- Tokens parsing
- Accounts searching by phone number
- Source code contains all the api's hash functionality
Package uses Private api without selenium.
Developed by reverse engineering & api sniffing
Support Python >= 3.10
ToDo
Installation
$ pip install vkOsint
Basic Usage
import json
from vkOsint import vkOsint
vkInstance = vkOsint(proxy='[proxy]')
vkInstance.login(username='[login]',password='[password]')
parsedData = vkInstance.osint(phoneNumbers=['+7..........','+7..........'])
with open('results.json','w') as file:
json.dump(parsedData,file,indent=4,ensure_ascii=True)