Bypass Local File Inclusion(LFI) prevention filters
I have these two LFI filters and i want to bypass them
$bad = str_replace(‘../’,”,$_GET[‘bad’]);
while( substr_count($bad, ‘../’, 0)) {
$bad = str_replace(‘../’, ”, $bad);
};
include("./&q… Continue reading Bypass Local File Inclusion(LFI) prevention filters