u/Rare-Act-5725

invalid-response with acc gen (NONECAP)

im trying to create a account generator but every time im sending my request i have

Response: {'captcha_key': ['invalid-response'], 'captcha_sitekey': '<redacted>', 'captcha_service': 'hcaptcha', 'captcha_session_id': <redacted>', 'should_serve_invisible': True, 'captcha_rqdata': '<redacted>', 'captcha_rqtoken': '<redacted>'}

in response

there is my code

https://pastebin.com/yDTN8Pe9

iv try everything my guess is that nonecap doesnt support discord register or that my proxies list is flagged

reddit.com
u/Rare-Act-5725 — 12 days ago

good free / cheap residential proxies?

do you have site to get good residential proxies?

just for testing my code if the site you know only have like 10 free proxies at inscription its good for me

reddit.com
u/Rare-Act-5725 — 12 days ago

EMAIL_ALREADY_REGISTERED error when trying to create a account generator

when im trying to generate a account with request im getting the error "EMAIL_ALREADY_REGISTERED" (even if my email is not).
It does that with any mail im using and i think it can be discord that block my ip OR NoneCap

cuz i have 2 code that does this one with nonecap and the other with anticaptcha

anticaptcha doesn't have this error but NoneCap does

PS: anticaptcha cannot do Enterprise Hcaptcha that why im using nonecap

reddit.com
u/Rare-Act-5725 — 15 days ago

difference between discord distro

iv heard of legcord, testcord, illegalcord, nightcord, vencord, equicord, ... but what is the difference between all of them and is it safe to download? (i use equicord and been using vencord before that thats all)

reddit.com
u/Rare-Act-5725 — 19 days ago

create a guild with selfbot

Is it possible to create a guild using a selfbot?

Every time I try, I get the following error:

Status: 403, Response: {"message": "Unknown Message", "code": 10008}

My code is simply replicating the request sent by my client when creating a guild, so I'm not sure what's causing the issue.

my code :

import aiohttp
import asyncio


async def create_guild_canary(token: str, guild_name: str, template_code: str = None):
    url = "https://canary.discord.com/api/v9/guilds"
    headers = {
        "accept": "*/*",
        "accept-language": "fr,fr-FR;q=0.9,en-US;q=0.8",
        "authorization": token,
        "content-type": "application/json",
        "priority": "u=1, i",
        "sec-ch-ua": "\"Not)A;Brand\";v=\"8\", \"Chromium\";v=\"138\"",
        "sec-ch-ua-mobile": "?0",
        "sec-ch-ua-platform": "\"Windows\"",
        "sec-fetch-dest": "empty",
        "sec-fetch-mode": "cors",
        "sec-fetch-site": "same-origin",
        "x-debug-options": "bugReporterEnabled",
        "x-discord-locale": "fr",
        "x-discord-timezone": "Europe/Paris",
        "x-super-properties": "xxx",
        "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) discord/1.0.997 Chrome/138.0.7204.251 Electron/37.6.0 Safari/537.36",
        "Origin": "https://canary.discord.com",
        "Referer": "https://canary.discord.com/channels/@me",
    }


    body = {
        "name": guild_name,
        "icon": None,
        "channels": [],
        "system_channel_id": None,
        "guild_template_code": template_code
    }


    try:
        async with aiohttp.ClientSession() as session:
            async with session.post(url, headers=headers, json=body) as resp:
                status = resp.status
                response_text = await resp.text()
                return status, response_text
    except Exception as e:
        print(f"Error : {e}")
        return None, str(e)


if __name__ == "__main__":
    async def main():
        token = "xxx"
        status, resp = await create_guild_canary(token, "test", "2TffvPucqHkN")
        print(f"Status: {status}, Response: {resp}")
    asyncio.run(main())
reddit.com
u/Rare-Act-5725 — 21 days ago

retrieved all members of a guild

It's been almost two days now that I've been trying to write a piece of code to retrieve all the members of a guild, but I just can't seem to get it to work.

I've tried using both discord.py (version 1.7.3) and discord.py-self, but nothing works I just can't get it to work.

Here are a few examples of the unsuccessful methods I've tried:

guild.chunk() # discord.py 1.7.3 &amp; discord.py-self
guild.fetch_members() # discord.py 1.7.3 &amp; discord.py-self / with and without force_scraping=True &amp; channels=...
for member in guild.members: &amp; for member in list(guild.members): # discord.py 1.7.3

I also tried modifying the discord.py 1.7.3 files to replace them with newer versions (2.7.1) while keeping them backward-compatible, but it didn't work (or maybe I did it wrong)

can someone help me with this?

reddit.com
u/Rare-Act-5725 — 1 month ago