-
Notifications
You must be signed in to change notification settings - Fork 6
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
2 changed files
with
61 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import random | ||
|
||
print(' ') | ||
print('////////OxideDevX привевствует вас!') | ||
print('......[ BTCCheckGen 1.0 ]......') | ||
print('Генератор чеков для @BTC_CHANGE_BOT') | ||
print('Разработчик: t.me/pwntt') | ||
print(' ') | ||
print('......[ BTCCheckGen 1.0 ]......') | ||
print(' ') | ||
chars = 'abcdefghijklnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890' | ||
number = input('◾ Укажите желаемое количество ссылок для генерации:'+ "\n") | ||
print(' ') | ||
length = input('◾ Укажите длинну чека (рекомендовано 32):'+ "\n") | ||
print(' ') | ||
number = int(number) | ||
length = int(length) | ||
print(' ') | ||
print('ВНИМАНИЕ! Работа скрипта успешно завершена: ', number, ' чеков сгенерировано.') | ||
print('ВНИМАНИЕ: Скрипт генерирует рандомные чеки, проверять на валидность придется вручную.') | ||
print('На данный момент ведуться работы по реализации автоматической валидации') | ||
print(' ') | ||
for n in range(number): | ||
password ='' | ||
for i in range(length): | ||
password += random.choice(chars) | ||
print('https://t.me/BTC_CHANGE_BOT?start=b_',password) | ||
print(' ') | ||
print('➕ Удачного поиска! :) ') | ||
print() | ||
toexit = input("[BTCCheckGen] ⚠️ Нажмите любую клавишу для завершения работы.") |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# BTC vaucher generator | ||
***Привет. Данный проект создан кодером OxideDevX(Pentester). Telegram: @pwntt .*** | ||
|
||
*Что это такое?* | ||
Генератор BTC чеков. | ||
Скрипт генерирует ссылки для обнала BTC чеков в боте @btc_change_bot. | ||
Генерируем ссылки и переходим по ним, если повезет обналичиваем чек. | ||
Для работы нужен ПК либо сервер под управлением ОС Linux. | ||
Как установить: | ||
|
||
apt update -y && apt upgrade -y | ||
|
||
apt install git python -y | ||
|
||
pip install requests | ||
|
||
Скачиваем сам скрипт: | ||
|
||
git clone https://github.com/OxideDevX/btc-vaucher-bruter.git | ||
|
||
cd BTCVoucherGen | ||
|
||
Запускаем скрипт командой: | ||
|
||
python BTCCheckGen.py | ||
|
||
Далее запустится скрипт, и начнет генерировать ссылки. | ||
Если все сделали правильно то скрипт сгенерирует вам ссылки такого типа: | ||
https://t.me/BTC_CHANGE_BOT?start=b_6aAjgfhfjhdg4754BLa6aZIFedRlvcET5Ea1N5 | ||
Удачи в поисках! |