├── .gitignore ├── IDAShell.sln ├── IDAShell ├── CShellExt.cpp ├── CShellExt.h ├── IDAShell.vcxproj ├── IDAShell.vcxproj.filters ├── bitmap.cpp ├── bitmap.h ├── dllmain.cpp ├── dllmain.h ├── execute.cpp ├── execute.h ├── export.def ├── ida.ico ├── identify.cpp ├── identify.h ├── pch.cpp ├── pch.h ├── resource.h └── resource.rc ├── LICENSE ├── README.md ├── image.png └── installer.iss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/.gitignore -------------------------------------------------------------------------------- /IDAShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell.sln -------------------------------------------------------------------------------- /IDAShell/CShellExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/CShellExt.cpp -------------------------------------------------------------------------------- /IDAShell/CShellExt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/CShellExt.h -------------------------------------------------------------------------------- /IDAShell/IDAShell.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/IDAShell.vcxproj -------------------------------------------------------------------------------- /IDAShell/IDAShell.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/IDAShell.vcxproj.filters -------------------------------------------------------------------------------- /IDAShell/bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/bitmap.cpp -------------------------------------------------------------------------------- /IDAShell/bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/bitmap.h -------------------------------------------------------------------------------- /IDAShell/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/dllmain.cpp -------------------------------------------------------------------------------- /IDAShell/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/dllmain.h -------------------------------------------------------------------------------- /IDAShell/execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/execute.cpp -------------------------------------------------------------------------------- /IDAShell/execute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/execute.h -------------------------------------------------------------------------------- /IDAShell/export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/export.def -------------------------------------------------------------------------------- /IDAShell/ida.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/ida.ico -------------------------------------------------------------------------------- /IDAShell/identify.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/identify.cpp -------------------------------------------------------------------------------- /IDAShell/identify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/identify.h -------------------------------------------------------------------------------- /IDAShell/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/pch.cpp -------------------------------------------------------------------------------- /IDAShell/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/pch.h -------------------------------------------------------------------------------- /IDAShell/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/resource.h -------------------------------------------------------------------------------- /IDAShell/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/IDAShell/resource.rc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/README.md -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/image.png -------------------------------------------------------------------------------- /installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/namazso/IDAShell/HEAD/installer.iss --------------------------------------------------------------------------------