├── Helper ├── Helper │ ├── Helper.cpp │ ├── Helper.def │ ├── Helper.ncb │ ├── Helper.opensdf │ ├── Helper.sln │ ├── Helper.sln.old │ ├── Helper.suo │ ├── Helper.suo.old │ ├── Helper.vcproj │ ├── Helper.vcproj.Usuario-PC.Usuario.user │ ├── Helper.vcxproj │ ├── Helper.vcxproj.filters │ ├── Helper.vcxproj.user │ ├── ReadMe.txt │ ├── UpgradeLog.XML │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h └── UDis86 │ ├── Extra.cpp │ ├── GetInstructionLength.cpp │ ├── GetInstructionLength.h │ ├── Libs │ ├── UDis86Lib.dll │ ├── UDis86Lib.lib │ └── UDis86Lib_Debug.lib │ ├── UDis86Lib.def │ ├── UDis86Lib.sln │ ├── UDis86Lib.suo │ ├── UDis86Lib.vcproj │ ├── UDis86Lib.vcxproj │ ├── UDis86Lib.vcxproj.filters │ ├── UDis86Lib.vcxproj.user │ ├── UpgradeLog.XML │ ├── decode.c │ ├── decode.h │ ├── docs │ ├── LICENSE.txt │ ├── index.html │ ├── style.css │ ├── udis86.odt │ ├── udis86.pdf │ ├── x86optable.xml │ ├── x86optable.xsl │ └── ~$udis86.odt │ ├── extern.h │ ├── input.c │ ├── input.h │ ├── ipch │ └── udis86lib-f922fce0 │ │ └── udis86lib-861137b7.ipch │ ├── itab.c │ ├── itab.h │ ├── syn-att.c │ ├── syn-intel.c │ ├── syn.c │ ├── syn.h │ ├── types.h │ ├── udis86.c │ └── udis86.h ├── Plugin └── VTBL.idc ├── README.md └── VTBL ├── DeviareTest.csproj ├── DeviareTest.csproj.user ├── DeviareTest.suo ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── VTBL.sln └── VTBL.suo /Helper/Helper/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.cpp -------------------------------------------------------------------------------- /Helper/Helper/Helper.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.def -------------------------------------------------------------------------------- /Helper/Helper/Helper.ncb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.ncb -------------------------------------------------------------------------------- /Helper/Helper/Helper.opensdf: -------------------------------------------------------------------------------- 1 | UsuarioUSUARIO-PC -------------------------------------------------------------------------------- /Helper/Helper/Helper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.sln -------------------------------------------------------------------------------- /Helper/Helper/Helper.sln.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.sln.old -------------------------------------------------------------------------------- /Helper/Helper/Helper.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.suo -------------------------------------------------------------------------------- /Helper/Helper/Helper.suo.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.suo.old -------------------------------------------------------------------------------- /Helper/Helper/Helper.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.vcproj -------------------------------------------------------------------------------- /Helper/Helper/Helper.vcproj.Usuario-PC.Usuario.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.vcproj.Usuario-PC.Usuario.user -------------------------------------------------------------------------------- /Helper/Helper/Helper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.vcxproj -------------------------------------------------------------------------------- /Helper/Helper/Helper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.vcxproj.filters -------------------------------------------------------------------------------- /Helper/Helper/Helper.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/Helper.vcxproj.user -------------------------------------------------------------------------------- /Helper/Helper/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/ReadMe.txt -------------------------------------------------------------------------------- /Helper/Helper/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/UpgradeLog.XML -------------------------------------------------------------------------------- /Helper/Helper/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/dllmain.cpp -------------------------------------------------------------------------------- /Helper/Helper/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/stdafx.cpp -------------------------------------------------------------------------------- /Helper/Helper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/stdafx.h -------------------------------------------------------------------------------- /Helper/Helper/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/Helper/targetver.h -------------------------------------------------------------------------------- /Helper/UDis86/Extra.cpp: -------------------------------------------------------------------------------- 1 | 2 | bool IsValidAddress() 3 | { 4 | 5 | return true; 6 | } -------------------------------------------------------------------------------- /Helper/UDis86/GetInstructionLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/GetInstructionLength.cpp -------------------------------------------------------------------------------- /Helper/UDis86/GetInstructionLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/GetInstructionLength.h -------------------------------------------------------------------------------- /Helper/UDis86/Libs/UDis86Lib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/Libs/UDis86Lib.dll -------------------------------------------------------------------------------- /Helper/UDis86/Libs/UDis86Lib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/Libs/UDis86Lib.lib -------------------------------------------------------------------------------- /Helper/UDis86/Libs/UDis86Lib_Debug.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/Libs/UDis86Lib_Debug.lib -------------------------------------------------------------------------------- /Helper/UDis86/UDis86Lib.def: -------------------------------------------------------------------------------- 1 | LIBRARY "UDis86Lib" 2 | 3 | EXPORTS IsValidAddress -------------------------------------------------------------------------------- /Helper/UDis86/UDis86Lib.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/UDis86Lib.sln -------------------------------------------------------------------------------- /Helper/UDis86/UDis86Lib.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/UDis86Lib.suo -------------------------------------------------------------------------------- /Helper/UDis86/UDis86Lib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/UDis86Lib.vcproj -------------------------------------------------------------------------------- /Helper/UDis86/UDis86Lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/UDis86Lib.vcxproj -------------------------------------------------------------------------------- /Helper/UDis86/UDis86Lib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/UDis86Lib.vcxproj.filters -------------------------------------------------------------------------------- /Helper/UDis86/UDis86Lib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/UDis86Lib.vcxproj.user -------------------------------------------------------------------------------- /Helper/UDis86/UpgradeLog.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/UpgradeLog.XML -------------------------------------------------------------------------------- /Helper/UDis86/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/decode.c -------------------------------------------------------------------------------- /Helper/UDis86/decode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/decode.h -------------------------------------------------------------------------------- /Helper/UDis86/docs/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/docs/LICENSE.txt -------------------------------------------------------------------------------- /Helper/UDis86/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/docs/index.html -------------------------------------------------------------------------------- /Helper/UDis86/docs/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/docs/style.css -------------------------------------------------------------------------------- /Helper/UDis86/docs/udis86.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/docs/udis86.odt -------------------------------------------------------------------------------- /Helper/UDis86/docs/udis86.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/docs/udis86.pdf -------------------------------------------------------------------------------- /Helper/UDis86/docs/x86optable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/docs/x86optable.xml -------------------------------------------------------------------------------- /Helper/UDis86/docs/x86optable.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/docs/x86optable.xsl -------------------------------------------------------------------------------- /Helper/UDis86/docs/~$udis86.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/docs/~$udis86.odt -------------------------------------------------------------------------------- /Helper/UDis86/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/extern.h -------------------------------------------------------------------------------- /Helper/UDis86/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/input.c -------------------------------------------------------------------------------- /Helper/UDis86/input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/input.h -------------------------------------------------------------------------------- /Helper/UDis86/ipch/udis86lib-f922fce0/udis86lib-861137b7.ipch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/ipch/udis86lib-f922fce0/udis86lib-861137b7.ipch -------------------------------------------------------------------------------- /Helper/UDis86/itab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/itab.c -------------------------------------------------------------------------------- /Helper/UDis86/itab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/itab.h -------------------------------------------------------------------------------- /Helper/UDis86/syn-att.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/syn-att.c -------------------------------------------------------------------------------- /Helper/UDis86/syn-intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/syn-intel.c -------------------------------------------------------------------------------- /Helper/UDis86/syn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/syn.c -------------------------------------------------------------------------------- /Helper/UDis86/syn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/syn.h -------------------------------------------------------------------------------- /Helper/UDis86/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/types.h -------------------------------------------------------------------------------- /Helper/UDis86/udis86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/udis86.c -------------------------------------------------------------------------------- /Helper/UDis86/udis86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Helper/UDis86/udis86.h -------------------------------------------------------------------------------- /Plugin/VTBL.idc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/Plugin/VTBL.idc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/README.md -------------------------------------------------------------------------------- /VTBL/DeviareTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/DeviareTest.csproj -------------------------------------------------------------------------------- /VTBL/DeviareTest.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/DeviareTest.csproj.user -------------------------------------------------------------------------------- /VTBL/DeviareTest.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/DeviareTest.suo -------------------------------------------------------------------------------- /VTBL/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Form1.Designer.cs -------------------------------------------------------------------------------- /VTBL/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Form1.cs -------------------------------------------------------------------------------- /VTBL/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Form1.resx -------------------------------------------------------------------------------- /VTBL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Program.cs -------------------------------------------------------------------------------- /VTBL/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VTBL/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VTBL/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Properties/Resources.resx -------------------------------------------------------------------------------- /VTBL/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /VTBL/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/Properties/Settings.settings -------------------------------------------------------------------------------- /VTBL/VTBL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/VTBL.sln -------------------------------------------------------------------------------- /VTBL/VTBL.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nektra/vtbl-ida-pro-plugin/HEAD/VTBL/VTBL.suo --------------------------------------------------------------------------------