What of the following vulnerabilities is present in the below source code file named
âAuthenticatedArea.phpâ?
<html><head><title>AuthenticatedArea</title></head>
<?
include (â/inc/common.phpâ);
$username = $_REQUEST[âusernameâ];
if ($username != ââ) {
echo âYour username is: â . $_REQUEST[âusernameâ];
}else {
header)(âlocation: /login.phpâ
}
?>
</html>

A.
Header manipulation
B.
Account disclosure
C.
Unvalidated file inclusion
D.
Cross-site scripting