Ejemplo n.º 1
0
if (isset($_POST["target"])) {
    $target = $_POST["target"];
    if ($target == "") {
        echo "<font color=\"red\">Please enter your IP address...</font>";
    } else {
        echo "Did you captured our GOLDEN packet?";
        if (PHP_OS == "Windows" or PHP_OS == "WINNT" or PHP_OS == "WIN32") {
            // Debugging
            // echo "Windows!";
            // Increasing the PING count will slow down your web scanner!
            shell_exec("ping -n 1 " . commandi($target));
        } else {
            // Debugging
            // echo "Not Windows!";
            // Increasing the PING count will slow down your web scanner!
            shell_exec("ping -c 1 " . commandi($target));
        }
    }
}
?>

</div>

<div id="side">

    <a href="http://twitter.com/MME_IT" target="blank_" class="button"><img src="./images/twitter.png"></a>
    <a href="http://be.linkedin.com/in/malikmesellem" target="blank_" class="button"><img src="./images/linkedin.png"></a>
    <a href="http://www.facebook.com/pages/MME-IT-Audits-Security/104153019664877" target="blank_" class="button"><img src="./images/facebook.png"></a>
    <a href="http://itsecgames.blogspot.com" target="blank_" class="button"><img src="./images/blogger.png"></a>

</div>
Ejemplo n.º 2
0
" method="POST">

        <p>

        <label for="title">Search for a movie:</label>
        <input type="text" id="title" name="title" size="25">    

        <button type="submit" name="action" value="search">Search</button> &nbsp;&nbsp;(<a href="http://sourceforge.net/projects/bwapp/files/bee-box/" target="_blank">bee-box</a> only)

        </p>

    </form>
    <?php 
if (isset($_POST["title"])) {
    $title = $_POST["title"];
    $title = commandi($title);
    if ($title == "") {
        echo "<p><font color=\"red\">Please enter a title...</font></p>";
    } else {
        echo shell_exec("./apps/movie_search " . $title);
    }
} else {
    echo "<p>HINT: \\x90*354 + \\x8f\\x92\\x04\\x08 + [payload]</p>";
    echo "<p>Thanks to David Bloom (@philophobia78) for developing the C++ BOF application!</p>";
}
?>

</div>

<div id="side">
Ejemplo n.º 3
0
        <label for="target">DNS lookup:</label>
        <input type="text" id="target" name="target" value="www.nsa.gov">

        <button type="submit" name="form" value="submit">Lookup</button>

        </p>

    </form>
    <?php 
if (isset($_POST["target"])) {
    $target = $_POST["target"];
    if ($target == "") {
        echo "<font color=\"red\">Enter a domain name...</font>";
    } else {
        echo "<p align=\"left\">" . shell_exec("nslookup  " . commandi($target)) . "</p>";
    }
}
?>

</div>

<div id="side">

    <a href="http://twitter.com/MME_IT" target="blank_" class="button"><img src="./images/twitter.png"></a>
    <a href="http://be.linkedin.com/in/malikmesellem" target="blank_" class="button"><img src="./images/linkedin.png"></a>
    <a href="http://www.facebook.com/pages/MME-IT-Audits-Security/104153019664877" target="blank_" class="button"><img src="./images/facebook.png"></a>
    <a href="http://itsecgames.blogspot.com" target="blank_" class="button"><img src="./images/blogger.png"></a>

</div>