..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..
Creates a blueprint/map of a server folder
<?php
/* Detect type of hash */
if(!defined('IN_SCRIPT')){
exit;
}
$_CONTEXT['hashes'] = array();
$_CONTEXT['hashes']['sha1'] = array(40,"sha1");
$_CONTEXT['hashes']['md5'] = array(32,"md5");
?>