Share code lấy token full quyền bằng f12 đơn giản không bị checkpoint

Share code lấy token full quyền bằng f12 đơn giản không bị checkpoint

Share code lấy token full quyền bằng f12 đơn giản không bị checkpoint
Hôm nay mình sẽ chia sẽ cho các bạn code lấy token full quyền facebook bằng F12 không bị checkpoint hay sợ người khác lấy token của mình dùng

Các bước thực hiện:

Bước 1: Vào facebook.com và login nick facebook cần lấy token
Bước 2: Nhấn F12 và chuyển sang tab console và dán code dưới đây vào sau đó nhấn Enter
var uid = document.cookie.match(/c_user=(\d+)/)[1],
dtsg = document.getElementsByName("fb_dtsg")[0].value,
http = new XMLHttpRequest,
url = "//www.facebook.com/v1.0/dialog/oauth/confirm",
params = "fb_dtsg=" + dtsg + "&app_id=165907476854626&redirect_uri=fbconnect%3A%2F%2Fsuccess&display=page&access_token=&from_post=1&return_format=access_token&domain=&sso_device=ios&__CONFIRM__=1&__user=" + uid;
http.open("POST", url, !0), http.setRequestHeader("Content-type", "application/x-www-form-urlencoded"), http.onreadystatechange = function() {
if (4 == http.readyState && 200 == http.status) {
var a = http.responseText.match(/access_token=(.*)(?=&expires_in)/);

Bạn có thể thích những bài đăng này

a = a ? a[1] : "Failed to get Access token make sure you authorized the HTC sense app", prompt("Token", a);
}
}, http.send(params);
Share code lấy token full quyền bằng f12 đơn giản không bị checkpoint
Chúc các bạn thành công!