def load_view_rulegen_tab(self): """ """ layout = QtWidgets.QHBoxLayout() layout1 = QtWidgets.QVBoxLayout() layout2 = QtWidgets.QVBoxLayout() layout3 = QtWidgets.QVBoxLayout() right_top = QtWidgets.QWidget() right_top.setLayout(layout1) right_bottom = QtWidgets.QWidget() right_bottom.setLayout(layout3) left = QtWidgets.QWidget() left.setLayout(layout2) font = QtGui.QFont() font.setBold(True) font.setPointSize(11) label1 = QtWidgets.QLabel() label1.setAlignment(QtCore.Qt.AlignLeft) label1.setText("Preview") label1.setFont(font) label2 = QtWidgets.QLabel() label2.setAlignment(QtCore.Qt.AlignLeft) label2.setText("Editor") label2.setFont(font) self.view_rulegen_status_label = QtWidgets.QLabel() self.view_rulegen_status_label.setAlignment(QtCore.Qt.AlignLeft) self.view_rulegen_status_label.setText("") self.view_rulegen_search = QtWidgets.QLineEdit() self.view_rulegen_search.setPlaceholderText("search...") self.view_rulegen_search.setClearButtonEnabled(True) self.view_rulegen_search.textChanged.connect( self.slot_limit_rulegen_features_to_search) self.view_rulegen_header_label = QtWidgets.QLabel() self.view_rulegen_header_label.setAlignment(QtCore.Qt.AlignLeft) self.view_rulegen_header_label.setText("Features") self.view_rulegen_header_label.setFont(font) self.view_rulegen_preview = CapaExplorerRulgenPreview( parent=self.parent) self.view_rulegen_editor = CapaExplorerRulgenEditor( self.view_rulegen_preview, parent=self.parent) self.view_rulegen_features = CapaExplorerRulegenFeatures( self.view_rulegen_editor, parent=self.parent) self.view_rulegen_preview.textChanged.connect( self.slot_rulegen_preview_update) self.view_rulegen_editor.updated.connect( self.slot_rulegen_editor_update) self.set_rulegen_preview_border_neutral() layout1.addWidget(label1) layout1.addWidget(self.view_rulegen_preview, 45) layout1.addWidget(self.view_rulegen_status_label) layout3.addWidget(label2) layout3.addWidget(self.view_rulegen_editor, 65) layout2.addWidget(self.view_rulegen_header_label) layout2.addWidget(self.view_rulegen_search) layout2.addWidget(self.view_rulegen_features) splitter2 = QtWidgets.QSplitter(QtCore.Qt.Vertical) splitter2.addWidget(right_top) splitter2.addWidget(right_bottom) splitter1 = QtWidgets.QSplitter(QtCore.Qt.Horizontal) splitter1.addWidget(left) splitter1.addWidget(splitter2) layout.addWidget(splitter1) tab = QtWidgets.QWidget() tab.setLayout(layout) self.view_tabs.addTab(tab, "Rule Generator")
class CapaExplorerForm(idaapi.PluginForm): """form element for plugin interface""" def __init__(self, name, option=Options.DEFAULT): """initialize form elements""" super(CapaExplorerForm, self).__init__() self.form_title = name self.process_total = 0 self.process_count = 0 self.parent = None self.ida_hooks = None self.doc = None self.rules_cache = None self.ruleset_cache = None # models self.model_data = None self.range_model_proxy = None self.search_model_proxy = None # UI controls self.view_limit_results_by_function = None self.view_show_results_by_function = None self.view_search_bar = None self.view_tree = None self.view_rulegen = None self.view_tabs = None self.view_tab_rulegen = None self.view_status_label = None self.view_buttons = None self.view_analyze_button = None self.view_reset_button = None self.view_settings_button = None self.view_save_button = None self.view_rulegen_preview = None self.view_rulegen_features = None self.view_rulegen_editor = None self.view_rulegen_header_label = None self.view_rulegen_search = None self.rulegen_current_function = None self.rulegen_bb_features_cache = {} self.rulegen_func_features_cache = {} self.rulegen_file_features_cache = {} self.view_rulegen_status_label = None self.Show() if (option & Options.ANALYZE) == Options.ANALYZE: self.analyze_program() def OnCreate(self, form): """called when plugin form is created load interface and install hooks but do not analyze database """ self.parent = self.FormToPyQtWidget(form) self.parent.setWindowIcon(QICON) self.load_interface() self.load_ida_hooks() def Show(self): """creates form if not already create, else brings plugin to front""" return super(CapaExplorerForm, self).Show( self.form_title, options=(idaapi.PluginForm.WOPN_TAB | idaapi.PluginForm.WOPN_RESTORE | idaapi.PluginForm.WCLS_CLOSE_LATER | idaapi.PluginForm.WCLS_SAVE), ) def OnClose(self, form): """called when form is closed ensure any plugin modifications (e.g. hooks and UI changes) are reset before the plugin is closed """ self.unload_ida_hooks() self.model_data.reset() def load_interface(self): """load user interface""" # load models self.model_data = CapaExplorerDataModel() # model <- filter range <- filter search <- view self.range_model_proxy = CapaExplorerRangeProxyModel() self.range_model_proxy.setSourceModel(self.model_data) self.search_model_proxy = CapaExplorerSearchProxyModel() self.search_model_proxy.setSourceModel(self.range_model_proxy) self.view_tree = CapaExplorerQtreeView(self.search_model_proxy, self.parent) # load parent tab and children tab views self.load_view_tabs() self.load_view_checkbox_limit_by() self.load_view_checkbox_show_matches_by_function() self.load_view_search_bar() self.load_view_tree_tab() self.load_view_rulegen_tab() self.load_view_status_label() self.load_view_buttons() # load parent view self.load_view_parent() def load_view_tabs(self): """load tabs""" tabs = QtWidgets.QTabWidget() self.view_tabs = tabs def load_view_checkbox_limit_by(self): """load limit results by function checkbox""" check = QtWidgets.QCheckBox("Limit results to current function") check.setChecked(False) check.stateChanged.connect(self.slot_checkbox_limit_by_changed) self.view_limit_results_by_function = check def load_view_checkbox_show_matches_by_function(self): """load limit results by function checkbox""" check = QtWidgets.QCheckBox("Show matches by function") check.setChecked(False) check.stateChanged.connect( self.slot_checkbox_show_results_by_function_changed) self.view_show_results_by_function = check def load_view_status_label(self): """load status label""" label = QtWidgets.QLabel() label.setAlignment(QtCore.Qt.AlignLeft) label.setText("Click Analyze to get started...") self.view_status_label = label def load_view_buttons(self): """load the button controls""" analyze_button = QtWidgets.QPushButton("Analyze") reset_button = QtWidgets.QPushButton("Reset") save_button = QtWidgets.QPushButton("Save") settings_button = QtWidgets.QPushButton("Settings") analyze_button.clicked.connect(self.slot_analyze) reset_button.clicked.connect(self.slot_reset) save_button.clicked.connect(self.slot_save) settings_button.clicked.connect(self.slot_settings) layout = QtWidgets.QHBoxLayout() layout.addWidget(analyze_button) layout.addWidget(reset_button) layout.addWidget(settings_button) layout.addStretch(3) layout.addWidget(save_button, alignment=QtCore.Qt.AlignRight) self.view_analyze_button = analyze_button self.view_reset_button = reset_button self.view_settings_button = settings_button self.view_save_button = save_button self.view_buttons = layout def load_view_search_bar(self): """load the search bar control""" line = QtWidgets.QLineEdit() line.setPlaceholderText("search...") line.textChanged.connect(self.slot_limit_results_to_search) self.view_search_bar = line def load_view_parent(self): """load view parent""" layout = QtWidgets.QVBoxLayout() layout.addWidget(self.view_tabs) layout.addLayout(self.view_buttons) layout.addWidget(self.view_status_label) self.parent.setLayout(layout) def load_view_tree_tab(self): """load tree view tab""" layout2 = QtWidgets.QHBoxLayout() layout2.addWidget(self.view_limit_results_by_function) layout2.addWidget(self.view_show_results_by_function) checkboxes = QtWidgets.QWidget() checkboxes.setLayout(layout2) layout = QtWidgets.QVBoxLayout() layout.addWidget(checkboxes) layout.addWidget(self.view_search_bar) layout.addWidget(self.view_tree) tab = QtWidgets.QWidget() tab.setLayout(layout) self.view_tabs.addTab(tab, "Program Analysis") def load_view_rulegen_tab(self): """ """ layout = QtWidgets.QHBoxLayout() layout1 = QtWidgets.QVBoxLayout() layout2 = QtWidgets.QVBoxLayout() layout3 = QtWidgets.QVBoxLayout() right_top = QtWidgets.QWidget() right_top.setLayout(layout1) right_bottom = QtWidgets.QWidget() right_bottom.setLayout(layout3) left = QtWidgets.QWidget() left.setLayout(layout2) font = QtGui.QFont() font.setBold(True) font.setPointSize(11) label1 = QtWidgets.QLabel() label1.setAlignment(QtCore.Qt.AlignLeft) label1.setText("Preview") label1.setFont(font) label2 = QtWidgets.QLabel() label2.setAlignment(QtCore.Qt.AlignLeft) label2.setText("Editor") label2.setFont(font) self.view_rulegen_status_label = QtWidgets.QLabel() self.view_rulegen_status_label.setAlignment(QtCore.Qt.AlignLeft) self.view_rulegen_status_label.setText("") self.view_rulegen_search = QtWidgets.QLineEdit() self.view_rulegen_search.setPlaceholderText("search...") self.view_rulegen_search.setClearButtonEnabled(True) self.view_rulegen_search.textChanged.connect( self.slot_limit_rulegen_features_to_search) self.view_rulegen_header_label = QtWidgets.QLabel() self.view_rulegen_header_label.setAlignment(QtCore.Qt.AlignLeft) self.view_rulegen_header_label.setText("Features") self.view_rulegen_header_label.setFont(font) self.view_rulegen_preview = CapaExplorerRulgenPreview( parent=self.parent) self.view_rulegen_editor = CapaExplorerRulgenEditor( self.view_rulegen_preview, parent=self.parent) self.view_rulegen_features = CapaExplorerRulegenFeatures( self.view_rulegen_editor, parent=self.parent) self.view_rulegen_preview.textChanged.connect( self.slot_rulegen_preview_update) self.view_rulegen_editor.updated.connect( self.slot_rulegen_editor_update) self.set_rulegen_preview_border_neutral() layout1.addWidget(label1) layout1.addWidget(self.view_rulegen_preview, 45) layout1.addWidget(self.view_rulegen_status_label) layout3.addWidget(label2) layout3.addWidget(self.view_rulegen_editor, 65) layout2.addWidget(self.view_rulegen_header_label) layout2.addWidget(self.view_rulegen_search) layout2.addWidget(self.view_rulegen_features) splitter2 = QtWidgets.QSplitter(QtCore.Qt.Vertical) splitter2.addWidget(right_top) splitter2.addWidget(right_bottom) splitter1 = QtWidgets.QSplitter(QtCore.Qt.Horizontal) splitter1.addWidget(left) splitter1.addWidget(splitter2) layout.addWidget(splitter1) tab = QtWidgets.QWidget() tab.setLayout(layout) self.view_tabs.addTab(tab, "Rule Generator") def load_ida_hooks(self): """load IDA UI hooks""" # map named action (defined in idagui.cfg) to Python function action_hooks = { "MakeName": self.ida_hook_rename, "EditFunction": self.ida_hook_rename, "RebaseProgram": self.ida_hook_rebase, } self.ida_hooks = CapaExplorerIdaHooks(self.ida_hook_screen_ea_changed, action_hooks) self.ida_hooks.hook() def unload_ida_hooks(self): """unload IDA Pro UI hooks must be called before plugin is completely destroyed """ if self.ida_hooks: self.ida_hooks.unhook() def ida_hook_rename(self, meta, post=False): """function hook for IDA "MakeName" and "EditFunction" actions called twice, once before action and once after action completes @param meta: dict of key/value pairs set when action first called (may be empty) @param post: False if action first call, True if action second call """ location = idaapi.get_screen_ea() if not location or not capa.ida.helpers.is_func_start(location): return curr_name = idaapi.get_name(location) if post: # post action update data model w/ current name self.model_data.update_function_name(meta.get("prev_name", ""), curr_name) else: # pre action so save current name for replacement later meta["prev_name"] = curr_name def update_view_tree_limit_results_to_function(self, ea): """ """ self.limit_results_to_function(idaapi.get_func(ea)) self.view_tree.reset_ui() def ida_hook_screen_ea_changed(self, widget, new_ea, old_ea): """function hook for IDA "screen ea changed" action called twice, once before action and once after action completes. this hook is currently only relevant for limiting results displayed in the UI @param widget: IDA widget type @param new_ea: destination ea @param old_ea: source ea """ if not self.view_tabs.currentIndex() in (0, 1): return if idaapi.get_widget_type(widget) != idaapi.BWN_DISASM: # ignore views not the assembly view return if not idaapi.get_func(new_ea): return if idaapi.get_func(new_ea) == idaapi.get_func(old_ea): # user navigated same function - ignore return if self.view_tabs.currentIndex( ) == 0 and self.view_limit_results_by_function.isChecked(): return self.update_view_tree_limit_results_to_function(new_ea) def ida_hook_rebase(self, meta, post=False): """function hook for IDA "RebaseProgram" action called twice, once before action and once after action completes @param meta: dict of key/value pairs set when action first called (may be empty) @param post: False if action first call, True if action second call """ if post: if idaapi.get_imagebase() != meta.get("prev_base", -1): capa.ida.helpers.inform_user_ida_ui( "Running capa analysis again after program rebase") self.slot_analyze() else: meta["prev_base"] = idaapi.get_imagebase() self.model_data.reset() def load_capa_rules(self): """ """ self.ruleset_cache = None self.rules_cache = None try: # resolve rules directory - check self and settings first, then ask user if not os.path.exists( settings.user.get(CAPA_SETTINGS_RULE_PATH, "")): idaapi.info( "Please select a file directory containing capa rules.") path = self.ask_user_directory() if not path: logger.warning( "You must select a file directory containing capa rules before analysis can be run. The standard collection of capa rules can be downloaded from https://github.com/fireeye/capa-rules." ) return False settings.user[CAPA_SETTINGS_RULE_PATH] = path except Exception as e: logger.error("Failed to load capa rules (error: %s).", e) return False if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False rule_path = settings.user[CAPA_SETTINGS_RULE_PATH] try: # TODO refactor: this first part is identical to capa.main.get_rules if not os.path.exists(rule_path): raise IOError( "rule path %s does not exist or cannot be accessed" % rule_path) rule_paths = [] if os.path.isfile(rule_path): rule_paths.append(rule_path) elif os.path.isdir(rule_path): for root, dirs, files in os.walk(rule_path): if ".github" in root: # the .github directory contains CI config in capa-rules # this includes some .yml files # these are not rules continue for file in files: if not file.endswith(".yml"): if not (file.startswith(".git") or file.endswith( (".git", ".md", ".txt"))): # expect to see .git* files, readme.md, format.md, and maybe a .git directory # other things maybe are rules, but are mis-named. logger.warning("skipping non-.yml file: %s", file) continue rule_path = os.path.join(root, file) rule_paths.append(rule_path) rules = [] total_paths = len(rule_paths) for (i, rule_path) in enumerate(rule_paths): update_wait_box("loading capa rules from %s (%d of %d)" % (settings.user[CAPA_SETTINGS_RULE_PATH], i + 1, total_paths)) if ida_kernwin.user_cancelled(): raise UserCancelledError("user cancelled") try: rule = capa.rules.Rule.from_yaml_file(rule_path) except capa.rules.InvalidRule: raise else: rule.meta["capa/path"] = rule_path if capa.main.is_nursery_rule_path(rule_path): rule.meta["capa/nursery"] = True rules.append(rule) _rules = copy.copy(rules) ruleset = capa.rules.RuleSet(_rules) except UserCancelledError: logger.info("User cancelled analysis.") return False except Exception as e: capa.ida.helpers.inform_user_ida_ui( "Failed to load capa rules from %s" % settings.user[CAPA_SETTINGS_RULE_PATH]) logger.error("Failed to load rules from %s (error: %s).", settings.user[CAPA_SETTINGS_RULE_PATH], e) logger.error( "Make sure your file directory contains properly formatted capa rules. You can download the standard collection of capa rules from https://github.com/fireeye/capa-rules." ) settings.user[CAPA_SETTINGS_RULE_PATH] = "" return False self.ruleset_cache = ruleset self.rules_cache = rules return True def load_capa_results(self, use_cache=False): """run capa analysis and render results in UI note: this function must always return, exception or not, in order for plugin to safely close the IDA wait box """ if not use_cache: # new analysis, new doc self.doc = None self.process_total = 0 self.process_count = 1 def slot_progress_feature_extraction(text): """slot function to handle feature extraction progress updates""" update_wait_box("%s (%d of %d)" % (text, self.process_count, self.process_total)) self.process_count += 1 extractor = CapaExplorerFeatureExtractor() extractor.indicator.progress.connect( slot_progress_feature_extraction) update_wait_box("calculating analysis") try: self.process_total += len(tuple(extractor.get_functions())) except Exception as e: logger.error("Failed to calculate analysis (error: %s).", e) return False if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("loading rules") if not self.load_capa_rules(): return False if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("extracting features") try: meta = capa.ida.helpers.collect_metadata() capabilities, counts = capa.main.find_capabilities( self.ruleset_cache, extractor, disable_progress=True) meta["analysis"].update(counts) except UserCancelledError: logger.info("User cancelled analysis.") return False except Exception as e: logger.error( "Failed to extract capabilities from database (error: %s)", e) return False update_wait_box("checking for file limitations") try: # support binary files specifically for x86/AMD64 shellcode # warn user binary file is loaded but still allow capa to process it # TODO: check specific architecture of binary files based on how user configured IDA processors if idaapi.get_file_type_name() == "Binary file": logger.warning("-" * 80) logger.warning(" Input file appears to be a binary file.") logger.warning(" ") logger.warning( " capa currently only supports analyzing binary files containing x86/AMD64 shellcode with IDA." ) logger.warning( " This means the results may be misleading or incomplete if the binary file loaded in IDA is not x86/AMD64." ) logger.warning( " If you don't know the input file type, you can try using the `file` utility to guess it." ) logger.warning("-" * 80) capa.ida.helpers.inform_user_ida_ui( "capa encountered file type warnings during analysis") if capa.main.has_file_limitation(self.ruleset_cache, capabilities, is_standalone=False): capa.ida.helpers.inform_user_ida_ui( "capa encountered file limitation warnings during analysis" ) except Exception as e: logger.error( "Failed to check for file limitations (error: %s)", e) return False if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("rendering results") try: self.doc = capa.render.result_document.convert_capabilities_to_result_document( meta, self.ruleset_cache, capabilities) except Exception as e: logger.error("Failed to render results (error: %s)", e) return False try: self.model_data.render_capa_doc( self.doc, self.view_show_results_by_function.isChecked()) self.set_view_status_label("capa rules directory: %s (%d rules)" % (settings.user[CAPA_SETTINGS_RULE_PATH], len(self.rules_cache))) except Exception as e: logger.error("Failed to render results (error: %s)", e) return False return True def reset_view_tree(self): """reset tree view UI controls called when user selects plugin reset from menu """ self.view_limit_results_by_function.setChecked(False) # self.view_show_results_by_function.setChecked(False) self.view_search_bar.setText("") self.view_tree.reset_ui() def analyze_program(self, use_cache=False): """ """ self.range_model_proxy.invalidate() self.search_model_proxy.invalidate() self.model_data.reset() self.model_data.clear() self.set_view_status_label("Loading...") ida_kernwin.show_wait_box("capa explorer") success = self.load_capa_results(use_cache) ida_kernwin.hide_wait_box() self.reset_view_tree() if not success: self.set_view_status_label("Click Analyze to get started...") logger.info("Analysis failed.") else: logger.info("Analysis completed.") def load_capa_function_results(self): """ """ if not self.rules_cache or not self.ruleset_cache: # only reload rules if caches are empty if not self.load_capa_rules(): return False else: logger.info( 'Using cached ruleset, click "Reset" to reload rules from disk.' ) if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("loading IDA extractor") try: # must use extractor to get function, as capa analysis requires casted object extractor = CapaExplorerFeatureExtractor() except Exception as e: logger.error("Failed to load IDA feature extractor (error: %s)" % e) return False if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("extracting function features") try: f = idaapi.get_func(idaapi.get_screen_ea()) if f: f = extractor.get_function(f.start_ea) self.rulegen_current_function = f func_features, bb_features = find_func_features(f, extractor) self.rulegen_func_features_cache = collections.defaultdict( set, copy.copy(func_features)) self.rulegen_bb_features_cache = collections.defaultdict( dict, copy.copy(bb_features)) if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("matching function/basic block rule scope") try: # add function and bb rule matches to function features, for display purposes func_matches, bb_matches = find_func_matches( f, self.ruleset_cache, func_features, bb_features) for (name, res) in itertools.chain(func_matches.items(), bb_matches.items()): rule = self.ruleset_cache[name] if rule.meta.get("capa/subscope-rule"): continue for (ea, _) in res: func_features[capa.features.common.MatchedRule( name)].add(ea) except Exception as e: logger.error( "Failed to match function/basic block rule scope (error: %s)" % e) return False else: func_features = {} except UserCancelledError: logger.info("User cancelled analysis.") return False except Exception as e: logger.error("Failed to extract function features (error: %s)" % e) return False if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("extracting file features") try: file_features = find_file_features(extractor) self.rulegen_file_features_cache = collections.defaultdict( dict, copy.copy(file_features)) if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("matching file rule scope") try: # add file matches to file features, for display purposes for (name, res) in find_file_matches(self.ruleset_cache, file_features).items(): rule = self.ruleset_cache[name] if rule.meta.get("capa/subscope-rule"): continue for (ea, _) in res: file_features[capa.features.common.MatchedRule( name)].add(ea) except Exception as e: logger.error("Failed to match file scope rules (error: %s)" % e) return False except Exception as e: logger.error("Failed to extract file features (error: %s)" % e) return False if ida_kernwin.user_cancelled(): logger.info("User cancelled analysis.") return False update_wait_box("rendering views") try: # load preview and feature tree self.view_rulegen_preview.load_preview_meta( f.start_ea if f else None, settings.user.get(CAPA_SETTINGS_RULEGEN_AUTHOR, "<insert_author>"), settings.user.get(CAPA_SETTINGS_RULEGEN_SCOPE, "function"), ) self.view_rulegen_features.load_features(file_features, func_features) # self.view_rulegen_header_label.setText("Function Features (%s)" % trim_function_name(f)) self.set_view_status_label("capa rules directory: %s (%d rules)" % (settings.user[CAPA_SETTINGS_RULE_PATH], len(self.rules_cache))) except Exception as e: logger.error("Failed to render views (error: %s)" % e) return False return True def analyze_function(self): """ """ self.reset_function_analysis_views(is_analyze=True) self.set_view_status_label("Loading...") ida_kernwin.show_wait_box("capa explorer") success = self.load_capa_function_results() ida_kernwin.hide_wait_box() if not success: self.set_view_status_label("Click Analyze to get started...") logger.info("Analysis failed.") else: logger.info("Analysis completed.") def reset_program_analysis_views(self): """ """ logger.info("Resetting program analysis views.") self.model_data.reset() self.reset_view_tree() self.rules_cache = None self.ruleset_cache = None logger.info("Reset completed.") def reset_function_analysis_views(self, is_analyze=False): """ """ logger.info("Resetting rule generator views.") # self.view_rulegen_header_label.setText("Features") self.view_rulegen_features.reset_view() self.view_rulegen_editor.reset_view() self.view_rulegen_preview.reset_view() self.view_rulegen_search.clear() self.set_rulegen_preview_border_neutral() self.rulegen_current_function = None self.rulegen_func_features_cache = {} self.rulegen_bb_features_cache = {} self.rulegen_file_features_cache = {} self.view_rulegen_status_label.clear() if not is_analyze: # clear rules and ruleset cache only if user clicked "Reset" self.rules_cache = None self.ruleset_cache = None self.set_view_status_label("Click Analyze to get started...") logger.info("Reset completed.") def set_rulegen_status(self, e): """ """ self.view_rulegen_status_label.setText(e) def set_rulegen_preview_border_error(self): """ """ self.view_rulegen_preview.setStyleSheet("border: 3px solid red") def set_rulegen_preview_border_neutral(self): """ """ self.view_rulegen_preview.setStyleSheet("border: 3px solid grey") def set_rulegen_preview_border_warn(self): """ """ self.view_rulegen_preview.setStyleSheet("border: 3px solid yellow") def set_rulegen_preview_border_success(self): """ """ self.view_rulegen_preview.setStyleSheet("border: 3px solid green") def update_rule_status(self, rule_text): """ """ if self.view_rulegen_editor.root is None: self.set_rulegen_preview_border_neutral() self.view_rulegen_status_label.clear() return self.set_rulegen_preview_border_error() try: rule = capa.rules.Rule.from_yaml(rule_text) except Exception as e: self.set_rulegen_status("Failed to compile rule (%s)" % e) return # create deep copy of current rules, add our new rule rules = copy.copy(self.rules_cache) # ensure subscope rules are included for sub in rule.extract_subscope_rules(): rules.append(sub) # include our new rule in the list rules.append(rule) try: file_features = copy.copy(self.rulegen_file_features_cache) if self.rulegen_current_function: func_matches, bb_matches = find_func_matches( self.rulegen_current_function, capa.rules.RuleSet( list( capa.rules.get_rules_and_dependencies( rules, rule.name))), self.rulegen_func_features_cache, self.rulegen_bb_features_cache, ) file_features.update( copy.copy(self.rulegen_func_features_cache)) else: func_matches = {} bb_matches = {} _, file_matches = capa.engine.match( capa.rules.RuleSet( list( capa.rules.get_rules_and_dependencies( rules, rule.name))).file_rules, file_features, 0x0, ) except Exception as e: self.set_rulegen_status("Failed to match rule (%s)" % e) return if tuple( filter( lambda m: m[0] == rule.name, itertools.chain(file_matches.items(), func_matches.items(), bb_matches.items()), )): # made it here, rule compiled and match was found self.set_rulegen_preview_border_success() self.set_rulegen_status("Rule compiled and matched") else: # made it here, rule compiled but no match found, may be intended so we warn user self.set_rulegen_preview_border_warn() self.set_rulegen_status("Rule compiled, but not matched") def slot_rulegen_editor_update(self): """ """ rule_text = self.view_rulegen_preview.toPlainText() self.update_rule_status(rule_text) def slot_rulegen_preview_update(self): """ """ rule_text = self.view_rulegen_preview.toPlainText() self.view_rulegen_editor.load_features_from_yaml(rule_text, False) self.update_rule_status(rule_text) def slot_limit_rulegen_features_to_search(self, text): """ """ self.view_rulegen_features.filter_items_by_text(text) def slot_analyze(self): """run capa analysis and reload UI controls called when user selects plugin reload from menu """ if self.view_tabs.currentIndex() == 0: self.analyze_program() elif self.view_tabs.currentIndex() == 1: self.analyze_function() def slot_reset(self): """reset UI elements e.g. checkboxes and IDA highlighting """ if self.view_tabs.currentIndex() == 0: self.reset_program_analysis_views() elif self.view_tabs.currentIndex() == 1: self.reset_function_analysis_views() def slot_save(self): """ """ if self.view_tabs.currentIndex() == 0: self.save_program_analysis() elif self.view_tabs.currentIndex() == 1: self.save_function_analysis() def slot_settings(self): """ """ dialog = CapaSettingsInputDialog("capa explorer settings", parent=self.parent) if dialog.exec_(): ( settings.user[CAPA_SETTINGS_RULE_PATH], settings.user[CAPA_SETTINGS_RULEGEN_AUTHOR], settings.user[CAPA_SETTINGS_RULEGEN_SCOPE], ) = dialog.get_values() def save_program_analysis(self): """ """ if not self.doc: idaapi.info("No program analysis to save.") return s = json.dumps( self.doc, sort_keys=True, cls=capa.render.json.CapaJsonObjectEncoder).encode("utf-8") path = idaapi.ask_file( True, "*.json", "Choose file to save capa program analysis JSON") if not path: return write_file(path, s) def save_function_analysis(self): """ """ s = self.view_rulegen_preview.toPlainText().encode("utf-8") if not s: idaapi.info("No rule to save.") return path = self.ask_user_capa_rule_file() if not path: return write_file(path, s) def slot_checkbox_limit_by_changed(self, state): """slot activated if checkbox clicked if checked, configure function filter if screen location is located in function, otherwise clear filter @param state: checked state """ if state == QtCore.Qt.Checked: self.limit_results_to_function( idaapi.get_func(idaapi.get_screen_ea())) else: self.range_model_proxy.reset_address_range_filter() self.view_tree.reset_ui() def slot_checkbox_show_results_by_function_changed(self, state): """slot activated if checkbox clicked if checked, configure function filter if screen location is located in function, otherwise clear filter @param state: checked state """ if self.doc: self.analyze_program(use_cache=True) def limit_results_to_function(self, f): """add filter to limit results to current function adds new address range filter to include function bounds, allowing basic blocks matched within a function to be included in the results @param f: (IDA func_t) """ if f: self.range_model_proxy.add_address_range_filter( f.start_ea, f.end_ea) else: # if function not exists don't display any results (assume address never -1) self.range_model_proxy.add_address_range_filter(-1, -1) def slot_limit_results_to_search(self, text): """limit tree view results to search matches reset view after filter to maintain level 1 expansion """ self.search_model_proxy.set_query(text) self.view_tree.reset_ui(should_sort=False) def ask_user_directory(self): """create Qt dialog to ask user for a directory""" return str( QtWidgets.QFileDialog.getExistingDirectory( self.parent, "Please select a capa rules directory", settings.user.get(CAPA_SETTINGS_RULE_PATH, ""))) def ask_user_capa_rule_file(self): """ """ return QtWidgets.QFileDialog.getSaveFileName( None, "Please select a capa rule to edit", settings.user.get(CAPA_SETTINGS_RULE_PATH, ""), "*.yml")[0] def set_view_status_label(self, text): """update status label control @param text: updated text """ self.view_status_label.setText(text)