Skip to main content

Telegram Scraper - a python tool to reckoning Telegram group member Details


     


The TeleGram-Scraper tool developed in python used to fetch all information about group members. This working on Telegram API. Follow the below procedures to install the tool.




Telegram API Setup


  • Go to http://my.telegram.org and log in
  • Click on API development tools and fill in the required fields.
  • put app name you want & select other in platform Example :
  • copy "api_id" & "api_hash" after clicking create an app ( will be used in setup.py )

How To Install and Use

$ pkg install -y git python

$ git clone https://github.com/th3unkn0n/TeleGram-Scraper.git

$ cd TeleGram-Scraper


Application dependencies


$ python3 setup.py -i 



setup configuration file ( apiID, apiHASH )

$ python3 setup.py -c



To Generate User Data (You will get OTP on Telegram)

$ python3 scraper.py 



(
 members.csv is the default if you changed the name to use it )
Send Bulk SMS To Collected Data
$ python3 smsbot.py members.csv



Update Tool

$ python3 setup.py -u



ISSUES on Installation :

Mostly you will get the pip module "Telethon" installation error. Avoid by following the below steps.

 $pip install setuptools                                                     
 $git clone https://github.com/LonamiWebs/Telethon.git     
 $python3 setup.py install                                                



Comments

Popular posts from this blog

KARMA - Search for leaked Emails and Passwords

Hi Everyone, In this article we going to introduce the tool is KARMA.Its used to collect pwned Email address and passwords from pwndb. The tool is written in python3. So, you must need Python3 inside your machine . INSTALL sudo apt install tor python3 python3-pip git clone https :// github . com / decoxviii / karma . git ; cd karma sudo -H pip3 install -r requirements.txt python3 bin/karma.py --help TEST All the tests were done in  Debian/Ubuntu . Search emails with the password:  123456789 python3 bin/karma.py search '123456789' --password -o test1 Search emails with the local-part:  johndoe python3 bin/karma.py search 'johndoe' --local-part -o test2 Search emails with the domain:  hotmail . com python3 bin/karma.py search ' hotmail . com ' --domain -o test3 Search email password:  johndoe@unknown.com python3 bin/karma.py target 'johndoe@unknown.com' -o test4 DEMO VIDEO