Skip to content

Instantly share code, notes, and snippets.

View ix64's full-sized avatar
😀
Hello 2024!

MengYX ix64

😀
Hello 2024!
View GitHub Profile
@ix64
ix64 / exhaustion.php
Created August 18, 2018 07:26
a simple password exhaustion
<?php
$length=4;
$chars=array_merge(range(0,9),range("a","z"));//,range("A","Z")
$chars_count=count($chars);
//Generate Code
$code="%replace%";
$pass_chars=[];
for($w=0;$w<$length;$w++){