var fDesc=new Array(); fDesc[0] = "Deviare has been developed intercept any API calls, letting you get in control of any application's code execution.
To intercept these calls is a powerful technique named "hooking", which gives the possibilities to the following:
* Spy and learn about the Operating System's internal behavior, and the external applications' behavior, without having access to their source code.
* Trace and debug applications' code execution, making visible its API calls and its functions' parameters, without having access to their source code.
* Get in control of the Operating System's processes, to monitor, filter and modify their behavior, to inject your own code and to extend their standard functionality.
* Monitor the interaction between a process and COM objects.
* Hook into VoIP applications (e.g: Skype) to record audio in real time."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }