var fDesc=new Array(); fDesc[0] = "BinVis is a C# based project to visualize binary-file structures in unique ways. - The visual way for reverse engineering and forensics. Specifically BinVis can help you to look for suspicious parts in packed or encrypted files like binaries, and to locate relevant offsets. It provides a visual overview for easier orientation and deeper insight.

Features:
-visual and active structure viewer
-multiple plots for different focus points
-focusing on portions of a sample

-seeing stings and ressources, in PE or ELF executables e. g.
-getting patterns for cryptanalysis on files
-spotting packer or encoder algorithms
-identify Steganography by patterns
-visual binary-diffing"; 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 = ''; } }