Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
AnukarOP authored Aug 20, 2024
1 parent 3e5ef66 commit a5d20f4
Showing 1 changed file with 53 additions and 2 deletions.
55 changes: 53 additions & 2 deletions README.md
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.

0 comments on commit a5d20f4

Please sign in to comment.