Advertisement
rizky21id

ViewFruit Leaking JS

Sep 30th, 2019
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. https://id.viewfruit.com/PUBLIC/lojiku/bankload.js
  2. -------------------------------------------------
  3. // JavaScript Document
  4. function doapply(_num){
  5. $.post(siteurl+"/Member/buysavecheck",{mid:_num},
  6. function(msg){
  7. var stdata=jQuery.parseJSON(msg);
  8. if (stdata.ret=="check_ok") {
  9. swal({
  10. title: langjs['exchange'],
  11. text: langjs['suretoexchange1']+(_num*500)+langjs['suretoexchange2'],
  12. type: "info",
  13. showCancelButton: true,
  14. confirmButtonColor: "#DD6B55",
  15. confirmButtonText: langjs['exchangenow'],
  16. closeOnConfirm: false }, function(){
  17. $.post(siteurl+"/Member/buysave.html",{mid:_num},
  18. function(msgbuy){
  19. if(msgbuy=='check_ok'){
  20. swal(langjs['exchange'], langjs['exchangeredeem1']+(_num*500)+langjs['exchangeredeem2'], "success");
  21. setTimeout(function(){window.location.href=siteurl+"/Member/redeem.html";}, 2000);
  22. }else{
  23. swal("", msgbuy, "error");
  24. }
  25. });
  26. });
  27. } else {
  28. swal(langjs['exchange'], stdata.types, "error");
  29. setTimeout(function(){window.location.href=stdata.tip;}, 2000);
  30. }
  31. });
  32. }
  33. -----------------------------------------------------
  34. untuk meredeem code dibutuhkan post data dari "_num" pada URL:
  35. https://id.viewfruit.com//Member/buysavecheck
  36. {"ret":"check_ok","tip":""}
  37. dan di URL:
  38. https://id.viewfruit.com//Member/buysave.html
  39. Menyuruh pilih angka yang benar
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement