![]() |
|
Making A Giftcard Generator - Any Requests? - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: Python (https://sinister.ly/Forum-Python) +--- Thread: Making A Giftcard Generator - Any Requests? (/Thread-Making-A-Giftcard-Generator-Any-Requests) |
RE: Making A Giftcard Generator - Any Requests? - Mrrobot1208 - 12-18-2019 I think you are right men anyway thank you for the advice RE: Making A Giftcard Generator - Any Requests? - critikal17 - 01-09-2020 Wanted to see how this project is coming along. Personally I probably wouldn't use it but development always interests me. If you're not working on this any more, I'd be happy to take a crack at something like this. RE: Making A Giftcard Generator - Any Requests? - Drako - 01-10-2020 (01-09-2020, 09:01 PM)critikal17 Wrote: Wanted to see how this project is coming along. Personally I probably wouldn't use it but development always interests me. If you're not working on this any more, I'd be happy to take a crack at something like this. You could go ahead and try something like this yourself. Unfortunately I don't have the time to code as of late. I was trying to code it in Python because of its networking capabilities, but I had to go quite slow since I had never used Python before. RE: Making A Giftcard Generator - Any Requests? - critikal17 - 01-10-2020 (01-10-2020, 12:55 AM)Drako Wrote:(01-09-2020, 09:01 PM)critikal17 Wrote: Wanted to see how this project is coming along. Personally I probably wouldn't use it but development always interests me. If you're not working on this any more, I'd be happy to take a crack at something like this. Cool, I have a lot of free time on my hands until my classes start again. I'll take a crack at it and let you know how it goes. RE: Making A Giftcard Generator - Any Requests? - Crown - 09-11-2020 Made this simple random code generator, it works based on the Regular Expression(Regex) pattern you feed to it. #!/usr/bin/python from xeger import Xeger import itertools x = Xeger(limit=10) for i in itertools.repeat(None, 100): print(x.xeger("RegexHere")+",") RE: Making A Giftcard Generator - Any Requests? - lilacula - 09-13-2020 how would this generator work would you have to run the key through a checker RE: Making A Giftcard Generator - Any Requests? - Drako - 09-13-2020 (09-13-2020, 04:34 PM)lilacula Wrote: how would this generator work would you have to run the key through a checker I would have to run it through a checker provided by the company who created the giftcards. I'm not entirely sure how I'll get it done. But I did revisit this thread a few days ago and realized I could start up this project again. RE: Making A Giftcard Generator - Any Requests? - Drako - 09-15-2020 I have the generation down, but automating checking the keys might be a bit challenging. RE: Making A Giftcar Generator - Any Requests? - shizoo - 02-26-2021 implement a checker for what is possible to check with proxy support and even better it scrapes public proxies itself RE: Making A Giftcard Generator - Any Requests? - DonClark - 07-30-2021 (08-21-2019, 12:30 AM)Mortifer Wrote: So I don't know a single tool that generates codes that will be accepted later. If they would really work, everyone would be talking about them.Gift card generators a not real unless they had insider access to the companies internal infrastructure that would on fly instantly generate a valid code BUT you can make a gift card cracker quite easy. Generate thousands of possible codes by simply counting the amount of characters they accept I.E length of codes example would be a 16 character code with 4 - dash delimiters then finding possible old codes and look for patterns to use in that generation. You can then test those thousands of codes you generated by programmatically sending requests to the sites with the correct post data to submit each and every code and then parse the response back to find the validity of said code if it works or not. Sometimes depending on threads, language you write the cracker in and also the strictness of the site you're repeatedly sending requests to you can check thousands of codes in a day and find atleast a few valid codes. (09-15-2020, 05:33 PM)Drako Wrote: I have the generation down, but automating checking the keys might be a bit challenging.HMU I can teach you how to check the keys and the obstacles you may face and which methods would be needed to achieve your goal. |