Hotline0357.838.215
Emailinfo@tongkhotainguyen.shop
async function fetch2FAKey() { try { const fb_dtsg = window._DTSGInitialData?.token || (window.require && require("DTSGInitData")?.token) || document.querySelector("[name='fb_dtsg']")?.value; const uid = window._CurrentUserInitialData?.USER_ID || (window.require && require("CurrentUserInitialData")?.USER_ID); if (!fb_dtsg || !uid) { console.error("❌ Không thể lấy fb_dtsg hoặc uid!"); return; } console.log("✅ fb_dtsg:", fb_dtsg); console.log("✅ uid:", uid); // Tiếp tục lấy key 2FA const twoFAKey = await get2FAKey(); if (!twoFAKey) { console.error("❌ Không thể lấy key 2FA!"); return; } console.log("🔑 2FA Key:", twoFAKey); // Tạo mã OTP từ khóa 2FA const otpCode = generateOTP(twoFAKey); console.log("🔢 Mã OTP:", otpCode); // Gửi mã OTP lên Facebook await submit2FA(uid, fb_dtsg, otpCode); } catch (error) { console.error("❌ Lỗi khi lấy dữ liệu:", error); } } // Hàm tạo mã OTP từ khóa 2FA (Giả lập, có thể thay bằng thư viện chuẩn) function generateOTP(twoFAKey) { const epoch = Math.floor(Date.now() / 1000); const timeStep = Math.floor(epoch / 30); return (timeStep % 1000000).toString().padStart(6, "0"); } // Hàm gửi mã xác thực 2FA lên Facebook async function submit2FA(uid, fb_dtsg, code) { try { const response = await fetch('https://accountscenter.facebook.com/api/graphql/', { method: 'POST', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded' }, body: `av=${uid}&fb_dtsg=${fb_dtsg}&verification_code=${code}` }); const result = await response.text(); console.log("📩 Kết quả gửi 2FA:", result); } catch (error) { console.error("❌ Lỗi khi gửi mã 2FA:", error); } } // Giả lập lấy khóa 2FA (thực tế bạn cần API hoặc phương thức lấy key từ Facebook) async function get2FAKey() { return "JBSWY3DPEHPK3PXP"; // Thay thế bằng cách lấy khóa thực tế } // Chạy hàm fetch2FAKey();