Stealer Logs Search 23 Million Records and Growing!

В этой теме можно использовать автоматический гарант!

Статус
Закрыто для дальнейших ответов.

TheMentalist

CD-диск
Пользователь
Регистрация
14.02.2022
Сообщения
15
Реакции
3
Гарант сделки
1
I have a huge database for stealer logs hosted on Tor we have a total of 23,717,342 records and are adding hundreds of thousands of records daily access to the API starts at $20 for 30 days. The API has 5 parameters via GET request the records are limited to 10,000 per search you can use the set parameter to get new results.

?domain: Search by Domain
?email: Search by Email/User
?password: Search by Password
?set: Index of Result
?records: Get Total Records

Escrow Accepted
Python Example
Python:
import requests
 
TOR_SOCKS_PORT = 9050
tor_session = requests.Session()
tor_session.proxies = {
    'http': f'socks5h://127.0.0.1:{TOR_SOCKS_PORT}',
    'https': f'socks5h://127.0.0.1:{TOR_SOCKS_PORT}'
}
 
class RemoteAPI:
    API_URL = "http://.onion"
 
def stealer(query: str, index: int, type_: str):
    """
    Function to query the API with specific parameters.
 
    Args:
    - query: The search query.
    - index: The index of the result to retrieve.
    - type_: The type of search (e.g., 'domain', 'email', 'password').
    """
    try:
        response = tor_session.get(
            f"{RemoteAPI.API_URL}/?{type_}={query}&set={index}"
        )
        response.raise_for_status()
    except requests.RequestException as e:
        print("Request Error:", e)
        return None, False
    else:
        return response.json(), True
 
# Search for a domain
# Uncomment the line below to search for a domain
#result = stealer(type_="domain", query="google.com", index=3)
 
# Search for an email
# Uncomment the line below to search for an email
#result = stealer(type_="email", query="mikaelly.gabriella@gmail.com", index=1)
 
# Search for a password
# Uncomment the line below to search for a password
#result = stealer(type_="password", query="123456", index=1)
 
print(result)
 

Вложения

  • Screenshot from 2023-11-21 19-04-20.png
    Screenshot from 2023-11-21 19-04-20.png
    25.8 КБ · Просмотры: 72
  • Screenshot from 2023-11-21 19-18-16.png
    Screenshot from 2023-11-21 19-18-16.png
    16.2 КБ · Просмотры: 73
Пожалуйста, обратите внимание, что пользователь заблокирован
А у меня большие вопросы к подобным товарищам. Вы лично пролили 23кк логов? Почему вы продаете их? Вы, видимо, выжали из них что можно. Так значит это жёсткий мусор? При таком стабильном трафике, почему вы сами не сортируете логи и не продаете скупам по запросам? И ещё: при таком трафике вы не думали о других перспективах, кроме добыче логов?

Сдается мне, очередной большой кусок паблика.
 
Hello, I dont speak Russian so things might get lost in translation. I have not leaked 23k logs. Im not selling them for people to login although a lot are still valid im using it as a OSINT API for my bot and figured others might want access too. This is why the price is not a lot per month only $20. And we have other services that we run off these APIs for instance one of our other services estate.red run off the same OSINT APIs. We have about 8 Billion records from various data leaks and yes stealer logs this is one of the many APIs that we use and others might want to as well we are just not ready to advertise the others APIs yet. I hope this answers your questions if not just send us a PM.

Здравствуйте, я не говорю по-русски, поэтому при переводе что-то может затеряться. Я не сливал 23к логов. Я не продаю их для входа в систему, хотя многие из них все еще действительны, я использую их в качестве OSINT API для своего бота и решил, что другим тоже может понадобиться доступ. Именно поэтому цена не большая, в месяц всего 20$. И у нас есть другие сервисы, которые мы запускаем с помощью этих API, например, один из наших других сервисов Estate.red использует те же API-интерфейсы OSINT. У нас есть около 8 миллиардов записей из различных утечек данных, и да, журналы кражи, это один из многих API, которые мы используем, и другие могут тоже захотеть, мы просто пока не готовы рекламировать другие API. Я надеюсь, что это ответит на ваши вопросы, если не просто напишите нам в личку.
 
Пожалуйста, обратите внимание, что пользователь заблокирован
Thanks for answering. That s all what i wonna know.
 
I have a huge database for stealer logs hosted on Tor we have a total of 23,717,342 records and are adding hundreds of thousands of records daily access to the API starts at $20 for 30 days. The API has 5 parameters via GET request the records are limited to 10,000 per search you can use the set parameter to get new results.

?domain: Search by Domain
?email: Search by Email/User
?password: Search by Password
?set: Index of Result
?records: Get Total Records

Escrow Accepted
Python Example
Python:
import requests
 
TOR_SOCKS_PORT = 9050
tor_session = requests.Session()
tor_session.proxies = {
    'http': f'socks5h://127.0.0.1:{TOR_SOCKS_PORT}',
    'https': f'socks5h://127.0.0.1:{TOR_SOCKS_PORT}'
}
 
class RemoteAPI:
    API_URL = "http://.onion"
 
def stealer(query: str, index: int, type_: str):
    """
    Function to query the API with specific parameters.
 
    Args:
    - query: The search query.
    - index: The index of the result to retrieve.
    - type_: The type of search (eg, 'domain', 'email', 'password').
    """
    try:
        response = tor_session.get(
            f"{RemoteAPI.API_URL}/?{type_}={query}&set={index}"
        )
        response.raise_for_status()
    except requests.RequestException as e:
        print("Request Error:", e)
        return None, False
    else:
        return response.json(), True
 
#Search for a domain
# Uncomment the line below to search for a domain
#result = stealer(type_="domain", query="google.com", index=3)
 
#Search for an email
# Uncomment the line below to search for an email
#result = stealer(type_="email", query="mikaelly.gabriella@gmail.com", index=1)
 
# Search for a password
# Uncomment the line below to search for a password
#result = stealer(type_="password", query="123456", index=1)
 
print(result)
What is your contact details?
 
Статус
Закрыто для дальнейших ответов.
Верх