Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Vuln-Dev
[Top] [All Lists]

Re: xxs in MKPortal M1.1

Subject: Re: xxs in MKPortal M1.1
Date: 28 Sep 2006 20:34:34 -0000
Here is a Fix from me, delete the pmpopup.php, create a new one with this in 
there:

<?


$m1 = str_replace("%20", " ", $_GET['m1']);
$m2 = str_replace("%20", " ", $_GET['m2']);
$m3 = str_replace("%20", " ", $_GET['m3']);
$m4 = str_replace("%20", " ", $_GET['m4']);
$u1 = $_GET['u1'];


foreach ($_POST AS $key => $val) {
    if (${$key} == $val) {
        unset (${$key});
    }
}
foreach ($_GET AS $key => $val) {
    if (${$key} == $val) {
     echo "Hacking Attempt logged \n";
        unset (${$key});
    }
}
foreach ($_COOKIE AS $key => $val) {
    if (${$key} == $val) {
        unset (${$key});
    }
}

$output = "<script language=\"javascript\" type=\"text/javascript\">
<!--
function jump_to_inbox()
{
        opener.document.location.href = \"$u1\";
        window.close();
}
//-->
</script>
<body>
  <table width=\"100%\" height=\"100%\" border=\"0\" cellspacing=\"0\" 
cellpadding=\"1\" bgcolor=\"#F5F5F5\">
    <tr>
      <td>
        <table align=\"center\" width=\"95%\"  border=\"1\" cellspacing=\"0\" 
cellpadding=\"0\">
          <tr>
            <td valign=\"top\" width=\"100%\" bgcolor=\"#DFE6EF\" 
align=\"center\"><br /><strong><font face=\"verdana\" size=\"2\">$m1<a href=$u1 
onclick=\"jump_to_inbox();return false;\" target=\"_new\"> 
$m2</a>$m3</font></strong><br /><br /><font face=\"verdana\" size=\"2\"><a 
href=\"javascript:window.close();\" >$m4</a></font><br /><br />
            </td>
          </tr>
        </table>
      </td>
    </tr>
  </table>
</body>
  
  ";

  print $output;

  ?>


MFG

Sourcecode

yet another Exploit Source : http://www.replica-solutions.de
[Perl] my start.pl from the Wapiti HTTP Vuln. Scanner -> 
http://tinyurl.com/ha6km
Nmap in combination with other Linux tools: http://tinyurl.com/pknlw

<Prev in Thread] Current Thread [Next in Thread>