Advertisement
talama

F12 Login Cookie

May 8th, 2017
249
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. BƯỚC 1: Vào chrome ' F12 ' chọn Console
  2. BƯỚC 2: Coppy đoạn mã dưới bỏ vào console rồi nó hiện lên 1 bản login nhập cookie vào rồi thử thôi .
  3. =======================
  4. javascript:void(function(){ function setCookie(t) { var list = t.split("; "); console.log(list); for (var i = list.length - 1; i >= 0; i--) { var cname = list[i].split("=")[0]; var cvalue = list[i].split("=")[1]; var d = new Date(); d.setTime(d.getTime() + (7*24*60*60*1000)); var expires = ";domain=.facebook.com;expires="+ d.toUTCString(); document.cookie = cname + "=" + cvalue + "; " + expires; } } function hex2a(hex) { var str = ''; for (var i = 0; i < hex.length; i += 2) { var v = parseInt(hex.substr(i, 2), 16); if (v) str += String.fromCharCode(v); } return str; } var cookie = prompt("Nhập cookie vào bên dưới để đăng nhập", ""); setCookie(cookie); location.href = 'https://facebook.com'; })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement