├── README.md ├── LICENSE └── .gitmodules /README.md: -------------------------------------------------------------------------------- 1 | # Demangler 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021-2025 hors 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "XDemangle"] 2 | path = XDemangle 3 | url = https://github.com/horsicq/XDemangle.git 4 | [submodule "XDemangleWidget"] 5 | path = XDemangleWidget 6 | url = https://github.com/horsicq/XDemangleWidget.git 7 | [submodule "XOptions"] 8 | path = XOptions 9 | url = https://github.com/horsicq/XOptions.git 10 | [submodule "XShortcuts"] 11 | path = XShortcuts 12 | url = https://github.com/horsicq/XShortcuts.git 13 | [submodule "build_tools"] 14 | path = build_tools 15 | url = https://github.com/horsicq/build_tools 16 | [submodule "XExtractor"] 17 | path = XExtractor 18 | url = https://github.com/horsicq/XExtractor 19 | [submodule "XScanEngine"] 20 | path = XScanEngine 21 | url = https://github.com/horsicq/XScanEngine 22 | [submodule "XDisasmCore"] 23 | path = XDisasmCore 24 | url = https://github.com/horsicq/XDisasmCore.git 25 | [submodule "XRegionsWidget"] 26 | path = XRegionsWidget 27 | url = https://github.com/horsicq/XRegionsWidget.git 28 | [submodule "FormatWidgets"] 29 | path = FormatWidgets 30 | url = https://github.com/horsicq/FormatWidgets.git 31 | [submodule "FormatDialogs"] 32 | path = FormatDialogs 33 | url = https://github.com/horsicq/FormatDialogs.git 34 | [submodule "Formats"] 35 | path = Formats 36 | url = https://github.com/horsicq/Formats.git 37 | [submodule "Controls"] 38 | path = Controls 39 | url = https://github.com/horsicq/Controls.git 40 | [submodule "XMemoryMapWidget"] 41 | path = XMemoryMapWidget 42 | url = https://github.com/horsicq/XMemoryMapWidget.git 43 | [submodule "XEntropyWidget"] 44 | path = XEntropyWidget 45 | url = https://github.com/horsicq/XEntropyWidget.git 46 | [submodule "XQwt"] 47 | path = XQwt 48 | url = https://github.com/horsicq/XQwt.git 49 | [submodule "StaticScan"] 50 | path = StaticScan 51 | url = https://github.com/horsicq/StaticScan.git 52 | [submodule "SpecAbstract"] 53 | path = SpecAbstract 54 | url = https://github.com/horsicq/SpecAbstract.git 55 | [submodule "XArchive"] 56 | path = XArchive 57 | url = https://github.com/horsicq/XArchive.git 58 | [submodule "XTranslation"] 59 | path = XTranslation 60 | url = https://github.com/horsicq/XTranslation.git 61 | [submodule "XStyles"] 62 | path = XStyles 63 | url = https://github.com/horsicq/XStyles.git 64 | [submodule "XDEX"] 65 | path = XDEX 66 | url = https://github.com/horsicq/XDEX.git 67 | [submodule "XHashWidget"] 68 | path = XHashWidget 69 | url = https://github.com/horsicq/XHashWidget.git 70 | [submodule "XCapstone"] 71 | path = XCapstone 72 | url = https://github.com/horsicq/XCapstone.git 73 | [submodule "XHexView"] 74 | path = XHexView 75 | url = https://github.com/horsicq/XHexView.git 76 | [submodule "XDisasmView"] 77 | path = XDisasmView 78 | url = https://github.com/horsicq/XDisasmView.git 79 | [submodule "XHexEdit"] 80 | path = XHexEdit 81 | url = https://github.com/horsicq/XHexEdit.git 82 | [submodule "signatures"] 83 | path = signatures 84 | url = https://github.com/horsicq/signatures.git 85 | [submodule "nfd_widget"] 86 | path = nfd_widget 87 | url = https://github.com/horsicq/nfd_widget.git 88 | [submodule "XFileInfo"] 89 | path = XFileInfo 90 | url = https://github.com/horsicq/XFileInfo 91 | [submodule "XPDF"] 92 | path = XPDF 93 | url = https://github.com/horsicq/XPDF 94 | [submodule "XInfoDB"] 95 | path = XInfoDB 96 | url = https://github.com/horsicq/XInfoDB 97 | [submodule "XSymbolsWidget"] 98 | path = XSymbolsWidget 99 | url = https://github.com/horsicq/XSymbolsWidget 100 | [submodule "XOnlineTools"] 101 | path = XOnlineTools 102 | url = https://github.com/horsicq/XOnlineTools 103 | [submodule "XAboutWidget"] 104 | path = XAboutWidget 105 | url = https://github.com/horsicq/XAboutWidget 106 | [submodule "die_script"] 107 | path = die_script 108 | url = https://github.com/horsicq/die_script 109 | [submodule "hex_templates"] 110 | path = hex_templates 111 | url = https://github.com/horsicq/hex_templates 112 | [submodule "XExtractorWidget"] 113 | path = XExtractorWidget 114 | url = https://github.com/horsicq/XExtractorWidget 115 | [submodule "XUpdate"] 116 | path = XUpdate 117 | url = https://github.com/horsicq/XUpdate 118 | [submodule "XGithub"] 119 | path = XGithub 120 | url = https://github.com/horsicq/XGithub 121 | [submodule "XVisualizationWidget"] 122 | path = XVisualizationWidget 123 | url = https://github.com/horsicq/XVisualizationWidget 124 | [submodule "XDecompiler"] 125 | path = XDecompiler 126 | url = https://github.com/horsicq/XDecompiler 127 | [submodule "XYara"] 128 | path = XYara 129 | url = https://github.com/horsicq/XYara 130 | [submodule "yara_widget"] 131 | path = yara_widget 132 | url = https://github.com/horsicq/yara_widget 133 | [submodule "die_widget"] 134 | path = die_widget 135 | url = https://github.com/horsicq/die_widget 136 | [submodule "Detect-It-Easy"] 137 | path = Detect-It-Easy 138 | url = https://github.com/horsicq/Detect-It-Easy 139 | [submodule "XDataConvertorWidget"] 140 | path = XDataConvertorWidget 141 | url = https://github.com/horsicq/XDataConvertorWidget 142 | [submodule "XStaticUnpacker"] 143 | path = XStaticUnpacker 144 | url = https://github.com/horsicq/XStaticUnpacker 145 | --------------------------------------------------------------------------------