Capmonster integration in Python Script?
Guten Tag,
seit einigen Tagen versuche ich den captcha solver capmonster in mein Python Script, welches ein Discord Token Joiner ist, zu integrieren. Jedoch bekomme ich es nicht hin.
Wäre nett wenn mir jemand dabei helfen könnte.
from util import *
def send(invite, token):
session = Client.get_session(token)
result = session.post(f"https://discord.com/api/v9/invites/{invite}", json={"session_id": utility.rand_str(32)})
if result.status_code == 200:
Output("good", token).log(f"Joined {Fore.LIGHTBLACK_EX}{invite} {Fore.GREEN}-> {token} {Fore.LIGHTBLACK_EX}({result.status_code})")
else:
Output.error_logger(token, result.text, result.status_code)
def token_joiner():
Output.set_title(f"Token Joiner")
# Get the invite code from the user
invite = input("Enter the invite link (without 'https://discord.gg/'): ").strip()
invite = invite.split("/")[-1]
# Get the number of threads
max_threads = int(input("Enter the number of threads: ").strip())
# Get the server name (if available)
server_name = utility.get_server_name(invite)
if server_name is not None:
Output("info").notime(f"Joining {Fore.RED}{server_name}")
# Run the threads
utility.run_threads(max_threads=max_threads, func=send, args=[invite])
# Wait for user to press Enter before closing the script
input("\nPress Enter to exit the script...")
if __name__ == "__main__":
token_joiner()
1 Antwort
Das ist ein guter Hinweis darauf, dass du dieses Anliegen lieber lassen solltest.
Bot-Accounts bekommen keine Captchas. Das mit User-Accounts zu machen, verstößt gegen die Discord TOS um am Ende sind die Accounts im schlimmsten Fall weg: https://support.discord.com/hc/en-us/articles/115002192352-Automated-User-Accounts-Self-Bots
Ebenfalls ist es weder erlaubt, mit der API Schabernack zu treiben und Sicherheitsmechanismen zu umgehen: https://support-dev.discord.com/hc/en-us/articles/8562894815383-Discord-Developer-Terms-of-Service
(c) access or use the APIs in any way that (i) is not in accordance with the applicable Documentation, (ii) compromises, breaks, or circumvents any of our technical processes or security measures [...] (iv) exceeds any API rate, call, or other usage limits we set in our sole discretion (including as set forth in the Developer Policy or the applicable Documentation) or that we believe constitutes excessive or abusive usage.
Noch Nutzern zu schaden (inklusive ohne Konsens Aktionen für diese durchzuführen sowie was auch immer du auf den Servern vorhast, denen du joinst): https://support-dev.discord.com/hc/en-us/articles/8563934450327-Discord-Developer-Policy