IZEN
by RFour · Jul 17, 2026 ·lua
grab le token, use it on the bypass request, done, btw use your own cf solver, you can host it yourself by using the cf solver by xbotz-launcher I think on github :3, this code is for stuff, sooo don't expect it will work fully :p
IzenAd-LinkLinkvertiseBypassBypasser
izen.jslua
1async function solveToken() {
2 const res = await fetch("https://fuck.netanyahu.my.id/", {
3 method: 'POST',
4 headers: { 'Content-Type': 'application/json' },
5 body: JSON.stringify({
6 secret: "-",
7 type: "turnstile",
8 websiteURL: "https://izen.lol",
9 websiteKey: "0x4AAAAAADNEi_2N24gpQqY0"
10 })
11 });
12 const data = await res.json();
13 if (!data.status || !data.token) throw new Error("solver failed: " + JSON.stringify(data));
14 return data.token;
15}
16
17export async function izen(req) {
18 const { searchParams: sp } = new URL(req.url);
19 const url = sp.get('url');
20 if (!url) return { error: "no url provided, /izen?url=https://izen.lol/xxx" };
21
22 try {
23 const captchaToken = await solveToken();
24 const res = await fetch("https://izen.lol/api/bypass", {
25 method: 'POST',
26 headers: {
27 "Content-Type": "application/json",
28 "Referer": "https://izen.lol/",
29 "User-Agent": "Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36"
30 },
31 body: JSON.stringify({ url, captchaToken })
32 });
33 return res.json();
34 } catch (err) {
35 return { error: err.message };
36 }
37}