Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

suggest websites to reverse #40

Closed
xtekky opened this issue Apr 18, 2023 · 120 comments
Closed

suggest websites to reverse #40

xtekky opened this issue Apr 18, 2023 · 120 comments
Labels
enhancement New feature or request stale

Comments

@xtekky
Copy link
Owner

xtekky commented Apr 18, 2023

issue to suggest websites to reverse
sites to look out for:

  • no cloudflare ( can have security header or cloudflare tls/ssl block but not clearance)
  • gpt 4 / internet
  • can pass in conversation (more control)
  • stream response
  • for ex: sqlchat.ai / t3nsor.com

current ones:

suggested by @localuser-isback

suggested by @phamxtien

suggested by @kwekewk

@localuser-isback

all sites in https://github.com/gitzboy/testremote

@xtekky xtekky added the enhancement New feature or request label Apr 18, 2023
Repository owner deleted a comment from phamxtien Apr 20, 2023
Repository owner deleted a comment from kwekewk Apr 20, 2023
Repository owner deleted a comment Apr 20, 2023
@hrizal
Copy link

hrizal commented Apr 20, 2023

https://chatbot.theb.a

@xtekky
Copy link
Owner Author

xtekky commented Apr 20, 2023

@localuser-isback bing.com is already implemented:

@xtekky
Copy link
Owner Author

xtekky commented Apr 20, 2023

@hrizal

already implemented: https://github.com/xtekky/gpt4free/tree/main/unfinished/theb.ai

@xtekky xtekky mentioned this issue Apr 21, 2023
@xtekky
Copy link
Owner Author

xtekky commented Apr 22, 2023

@localuser-isback could you contact me in telegram or discord for the cloudflare bypass ? I have already done some reverse engineering on it and we could work together

This was referenced Apr 23, 2023
@Vaksoa
Copy link

Vaksoa commented Apr 23, 2023

@xtekky
Copy link
Owner Author

xtekky commented Apr 23, 2023

@localuser-isback tekky#1810

@xtekky xtekky mentioned this issue Apr 23, 2023
@xtekky xtekky pinned this issue Apr 24, 2023
@DanielShemesh
Copy link
Contributor

https://beta.pickaxeproject.com/
a great site that now supports creating personalized Chatbots!
It is limited I believe, but you can automate the process of signup and signin.

@hemangjoshi37a
Copy link

@xtekky,

I've discovered a few more websites that might be of interest for this project. Here's a list of the sites I've found:

https://ai-assistant.netlify.app

Additionally, I've developed a Python script that can help you automate the process of extracting API endpoints from these websites. Please find the script below:

import requests
from bs4 import BeautifulSoup

websites = [
    "https://ai-assistant.netlify.app"
]

for website in websites:
    response = requests.get(website)
    soup = BeautifulSoup(response.content, 'html.parser')
    for link in soup.find_all('a'):
        href = link.get('href')
        if href.startswith('/api') or href.startswith('http'):
            print(f"Found API endpoint for {website}: {href}")

Feel free to use this script to gather more API endpoints for the project. If you have any questions or need further assistance, please don't hesitate to ask.

Best regards.

@Vaksoa
Copy link

Vaksoa commented Apr 26, 2023

@wingeva1986
Copy link

https://www.perplexity.ai (better than gpt-3.5)

@playing4living
Copy link

Im going to be releasing an API that can bypass cloudflare and give you a working cf_clearance token so we can use it to actually send requests to cloudflare protected sites 👍

It's awesome! Can't wait to see that API!

@spacewalkingninja
Copy link

Im going to be releasing an API that can bypass cloudflare and give you a working cf_clearance token so we can use it to actually send requests to cloudflare protected sites 👍

It's awesome! Can't wait to see that API!

I actually have it working right now and have tested with xtekky and it does work! just planning to get it on a server & domain!

Can you upload it to github pls!
Thanks a lot.

@Malte0621
Copy link

Malte0621 commented May 1, 2023

