Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



   657

Snusbase - Combo method without registration.

by Magazine - 03 December, 2022 - 10:18 PM
This post is by a banned member (Magazine) - Unhide
Magazine  
Registered
55
Posts
10
Threads
2 Years of service
#1
(This post was last modified: 03 December, 2022 - 10:25 PM by Magazine. Edited 2 times in total.)
Basically, SnusBase allows you to search combos on their site for free, you don't need to register at all. 

Usage,
 
Code:
import requests
from random_user_agent.user_agent import UserAgent
from random_user_agent.params import SoftwareName, OperatingSystem
software_names = [SoftwareName.CHROME.value, SoftwareName.FIREFOX.value, SoftwareName.OPERA.value]
operating_systems = [OperatingSystem.WINDOWS.value, OperatingSystem.LINUX.value]
user_agent_rotator = UserAgent(software_names=software_names, operating_systems=operating_systems, limit=10000)
user_agent = user_agent_rotator.get_random_user_agent()
print('NiggaX Search')
email = input('Enter Email:')
proxy = {
    "http": "proxyhere",
    "https": "proxyhere",
}
headers = {
    'User-Agent': user_agent,
    'Accept': '*/*',
    'Referer': 'https://ex.snusbase.com/',
    'Content-Type': 'application/json',
    'Origin': 'https://ex.snusbase.com',
    'DNT': '1',
    'Connection': 'keep-alive',
    'Sec-Fetch-Dest': 'empty',
    'Sec-Fetch-Mode': 'cors',
    'Sec-Fetch-Site': 'same-origin',
    'Sec-GPC': '1'
}

json_data = {
    'term': email,
}

response = requests.post('https://ex.snusbase.com/v3/combolist', headers=headers, json=json_data, proxies=proxy)
if response.json()['success'] is True:
    if response.json()['response'].get('size') == 0:
        print(' [ no combolists ] ')
    else:
        result = response.json()['response'].get('result')
        for x in result:
            print(x, result.get(x)[0])

This is some real good shit for you combo people out there.
This post is by a banned member (sunshinewinteandja) - Unhide
121
Posts
0
Threads
3 Years of service
#2
(03 December, 2022 - 10:18 PM)Magazine Wrote: Show More
Basically, SnusBase allows you to search combos on their site for free, you don't need to register at all. 

Usage,
 
Code:
import requests
from random_user_agent.user_agent import UserAgent
from random_user_agent.params import SoftwareName, OperatingSystem
software_names = [SoftwareName.CHROME.value, SoftwareName.FIREFOX.value, SoftwareName.OPERA.value]
operating_systems = [OperatingSystem.WINDOWS.value, OperatingSystem.LINUX.value]
user_agent_rotator = UserAgent(software_names=software_names, operating_systems=operating_systems, limit=10000)
user_agent = user_agent_rotator.get_random_user_agent()
print('NiggaX Search')
email = input('Enter Email:')
proxy = {
    "http": "proxyhere",
    "https": "proxyhere",
}
headers = {
    'User-Agent': user_agent,
    'Accept': '*/*',
    'Referer': 'https://ex.snusbase.com/',
    'Content-Type': 'application/json',
    'Origin': 'https://ex.snusbase.com',
    'DNT': '1',
    'Connection': 'keep-alive',
    'Sec-Fetch-Dest': 'empty',
    'Sec-Fetch-Mode': 'cors',
    'Sec-Fetch-Site': 'same-origin',
    'Sec-GPC': '1'
}

json_data = {
    'term': email,
}

response = requests.post('https://ex.snusbase.com/v3/combolist', headers=headers, json=json_data, proxies=proxy)
if response.json()['success'] is True:
    if response.json()['response'].get('size') == 0:
        print(' [ no combolists ] ')
    else:
        result = response.json()['response'].get('result')
        for x in result:
            print(x, result.get(x)[0])

This is some real good shit for you combo people out there.

what is this how do i let it work.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 1 Guest(s)