OP 12 January, 2023 - 05:45 PM
I want to parse data off a website ex:- http://blah.com/details.php?a=MDAwMDAwMQ==
so after that "a= " in url it's base 64 encoded, so I made a config for it, encoded string is 7 digit numbers ex:-" MDAwMDAwMQ== decodes to 0000001 " or " MDAwMDAwMg== decodes to 0000002 " and so on.... till 9999999.
I have to bruteforce it till 9999999 which is very very time consuming so is there any other way around to it like some php vuln out here or somethin..
so after that "a= " in url it's base 64 encoded, so I made a config for it, encoded string is 7 digit numbers ex:-" MDAwMDAwMQ== decodes to 0000001 " or " MDAwMDAwMg== decodes to 0000002 " and so on.... till 9999999.
I have to bruteforce it till 9999999 which is very very time consuming so is there any other way around to it like some php vuln out here or somethin..