flash.moe/public/signature/sig-src.php

18 lines
284 B
PHP
Raw Normal View History

2020-08-20 00:02:37 +00:00
<?php
switch($_GET['f'] ?? '') {
case 'src':
$file = 'sig-src.php';
break;
case 'redir':
$file = 'redir.php';
break;
case 'sig':
default:
$file = 'signature.php';
break;
}
highlight_string(file_get_contents($file));