..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 don't..
THC xConverter is a tool that makes use of (php) functions in order to calculate, fetch, convert and encrypt data
<?php
/* Fetches database profiles
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 14-11-2014
*/
if(!defined('IN_SCRIPT')){
exit;
}
$sDest = $_PATHS['data_root']."/dbprofiles.php";
include_once($sDest);
$bRecords = false;
$sSelectProfiles = "<select name=\"sProfiles\" class=\"profilesf\">\n";
foreach($_CONTEXT['dbcon'] as $sName=>$aValues){
$bRecords = true;
$sSelectProfiles .= "<optgroup label=\"".$sName."\">\n";
for($x=0;$x<count($aValues);$x++){
$sSelectProfiles .= "<option value=\"".$sName.":".$x."\">".$aValues[$x]['user']."@".$aValues[$x]['host']." - ".$aValues[$x]['db']."</option>\n";
}
$sSelectProfiles .= "</optgroup>\n";
}
$sSelectProfiles .= "</select>\n";
?>