Raikia / FiercePhish

FiercePhish is a full-fledged phishing framework to manage all phishing engagements. It allows you to track separate phishing campaigns, schedule sending of emails, and much more.

Home Page:https://github.com/Raikia/FiercePhish/wiki

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dev branch: "Parse as PHP" option not properly closing PHP code

octagons opened this issue · comments

The listing below causes an uploaded file to include the string "<?php" at the end of the file if the "parse as PHP" option is selected for the file hosting action.

eval('?> '.$code.' <?php');

As a temporary workaround, I changed the line to the following:

eval('?> ' . $code . '<?php ?>');

This is clearly not a permanent solution, but it is unclear what functionality was originally intended in its current implementation.

I haven't had an issue here before yet, but that may be due to insufficient testing since its an early addition in the dev branch. Do you have an example PHP file you are hosting that I can test with?