-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,53 @@ | ||
# BlackScrapper | ||
Credit Card Scrapper from Channels & groups, Made for Educational Purposes only. | ||
|
||
# Telegram Credit Card Scraper Bot | ||
|
||
This Telegram bot is designed to scrape messages from different groups or channels and extract credit card information. The extracted data is then sent to a specified channel of your choice. This bot is intended for educational purposes only and should not be used for any illegal activities. | ||
|
||
## Features | ||
|
||
- Scrapes messages from specified Telegram groups or channels. | ||
- Filters out credit card information using regular expressions. | ||
- Performs BIN lookup to retrieve information about the credit card. | ||
- Sends the formatted credit card information to a specified Telegram channel. | ||
- Adds random delays to simulate more human-like behavior. | ||
|
||
## Installation | ||
|
||
1. Clone this repository: | ||
|
||
```bash | ||
git clone https://github.com/your-repository/telegram-card-scraper-bot.git | ||
cd telegram-card-scraper-bot | ||
``` | ||
|
||
2. Install the required Python libraries: | ||
|
||
```bash | ||
pip install -r requirements.txt | ||
``` | ||
|
||
3. Replace the placeholder values in `main.py` with your actual Telegram API credentials: | ||
|
||
```python | ||
api_id = 'YOUR_API_ID' | ||
api_hash = 'YOUR_API_HASH' | ||
phone_number = 'YOUR_PHONE_NUMBER' | ||
``` | ||
|
||
## Usage | ||
|
||
1. Start the bot: | ||
|
||
```bash | ||
python main.py | ||
``` | ||
|
||
2. The bot will automatically start scraping messages from the configured groups or channels and send the extracted information to your specified channel. | ||
|
||
## Disclaimer | ||
|
||
This bot is meant for educational purposes only. The use of this bot for illegal activities such as unauthorized access to information or credit card fraud is strictly prohibited. The authors do not take any responsibility for any misuse of this bot. | ||
|
||
## License | ||
|
||
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for more details. |