Delete fw_dumps directory

This commit is contained in:
Jelmer
2023-07-09 22:50:29 +02:00
committed by GitHub
parent 112a467cff
commit dd14fd2074
14 changed files with 0 additions and 9 deletions

View File

@@ -1,9 +0,0 @@
<?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";
}