Potresti creare uno script che fornisce il sorgente, qualcosa del tipo
Codice PHP:
<?php
if(isset($_GET['file'])){
if(!is_file($_GET['file'])){
header('Location: index.php');
}else{
$source = implode('', file($_GET['file']);
header("Content-type: text/plain");
echo $source;
}
}else{
header('Location: index.php');
}
?>
Potresti addirittura evidenziare la sintassi del php, così:
Codice PHP:
<?php
if(isset($_GET['file'])){
if(!is_file($_GET['file'])){
header('Location: index.php');
}else{
highlight_file($_GET['file']);
}
}else{
header('Location: index.php');
}
?>