7.3.2 Remote File Inclusion (RFI)
https://www.indusface.com/learning/file-inclusion-attacks-lfi-rfi/
Remote File Inclusion (RFI)
Scenario Example
<?php
$templateUrl = $_POST[‘template_url’];
// Fetch and display the custom template
include($templateUrl);
?>Last updated