[Share Cookies]Netflix - Prime Video & All Streamming Services -- Cập nhật thường xuyên! | Page 78 | VN-Zoom | Cộng đồng Chia Sẻ Kiến Thức Công Nghệ và Phần Mềm Máy Tính

Adblocker detected! Please consider reading this notice.

We've detected that you are using AdBlock Plus or some other adblocking software which is preventing the page from fully loading.

We need money to operate the site, and almost all of it comes from our online advertising.

If possible, please support us by clicking on the advertisements.

Please add vn-z.vn to your ad blocking whitelist or disable your adblocking software.

×

[Share Cookies]Netflix - Prime Video & All Streamming Services -- Cập nhật thường xuyên!

ghetnhieu

Búa Gỗ
Share cái stan cho ae xem tạm đỡ ghiền

*** Hidden text: cannot be quoted. ***
die hết rồi ạ 🥱🥱
 

Zit Zit

Búa Đá
Mình có viết script check cookies còn sống k, bạn nào kb chạy thì gửi mình, mình check cho nha.
 
Sửa lần cuối:

Zit Zit

Búa Đá
Ai đọc đc code thì code mình để đây.

JavaScript:
import * as fs from "fs";

type Cookie = {
  name: string;
  value: string;
  domain: string;
  path: string;
};

type Cookies = Cookie[];

const cookies = fs
  .readFileSync("./nfc.json")
  .toString()
  .split("\n")
  .filter((line) => line)
  .map((line) => JSON.parse(line) as Cookies);

const checkCookie = async (cookie: Cookies) => {
  return fetch("https://www.netflix.com/vn-en/", {
    headers: {
      accept:
        "text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8",
      "accept-language": "en-US,en;q=0.6",
      "cache-control": "max-age=0",
      priority: "u=0, i",
      Cookie: cookie.map((c) => `${c.name}=${c.value}`).join("; "),
      "sec-ch-ua": '"Brave";v="125", "Chromium";v="125", "Not.A/Brand";v="24"',
      "sec-ch-ua-mobile": "?0",
      "sec-ch-ua-model": '""',
      "sec-ch-ua-platform": '"Linux"',
      "sec-ch-ua-platform-version": '"6.8.9"',
      "sec-fetch-dest": "document",
      "sec-fetch-mode": "navigate",
      "sec-fetch-site": "none",
      "sec-fetch-user": "?1",
      "sec-gpc": "1",
      "upgrade-insecure-requests": "1",
    },
    referrerPolicy: "strict-origin-when-cross-origin",
    body: null,
    method: "GET",
    mode: "cors",
    credentials: "include",
    redirect: "manual",
  });
};

const oks: Cookies[] = [];
const runnings: Record<string, Cookies> = Object.fromEntries(
  cookies.map((cookie, idx) => [idx, cookie]),
);

(async () => {
  while (Object.keys(runnings).length) {
    const promises = [];
    for (let idx in runnings) {
      const res = checkCookie(runnings[idx])
        .then((res) => {
          console.log(`cookie ${+idx + 1} has status: ${res.status}`);
          if (res.status >= 300 && res.status < 400) {
            oks.push(runnings[idx]);
          }
          delete runnings[idx];
        })
        .catch((err) => {
          console.error(err);
        });
      promises.push(res);
    }
    await Promise.all(promises);
  }

  console.log("oks:", oks.length);
  fs.writeFileSync(
    "./nfc-oks.json",
    oks.map((c) => JSON.stringify(c)).join("\n"),
  );
})();
 

Zit Zit

Búa Đá
5 cookies netflix còn sống mình tích góp được.
Do các bạn dùng ý thức rất kém, mình giới hạn lại những ai có thể xem.

Khi không dùng nữa, hãy xóa cookies, đừng có logout.
Hàng dùng ké, làm ơn đừng đổi ngôn ngữ hay settings gì khác.

Update: vừa mới share, nay check lại còn có 2 con còn sống. -_-

View hidden content is available for registered users!
 
Sửa lần cuối:

hunggz

Búa Gỗ
5 cookies netflix còn sống mình tích góp được.
Do các bạn dùng ý thức rất kém, mình giới hạn lại những ai có thể xem.

Khi không dùng nữa, hãy xóa cookies, đừng có logout.
Hàng dùng ké, làm ơn đừng đổi ngôn ngữ hay settings gì khác.

*** Hidden text: cannot be quoted. ***
đang xem thì bị kick ra chứ, kick ra xong die luôn con 1 bác ạ
 


Top