added some more dumps for reference

This commit is contained in:
jjwbruijn
2023-05-27 21:03:55 +02:00
parent cd288e79f4
commit 6380cd15cb
21 changed files with 9 additions and 58816 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

9
fw_dumps/mkmd5.php Normal file
View File

@@ -0,0 +1,9 @@
<?php
exec("ls -1 | grep -v \".php\" | grep -v infopage | grep bin", $list);
foreach($list as $file){
$data = file_get_contents($file);
$data = substr($data,0,10240);
$md5 = strtoupper(md5($data));
echo "$file - $md5\n";
}