Created
April 5, 2023 05:47
-
-
Save binarykore/f00df8ffc388c6033e3b92109b2cde3f to your computer and use it in GitHub Desktop.
Shadow Breaker - 15 Digit IMEI Generator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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