Skip to content

Instantly share code, notes, and snippets.

@binarykore
Created April 5, 2023 05:47
Show Gist options
  • Select an option

  • Save binarykore/f00df8ffc388c6033e3b92109b2cde3f to your computer and use it in GitHub Desktop.

Select an option

Save binarykore/f00df8ffc388c6033e3b92109b2cde3f to your computer and use it in GitHub Desktop.
Shadow Breaker - 15 Digit IMEI Generator
<?php
//Shadow Breaker - 15 Digit IMEI Generator..
class shadow{
//7 + 8 = 15 Digit IMEI..
public static function breaker(){
$_byte = NULL;
$_entryPoint = "8607020";
$_count = "99999999";
$_digits = count(str_split($_count,1));
$_hash = [];
for($_g = $_count;$_g <= $_count;$_g--){
echo(($_entryPoint.$_g)." ( ".($_digits)." ) "."\r\n");
}//Decremental Count - Tried and Tested by well known IMEI Generators..
}//
}//
shadow::breaker();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment