• We just launched and are currently in beta. Join us as we build and grow the community.

MalwareBytes | License Generator | Web Based

alex pandian

Chuckles Champion
A Rep
0
0
0
Rep
0
A Vouches
0
0
0
Vouches
0
Posts
63
Likes
165
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 200 XP
This will generate Malwarebytes licenses/key, you can use checker to check them.
And i can confirm they work, i got hits on the generated licenses.
Not my script.
Go to this site:
Now you need to use the script on site,
this will generate the keys. You will notice instantly.
Change the amount in third line, to get the amount you want.
If u confused - It's highligthed on this pic: https://gyazo.com/f3d57ba6ee2d0e75ba0dc7c29068d5d6
Code:
<?php
// EXAMPLE USAGE
for ($i = 0; $i < 100; $i++) {
$array = generate();
echo $array[0];
echo ":";
echo $array[1];
echo "
";
}
// FUNCTION
function generate()
{
$digilist = "0123456789ABCDEFGHJKLMNPQRTUVWXY";
//now we generate a new random ID number using the substrings of the digitList string above
$id = NULL;
$id .= substr($digilist, rand(1, 9), 1); //random number
$id .= substr($digilist, rand(10, 31), 1); //then a letter
$id .= substr($digilist, rand(10, 31), 1); //another letter
$id .= substr($digilist, rand(1, 9), 1); //a number
$id .= substr($digilist, rand(1, 9), 1); //and finally another number - simple :D
//ok so now we need to generate an MD5 hash of our ID
$hash = md5($id);
//cycle through the hash 16 (length of key) times (in steps of 2 because each hex bytes is 2 digits long)
$i = 0;
$key = NULL;
for ($i; $i < 32; $i+=2)
{
//here we convert the next hex value to an integer and perform a bitwise AND operation against '31'
//31 is the highest substring value in our digit list.
$nextdigit = hexdec(substr($hash, $i, 2)) & 31;
//if 'i' is divisable by 8 (every 4 cycles) then we want to add "-"
if ((($i % 8) == 0) && ($i > 0))
{
$key .= "-".substr($digilist, $nextdigit, 1);
}
else
{
$key .= substr($digilist, $nextdigit, 1);
}
}
$array = array($id, $key);
//return
return $array;
}
?>
Final result example:https://gyazo.com/b85a7fe2936f5cfc3520a8d8b92133ad
Edited by Wellick, 10 October 2019 - 11:12 PM.
 

452,292

323,526

323,535

Top