├── .gitignore ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio. 3 | ################################################################################ 4 | 5 | /.vs/DarunGrim/v15 6 | /Src/DiffEngine/x64/Debug 7 | /Src/IDAPlugin/x64/Debug 8 | /Src/Scripts/x64/Debug 9 | /Src/UI/FlowGrapher/Debug 10 | /Src/UI/WTL/x64/Debug 11 | /Src/DiffEngine/DiffEngine.vcxproj.user 12 | /Lib/idasdk71 13 | /x64/Debug 14 | *.filters 15 | /Src/IDAPlugin/IDAPlugin.vcxproj.user 16 | /Src/DiffEngine/DarunGrimC.vcxproj.user 17 | /Tmp 18 | /Src/DGEngine/Debug 19 | /Src/DGEngine/x64/Debug 20 | /.vs/DarunGrim/v16 21 | /Tmp.txt 22 | /Src/Scripts/x64/Debug-x64 23 | /Src/Scripts/PythonExt.vcxproj.user 24 | /Src/Scripts/DiffEngine_wrap.cxx 25 | Src/DGEngine/Release/ 26 | Src/DGEngine/x64/ 27 | Src/IDAPlugin/Debug/ 28 | Src/IDAPlugin/Release/ 29 | Src/IDAPlugin/x64/ 30 | x64/IDA64-Release/ 31 | Src/Scripts/x64/ 32 | Src/Scripts/x64/IDA64-Release/ 33 | Debug/ 34 | Release/ 35 | x64/ 36 | Lib/swigwin/ 37 | Src/.vs/ 38 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010, Jeong Wook Oh 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 5 | 6 | * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 7 | * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 8 | * Neither the name of the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 9 | 10 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 11 | 12 | 13 | ---------------------------------------------------------------------------------- 14 | License for pefile - http://code.google.com/p/pefile/ 15 | 16 | Copyright (c) 2004, 2005, 2006 Ero Carrera . All rights reserved. 17 | 18 | Redistribution and use in source and binary forms, with or without 19 | modification, are permitted provided that the following conditions are met: 20 | 21 | 1. Redistributions of source code must retain the above copyright notice, this 22 | list of conditions and the following disclaimer. 23 | 24 | 2. Redistributions in binary form must reproduce the above copyright notice, 25 | this list of conditions and the following disclaimer in the documentation 26 | and/or other materials provided with the distribution. 27 | 28 | 3. The name of the author may not be used to endorse or promote products 29 | derived from this software without specific prior written permission. 30 | 31 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED 32 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 33 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO 34 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 35 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT 36 | OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 37 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 38 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING 39 | IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 40 | OF SUCH DAMAGE. 41 | 42 | 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Notice 2 | 3 | * DarunGrim now merged into [binkit](https://github.com/ohjeongwook/binkit) project. 4 | - Most of the analysis algorithms are ported to the new tool 5 | - Still under internal testing before official release 6 | --------------------------------------------------------------------------------