var fDesc=new Array();
fDesc[0] = "Inspect your applications before you start them with PeStudio.
With PeStudio, you can discover many security relevant details about any application (-.exe, -.dll, -.cpl, -.ocx, -.ax, -.sys, ...) WITHOUT starting it, like:
- whether anonymous functions are exported
- whether obsolete functions are imported
- whether Data Execution Prevention (DEP) will be used
- whether Address Space Layout Randomization (ASLR) is used
- whether Structured Exception Handling (SEH) is used
- whether an application is 64-Bit capable
- whether unused bytes (Caves) are available
- whether Structured Storage is used
- whether an HTTP connection will be made
- whether the file is obfuscated (encrypted, compressed)";
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 = '';
}
}