π™π™£π™§π™šπ™–π™‘ π˜Ύπ™€π™™π™šπ™§
1.52K subscribers
6 photos
7 files
34 links
A place for coders ;)
Download Telegram
React for Claude AI API
(claude.ai)

- custom modes
- can remember chat history
- unlimited use
- crawled version

Task:
Do 10+ reaction for source code
❀41πŸ‘5πŸ‘Ž1
claude.py
5.2 KB
Claude AI
~ An AI Chat Bot used by Discord

> Install requests Package:
pip install curl-cffi

Run:
python claude.py

How-To use:
All the steps mentioned in file

If the sessionkey gets expired, you can get it from claude.ai from cookies

>.< Drop your site for reverse engineering at @BiswaX
❀12πŸ‘Ž2πŸ‘1
AI CHATBOT WITH ChatGPT 4 MODEL

> https://app.myshell.ai/chat?from=workshop

> https://ava-ai-ef611.web.app/


React love ❀️ if you want their API!

I will do reverse engineering on these sites

Drop more sites if you have at @BiswaX
❀41πŸ‘3πŸ”₯3πŸ‘Ž2
Paid Project: Seeking App Developer

Looking for an experienced App Developer to join our team. If you have a background in similar app types like Uber and Ola,

Please DM @BiswaX for more details. Get paid to be a part of this exciting opportunity!

Get Paid!!
πŸ”₯49πŸ‘Ž47❀27πŸ‘5
Free ChatGPT API
Github
: Get Source


# follow @unrealcoder
# coded by @BiswaX

import requests
import secrets
import re


class GodGPT:
def init(self) -> None:
self.api_url = "https://gptgod.site/api/session/free/gpt3p5"

def generate_id(self, hex_id:int = 16, zfill:int = 32):
return {"id": secrets.token_hex(hex_id).zfill(zfill)}

def generate_text(self, prompt: str):

payload = {
**self.generate_id(),
"content": prompt
}

response = requests.get(self.api_url, params=payload)
convo = []
for data in response.iter_lines(chunk_size=None):
msg = re.findall(r'data:\s*"(.*)"', data.decode())
if msg:
convo.append(msg[0])
return "".join(convo)


bot = GodGPT()
print(bot.generate_text("how are you"))
πŸ‘Ž12❀3πŸ”₯1
βœ”οΈ Give reaction for tgviews source code

(No smm shit, 100% python script written by @BiswaX)

Task: complete 10+ reaction on this post
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘33❀21πŸ”₯13πŸ‘Ž2
Gemini Pro Chat
https://geminiprochat.com/

Api
powered by Gemini Pro (Google’s new generative ai model)

Good for
reverse engineering
πŸ‘5❀4πŸ”₯1
βœ”οΈ Give reaction for tgviews api

😑Task: complete 45+ reaction on this post
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘42❀12πŸ”₯12πŸ‘Ž7
WeWantYou
Who won this giveaway show ss in comment section*
Happy New Year Lovely Coders!

https://t.me/UnrealCoder/90
❀1
Forwarded from β€ΝŸΝžπ™‰π™€π™€π™— π™­π˜Ώβ„’
My alt actually won one
πŸ”₯5πŸ‘1
Simple ChatGPT API

import requests, re
def chatgpt(prompt):
url = "https://aigencycms.polartemplates.com/php/api.php"
data = {
"prompt": prompt,
"ai_id": 2
}
resp = requests.post(url, data=data)
convo = re.findall(r'content":"([^"]+)"', resp.text)
return "".join(convo)

print(chatgpt("write a python code to get even numbers from 1-20"))
πŸ‘3
Forwarded from Code Like Pro
Recaptcha V3 Bypass Without Solver

import requests
import random
import json
import re
from urllib.parse import urlparse
from urllib.parse import unquote_plus
class RecapBypass:
def __init__(self, anchor_url:str) -> None:
self.anchor_url = anchor_url
def xform_parser(self, data: str) -> dict:
result = {}
for item in data.split('&'):
key, value = item.split('=', 1)
result[key] = unquote_plus(value)
return result

def captcha_bypass(self, siteKey:str = None):
r1 = requests.get(self.anchor_url).text
x = re.findall(r'id="recaptcha-token"\s*value="(.*?)"', r1)
if not x:
return {"error": "Parse Token Error"}
anchor_data = self.xform_parser(self.anchor_url.split("/anchor?")[1])
if not siteKey:
siteKey = "6Ld48NUZAAAAAGbJ2g2xzdAALwlRF6AwxzjThc4z"
url= f"https://www.google.com/recaptcha/api2/reload?k={siteKey}"

data = {
**anchor_data,
"reason":"q",
"c":x[0],
"chr":"",
"vh":"",
"bg":""
}
r = requests.post(url, data=data)
token = None
try:
token = str(r.text.split('"rresp","')[1].split('"')[0])
except:
return {"error":"Error while parsing response"}

return {"token" : token}
πŸ”₯5❀3
Forwarded from WeWantYou
This media is not supported in the widget
VIEW IN TELEGRAM
πŸ”₯3πŸ‘1
Recaptcha V2 Bypass

Github Source
: Here

Example usage:
from playwright.sync_api import sync_playwright, Playwright
from recognizer.agents.playwright import SyncChallenger


def run(playwright: Playwright):
browser = playwright.chromium.launch()
page = browser.new_page()

challenger = SyncChallenger(page)
page.goto("https://recaptcha-demo.appspot.com/recaptcha-v2-checkbox-explicit.php")

challenger.solve_recaptcha()

browser.close()


with sync_playwright() as playwright:
run(playwright)
πŸ”₯10❀1