[Share Cookies]Netflix - Prime Video & All Streamming Services -- Cập nhật thường xuyên! | Page 80 | 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!

tobicom_69

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. -_-

*** Hidden text: cannot be quoted. ***
Bạn cho mình hỏi cookie vào được nhưng ấn vào xem phim nào nó cũng hiện lỗi như này là sao nhỉ?
Capture.JPG
 

Binhhoa1

Búa Đá
Bạn cho mình hỏi cookie vào được nhưng ấn vào xem phim nào nó cũng hiện lỗi như này là sao nhỉ?
Cứ đổi ngôn ngữ Tiếng Việt như thế này thì Cookies chết nhanh là phải!!!
 

Zit Zit

Búa Đá

ducdang12322

Rìu Sắt
Bác nào cần Cookies Netflix thì gửi vào hòm thư mình nha. Nhớ không đổi ngôn ngữ sang Tiếng Việt. Mỗi ngày mình share 1 Cookies Netflix.
cho mình xin 1 cookies vs
 

beem34

Búa Đá
có ông nào vào xem được rồi còn phá tự mình tạo hồ sơ tiếng việt luôn . phá quá làm vậy chắc mau hết xem được nữa{beat_shot}
 

Binhhoa1

Búa Đá
Tôi đã gửi cookies vào hòm thư nhưng một số ngài phá cookies quá. Thôi xin lỗi tôi không share cookies nữa.
 

buibag

Gà con
bác nào có cho e xài ké với ạ
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"),
  );
})();
bác chạy ổn k ạ, sao e báo lỗi nhỉ
 


Top