random gallery image
random tutorial
preview

..or more modules you must have seen the iframes used for realtime result display. In this tutorial I'm going to show you how to insert them into your module and how they function. what..

read more

random information gathering
THC Sscan

THC Sscan is a very versatile tool for scanning (html) files

more about this module
more of this category
more modules

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.
/* get the name of the folder and display it */
$(document).on("click","input.editpath",function(e){
    e.preventDefault();
    dataString = $("form.pathform").serialize();
    $.ajax({
        type: "POST",
        url: "JSON/path_edit.php",
        data: dataString,
        dataType: "json",
        beforeSend:function(){
            $('input[type="submit"]').attr('disabled','disabled');
        },
        success: function(json){
            if(json.jresult==false){
                $('input[type="submit"]').removeAttr('disabled');
                alert(json.jmessage);
            }
            else{
                $('div.clear#pathnames').after('<div class="cc_record" id="editname"><div class="flt pad3 w150"><b>old folder</b></div><div class="flt pad3">'+json.jfolder+'</div></div><div class="clear"></div>');
                $('div.clear#pathnames').append('<div class="cc_record" id="editname"><div class="flt pad3 w150"><b>new folder</b></div><div class="flt pad3"><input type="text" name="sNewName" value="'+json.jfolder+'" /></div></div><div class="clear"></div>');
                $('input.editpath').after('<input type="submit" name="submit" class="changename" value="Change" />');
                $('input.editpath').remove();
            }
        }
    });
});
/* send folder change request to json file */
$(document).on("click","input.changename",function(e){
    e.preventDefault();
    dataString = $("form.pathform").serialize();
    $.ajax({
        type: "POST",
        url: "JSON/path_edit.php",
        data: dataString,
        dataType: "json",
        beforeSend:function(){
            $('input[type="submit"]').attr('disabled','disabled');
        },
        success: function(json){
            if(json.jresult==false){
                $('input[type="submit"]').removeAttr('disabled');
                alert(json.jmessage);
            }
            else{
                $('form.pathform').hide('slow');
                $('form.pathform').after('<div class="cc_summary emboss borderr5 border1pxtrans pad5 edgeglow"><div class="embosshdrnocenter border1pxtrans pad5">RESULT</div><div class="cc_record"><div class="flt pad3">'+json.jmessage+'</div></div></div><div class="clear"></div>');
            }
        }
    });
});
powered by
site stats
cms statistics:
version: 0.6.0
downloads: 4380
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.