random gallery image
random tutorial
preview

..will show you how to make a multi bridge between THC_DO, THC_SS and THC_II and keep track of the output in realtime using iframes. So what exactly are we going to do? First of all if you..

read more

random stress testing
HackSuite File Library
File Library
Here you can find the latest files and structure of the THC HackSuite, note that if you have an earlier version of the suite it's not recommended to update files manually. Instead you should overwrite your existing HackSuite environment.
/* Menu for handling dork searches at google

Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 28-03-2015
*/
/* start menu */
$(document).ready(function(){
    var selectForm = "<select name=\"iType\" class=\"dorktype\">";
    selectForm += "<option value=\"-1\" selected=\"selected\">select your task</option>";
    selectForm += "<option value=\"0\">view results for dork</option>";
    selectForm += "<option value=\"1\">save items that match dork</option>";
    selectForm += "</select>";
    $('div.modright').html(selectForm);
});
/* main selection menu */
$(document).on("change","select.dorktype",function(e){
    e.preventDefault();
    var form = '';
    if($(this).val()=='0'){
        // show results
        form += '<div class="modrow"><div class="modleft">results</div><div class="modright" id="a"></div></div><div class="clear"></div>';
        form += '<div class="modrow"><div class="modleft">input type</div><div class="modright" id="b"></div></div><div class="clear"></div>';
        form += '<div class="modrow"><div class="modleft">input</div><div class="modright" id="c"></div></div><div class="clear"></div>';
        form += '<div class="modrow"><input type="submit" class=\"mt5\" name="submit" value="View" /></div><div class="clear"></div>';
    }
    else if($(this).val()=='1'){
        // save results
        form += '<div class="modrow"><div class="modleft">results</div><div class="modright" id="a"></div></div><div class="clear"></div>';
        form += '<div class="modrow"><div class="modleft">input type</div><div class="modright" id="b"></div></div><div class="clear"></div>';
        form += '<div class="modrow"><div class="modleft">input</div><div class="modright" id="c"></div></div><div class="clear"></div>';
        form += '<div class="modrow"><div class="modleft">save method</div><div class="modright" id="d"></div></div><div class="clear"></div>';
        form += '<div class="modrow mt5"><input type="submit" class=\"mt5\" name="submit" value="Save" /></div><div class="clear"></div>';
    }
    else{
        alert('Make a selection from the selection menu');
    }
    $('div.modrowplholder').html(form);
    // get all selection menus
    $.ajax({
        type: "GET",
        url: "Modules/thc_do/dork.php",
        dataType: "json",
        success: function(json){
            $('div.modright#a').html(json.jdorkamountselect);
            $('div.modright#b').html(json.jdorkmodeselect);
            $('div.modright#c').html('<i>select an input type first</i>');
            $('div.modright#d').html(json.jdorksaveselect);
        },
        error: function(xhr){
            alert("An error occured, please try again");
        }
    });
});
/* fetches either a selection menu with stored dorks or an input field to specify one by yourself */
$(document).on("change","select.dorkmode",function(e){
    e.preventDefault();
    if($(this).val()!='-1'){
        $.ajax({
            type: "POST",
            url: "Modules/thc_do/dork.php",
            data: "iMode="+$(this).val(),
            dataType: "json",
            success: function(json){
                $('div.modright#c').html(json.jselect);
            },
            error: function(xhr){
                alert("An error occured, please try again");
            }
        });
    }
    else{
        alert("Invalid selection specified");
    }
});
powered by
site stats
cms statistics:
version: 0.6.0
downloads: 4384
native: 26
modules: 21
apps: 2
support development
It takes lots of calories in order to create new things for the hacksuite, so it would be grand if you could buy me a protein shake or extra energy to keep me going. Thanks!
disclaimer
We are not responsible for any direct or indirect damage caused by abusing the tools provided on hacksuite.com. The suite is developed for educational purposes, use at your own risk!
Created by Remco Kouw. Powered by protein shakes and a high calorie diet.