..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..
AntiFTP uses wordlists in order to bruteforce FTP user accounts
/* file manager menu */
$(document).on({
mouseover: function() {
$('div.moptions').remove();
copytitle = $(this).attr('title');
$(this).removeAttr('title');
if($(this).attr('id')=='dir'){
$(this).after('<div class="moptions emboss" alt="'+copytitle+'">[ <a href=\"#\" id=\"uploadfile\">upload</a> ][ <a href=\"#\" id=\"deletedir\">delete</a> ][ <a href=\"#\" id=\"renamedir\">rename</a> ]</div>');
}
else{
var filetype = copytitle.substr(copytitle.lastIndexOf('.') + 1);
if(filetype!="jpg" && filetype!="jpeg" && filetype!="png" && filetype!="gif"){
$(this).after('<div class="moptions emboss" alt="'+copytitle+'">[ <a href=\"#\" id=\"editfile\">edit</a> ][ <a href=\"#\" id=\"deletefile\">delete</a> ][ <a href=\"#\" id=\"renamefile\">rename</a> ]</div>');
}
else{
$(this).after('<div class="moptions emboss" alt="'+copytitle+'">[ <a href=\"#\" id=\"deletefile\">delete</a> ][ <a href=\"#\" id=\"renamefile\">rename</a> ]</div>');
}
}
},
mouseout: function() {
$(this).attr({title:copytitle});
}
}, ".devlistcellright a");