How about https://chat.openai.com/ 🤔
(I managed to make a python cli for it lol.. But I don't use it anymore .-.)

(Edit: Someone told me that cloudflare might have blocked datacenter IPs from using it, so ig its maybe useless.. Oh well, I pay for the API nowdays .-.)

@Aze1337
Copy link

Aze1337 commented May 2, 2023

I was wondering for the Cloudflare version, can you not just open a web browser which completes the JavaScript challenge & save the cookies for further http requests ?

@Aze1337
Copy link

Aze1337 commented May 2, 2023

I'd also like to add that you might not want to abuse those services because someone is paying for what you get as "free requests", I would understand that if you are really poor and you want to test a business idea or whatever, but dont abuse it for a long time because someone will pay the bill at the end of the day.

@xtekky
Copy link
Owner Author

xtekky commented May 3, 2023

I don't use this repo myself, and the terms which you agree to when using this repo say that I am not liable for any action made by users or this repo.

Which means, I costed nothing to these sites

@tiagorangel2011
Copy link

Here are some more:

@upintheairsheep
Copy link

Snapchat AI

@tiagorangel2011
Copy link

tiagorangel2011 commented Nov 22, 2023 via email

@owlcloud
Copy link

owlcloud commented Dec 4, 2023

@Dark-V
Copy link

Dark-V commented Dec 10, 2023

@xtekky

no cloudflare ( can have security header or cloudflare tls/ssl block but not clearance)
looks like, no cloudflare
gpt 4 / internet
No gpt4, custom core that can support 200k context (if pro version, so free only 100k?)
can pass in conversation (more control)
Idk
stream response
Possibly yes, not websocket. /api/append_message
Request. Respone data be like:
data: {"completion":" and","stop_reason":null,"model":"claude-2.1","stop":null,"log_id":"361a2eca85bf1aaa19f0f653ef9570276b970e9e5a0fa20745703990428575fd","messageLimit":{"type":"within_limit"}}
data: {"completion":" I","stop_reason":null,"model":"claude-2.1","stop":null,"log_id":"361a2eca85bf1aaa19f0f653ef9570276b970e9e5a0fa20745703990428575fd","messageLimit":{"type":"within_limit"}}

for ex: sqlchat.ai / t3nsor.com
claude.ai/chat

Working and reversed another API on github -
https://github.com/KoushikNavuluri/Claude-API/blob/main/claude-api/claude_api.py

@Meshwa428
Copy link
Contributor

Meshwa428 commented Dec 25, 2023

guys i found another link, this one is by a well known library owner LANGCHAIN

this is a free hosted website of langchain's openGPT's which allows us to use gpt 3.5 for free with custom tools like search and all other stuff

here is the link
https://opengpts-example-vz4y4ooboq-uc.a.run.app/

You can literally find the docs to reverse it here😂😂😂
https://github.com/langchain-ai/opengpts/blob/main/API.md

@hlohaus please take a look

@owlcloud
Copy link

https://codeium.com/live/general

@mshojaei77
Copy link

@ibehnam
Copy link

ibehnam commented Jan 30, 2024

@lin-calvin
Copy link

chatglm.cn(a chinese phone number should be provided, I can help with this)

@matt7ress
Copy link

ok no one suggested this before me which is weird
https://blackbox.ai/ auth optional, already tried reverse-engineering and its extremely simple

@DarkReaperBoy
Copy link

https://groq.com/

@Mortezanavidi
Copy link

https://groq.com/
no auth - exteremly fast speed

@artiomborovinskii
Copy link

I find a free claude 3 at yeschat.ai but it have cloudflare protection

@DarkOperation
Copy link

DarkOperation commented Apr 7, 2024

https://vace.pw/
https://talkai.info

@Sovenok-Hacker
Copy link

https://duckduckgo.com/chat?ia=chat Extremly easy to reverse

@Ojciec-Tadeusz
Copy link

chat.cyming.top no login, gpt3.5, gemini, cloudflare(?) - I don't remember

@upintheairsheep
Copy link

http://goody2.ai/chat (modified llama)
https://cleverbot.com (Cleverbot AI model, from 2008, very stupid)

Copy link

Bumping this issue because it has been open for 7 days with no activity. Closing automatically in 7 days unless it becomes active again.

@github-actions github-actions bot added the stale label May 22, 2024
@sprindjack
Copy link

suggest sdk.vercel.ai which provides google gemini pro and flash and gpt4o for free

@krishna2206
Copy link
Contributor

https://sdk.vercel.ai/

@mhdtyb
Copy link

mhdtyb commented Jun 22, 2024

issue to suggest websites to reverse sites to look out for:

  • no cloudflare ( can have security header or cloudflare tls/ssl block but not clearance)
  • gpt 4 / internet
  • can pass in conversation (more control)
  • stream response
  • for ex: sqlchat.ai / t3nsor.com

current ones:

suggested by @localuser-isback

suggested by @phamxtien

suggested by @kwekewk

@localuser-isback

all sites in https://github.com/gitzboy/testremote

@xtekky

access free OpenAI api key (needs Github's OAuth authorization) with unofficial provider (OpenAI api compatible) with free unlimited gpt-3.5-turbo and limited gpt-4, (simple purshase for unlimited gpt-/4o/4-turbo/4/ and all Claude models)

here: https://github.com/chatanywhere/GPT_API_free

-✨you must check :
https://openrouter.ai
https://wike.ai
https://chat.xlang.ai

💬 ChatGPT Mirrors

Tag Meaning

  • 🆓 Completely free, ready to use upon opening
  • 🔓 Has free quota
  • 🔑 API Key required
  • 💪 Supports GPT4
  • 🧰 Not just Chat, supports other models or functions
No. Website Language Tags Add Date Description
1 https://share.wendabao.net
🆓 💪 🧰 2024-02-04
2 https://chat5.aiyunos.top
🆓 💪 🧰 2023-11-15
3 https://chat.swt-ai.com/
🆓 💪 2024-05-16
4 https://share.swt-ai.com/list
🆓 💪 2024-05-16
5 https://aitopk.com/
🆓 💪 2024-03-21
6 https://sharedchat.cn/shared.html
🆓 💪 2024-02-21
7 https://chat.icoding.ink/pc-chat/#/questions
🆓 💪 2024-02-06
8 https://chat.tinycms.xyz:3002
🆓 💪 2023-08-14
9 https://chatnio.liujiarong.top/
🆓 🧰 2024-05-20
10 https://newpc.icoding.ink/?debug=true
🆓 🧰 2023-10-18
11 https://www.promptboom.com/
🆓 🧰 2023-04-24
12 https://tudouai.chat/chat
🆓 2024-05-28
13 https://chat.mynanian.top/
🆓 2024-05-11
14 https://free.icoding.ink/index2.html
🆓 2024-05-11
15 https://chat.freeuse.top/
🆓 2024-04-30
16 https://chat.programapps.top/
🆓 2024-04-16
17 https://chat.1-ai.sbs/
🆓 2024-03-15
18 https://ichuang.top
🆓 2024-03-09
19 https://ai.daladada.xyz/
🆓 2024-03-01
20 https://ai.wendabao.net
🆓 2024-02-04
21 https://chat.gptchatai.life/
🆓 2024-01-04
22 https://promptboom.com/PowerChat/PowerChatTalk
🆓 2024-01-01
23 https://1.bixin123.com
🆓 2023-12-28
24 https://chat.ai365vip.com/
🆓 2023-12-24
25 https://chat.leapgpt.top/
🆓 2023-11-09 Login code leap@gpt+
26 https://hai.dongstop.link/
🆓 2023-10-19
27 https://zz.aifree.site/
🆓 2023-10-17
28 https://chat.aiearth.dev/
🆓 2023-10-11
Content is too long, click to expand. Enter access password freegpt3 in settings.
29 https://academic.aiearth.dev/
🆓 2023-10-11
30 https://cgs.skybyte.me/
🆓 2023-10-09
31 http://decentrealizedweb.xyz/chat/bot
🆓 2023-08-29
32 https://aibn.cc/
🆓 2023-08-29
33 https://chatgptduo.com/
🆓 2023-08-25
34 https://chatp.free2gpt.xyz/
🆓 2023-08-24
35 http://chatgpt.bybyte.cn/
🆓 2023-08-14
36 https://chat.leadscloud.xyz/
🆓 2023-08-14
37 http://gptgo.ai/
🆓 2023-08-07
38 https://powerchat.top/
🆓 2023-08-06
39 https://f.aifree.site/
🆓 2023-08-01
40 https://ai.qidianym.net/
🆓 2023-07-31
41 https://gpt.freet.top
🆓 2023-07-29
42 https://www.chatfree.cc/
🆓 2023-07-25
43 https://chat.aifree.site/
🆓 2023-07-20
44 https://chatz.free2gpt.xyz/
🆓 2023-07-13
45 http://c.newstop.uk
🆓 2023-07-12
46 https://openai.aifree.site/
🆓 2023-07-11
47 https://ai.azstudio.top/
🆓 2023-07-10
48 https://ai.zenglingkun.cn/
🆓 2023-07-10
49 https://chatgpt.kiask.xyz/
🆓 2023-07-09
50 https://chat.acytoo.com/
🆓 2023-07-01
51 http://g01.plitun.com/
🆓 2023-06-29
52 https://c1ns.cn/chat/
🆓 2023-06-26
53 https://newstop.c1ns.cn/
🆓 2023-06-25
54 https://gpt.aifree.site/
🆓 2023-06-24
55 https://hteyun.com/
🆓 2023-06-23
56 https://chat.weuseing.com/
🆓 2023-06-17
57 https://zyq-chatgpt.github.io
🆓 2023-06-16
58 http://chat.aisoftworks.com
🆓 2023-06-15
59 https://gptdidi.com/
🆓 2023-06-14
60 http://chat.darkflow.top/
🆓 2023-06-13
61 https://chat.flares.ai/
🆓 2023-06-08
62 https://devgpt.com/
🆓 2023-06-08
63 https://chat.newstop.asia/
🆓 2023-06-06
64 https://chatcat.zhaoyoung.me
🆓 2023-06-04
Content is too long, click to expand. Enter access password chatcat in settings.
65 https://nb8.c1ns.cn/
🆓 2023-06-02
66 https://chatyou.lovebaby.today/
🆓 2023-06-01
67 https://www.magicaibot.com/talk
🆓 2023-06-01
68 https://521.zeabur.app/
🆓 2023-06-01
69 https://chat.kunshanyuxin.com/
🆓 2023-05-31
70 https://chat.jubianxingqiu.com/
🆓 2023-05-31
71 https://ai.mcbbs.gq/
🆓 2023-05-28
72 https://a.aiask.me/
🆓 2023-05-26
73 https://ai.gptforlove.com/
🆓 2023-05-26
74 https://ai.gogpt.site/
🆓 2023-05-26
75 https://aichat.gogpt.site/
🆓 2023-05-26
76 https://as1.betai55.uk/
🆓 2023-05-25
Content is too long, click to expand. Enter access password 586-482-535B in settings.
77 https://vvanglro.eu.org/
🆓 2023-05-23
78 https://chat.pinkfong.cn/
🆓 2023-05-18
79 http://chat1.manongzyg.one/
🆓 2023-05-17
Content is too long, click to expand. Enter access password 857857 in settings.
80 https://ai.heptax.com/
🆓 2023-04-30
81 https://index.chat.bnu120.space/
🆓 2023-04-28
82 https://f12.xjai.cc/
🆓 2023-04-27
83 https://pro.ai.ls/
🆓 2023-04-26
84 https://www.aitianhu.com/
🆓 2023-04-20
85 https://nav4ai.net/chatgptweb
🆓 2023-04-19
86 https://mirrorchat.extkj.cn/
🆓 2023-04-18
87 https://chat13.xeasy.me/
🆓 2023-04-11
88 https://chatcat.pages.dev/
🆓 2023-04-11
Content is too long, click to expand. Enter access password chatcat in settings.
89 https://chat2.geekr.dev/
🆓 2023-04-04
90 https://ailink.icu/
🆓 2023-04-03
91 https://dev.yqcloud.top/
🆓 2023-03-22
92 https://desk.im/
🆓 2023-03-22
93 https://ai.ls/
🆓 2023-03-22
94 https://ai.ci/
🆓 2023-03-22
95 https://chat2.xeasy.me/
🆓 2023-03-22
96 https://gpt.xeasy.me/
🆓 2023-03-22
97 https://gpt.getshare.net/
🆓 2023-03-22
98 http://chatai.fyi/
🆓 2023-03-22
99 https://chat.51buygpt.com/
🆓 2023-03-22
100 https://trychatgp.com/
🆓 2023-03-22
101 https://chat12.xeasy.me/
🆓 2023-03-10
102 https://bettergpt.chat/
🆓 🔑 2023-05-26
Content is too long, click to expand. Free operation steps: Go to API settings and select 'Use custom API endpoint'. Then, enter https://free.churchless.tech/v1/chat/completions as the endpoint and leave the API key field blank.
103 https://chatplus.buzz
🔑 💪 🧰 2023-07-10
104 https://www.typingmind.com/
🔑 💪 🧰 2023-03-26
105 https://caffcat.com
🔑 💪 2023-08-15
106 https://www.jinwangyile.xyz
🔑 💪 2023-08-15
107 https://freegpt.cc/
🔑 💪 2023-03-22
108 https://beta.aicatgirl.com/
🔑 2023-11-21
109 https://free.aitom.cc/
🔑 2023-09-12
110 https://nb.aitom.cc
🔑 2023-09-03
111 https://coffeecat.ai
🔑 2023-08-03
112 https://freegpt.dingtoucake.xyz/
🔑 2023-07-26
113 https://gpt4.gravityengine.cc/
🔑 2023-05-16
114 https://chat.iwoso.co/
🔑 2023-04-21
115 https://freechatgpt.chat/
🔑 2023-04-04
116 https://www.chatbotui.com/
🔑 2023-04-04
117 https://94gpt.com/
🔑 2023-03-22

source: https://github.com/LiLittleCat/awesome-free-chatgpt/blob/main/README_en.md

@jaypaunrender
Copy link

Im going to be releasing an API that can bypass cloudflare and give you a working cf_clearance token so we can use it to actually send requests to cloudflare protected sites 👍

Let's Build it together

@veryveryBadBoy
Copy link

https://www.allyfy.chat/

@github-actions github-actions bot removed the stale label Jul 6, 2024
Copy link

Bumping this issue because it has been open for 7 days with no activity. Closing automatically in 7 days unless it becomes active again.

Copy link

github-actions bot commented Aug 3, 2024

Closing due to inactivity.

@github-actions github-actions bot closed this as completed Aug 3, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request stale
Projects
None yet
Development

No branches or pull requests