..I will show you how to create native tools. I'm not going to make a new tool though, instead I will show you what is required to create one. You can find all the native tools in..
THC xConverter is a tool that makes use of (php) functions in order to calculate, fetch, convert and encrypt data
<?php
/* Escape double quotes in a string
Author: Remco Kouw
Site: http://www.hacksuite.com
Last Edit: 11-04-2015
*/
function EscapeDoubleQuotes($sString){
return(str_replace("\"","\\\"",$sString));
}
?>