#include "content/views/view_yara.hpp" #include #include #include #include #include #include #include #include namespace hex::plugin::yara { using namespace wolv::literals; ViewYara::ViewYara() : View::Window("hex.yara_rules.view.yara.name", ICON_VS_BUG) { YaraRule::init(); ContentRegistry::FileHandler::add({ ".yar", ".yara" }, [](const auto &path) { for (const auto &destPath : fs::getDefaultPaths(fs::ImHexPath::Yara)) { if (wolv::io::fs::copyFile(path, destPath / path.filename(), std::fs::copy_options::overwrite_existing)) { ui::ToastInfo::open("hex.yara_rules.view.yara.rule_added"_lang); return true; } } return false; }); ProjectFile::registerPerProviderHandler({ .basePath = "yara.json", .required = false, .load = [this](prv::Provider *provider, const std::fs::path &basePath, const Tar &tar) -> bool { auto fileContent = tar.readString(basePath); if (fileContent.empty()) return true; auto data = nlohmann::json::parse(fileContent.begin(), fileContent.end()); if (!data.contains("rules")) return false; auto &rules = data["rules"]; if (!rules.is_array()) return false; m_matchedRules.get(provider).clear(); for (auto &rule : rules) { if (!rule.contains("name") || !rule.contains("path")) return false; auto &name = rule["name"]; auto &path = rule["path"]; if (!name.is_string() || !path.is_string()) return false; m_rulePaths.get(provider).emplace_back(std::fs::path(name.get()), std::fs::path(path.get())); } return true; }, .store = [this](prv::Provider *provider, const std::fs::path &basePath, const Tar &tar) -> bool { nlohmann::json data; data["rules"] = nlohmann::json::array(); for (auto &[name, path] : m_rulePaths.get(provider)) { data["rules"].push_back({ { "name", wolv::util::toUTF8String(name) }, { "path", wolv::util::toUTF8String(path) } }); } tar.writeString(basePath, data.dump(4)); return true; } }); ImHexApi::HexEditor::addBackgroundHighlightingProvider([this](u64 address, const u8 *, size_t size, bool) -> std::optional { auto &highlights = m_highlights.get(); const auto regions = highlights.overlapping({ address, address + (size - 1) }); constexpr static color_t YaraColor = 0x70B4771F; if (regions.empty()) return std::nullopt; else return YaraColor; }); ImHexApi::HexEditor::addTooltipProvider([this](u64 address, const u8 *, size_t size) { if (m_matcherTask.isRunning()) return; auto occurrences = m_highlights->overlapping({ address, (address + size - 1) }); if (occurrences.empty()) return; ImGui::BeginTooltip(); for (const auto &occurrence : occurrences) { ImGui::PushID(&occurrence); if (ImGui::BeginTable("##tooltips", 1, ImGuiTableFlags_RowBg | ImGuiTableFlags_NoClip)) { ImGui::TableNextRow(); ImGui::TableNextColumn(); { const auto &tooltipValue = *occurrence.value; ImGuiExt::TextFormatted("{}", tooltipValue); } ImGui::EndTable(); } ImGui::PopID(); } ImGui::EndTooltip(); }); } ViewYara::~ViewYara() { YaraRule::cleanup(); } void ViewYara::drawContent() { ImGuiExt::Header("hex.yara_rules.view.yara.header.rules"_lang, true); if (ImGui::BeginListBox("##rules", ImVec2(-FLT_MIN, ImGui::GetTextLineHeightWithSpacing() * 5))) { for (u32 i = 0; i < m_rulePaths->size(); i++) { const bool selected = (*m_selectedRule == i); if (ImGui::Selectable(wolv::util::toUTF8String((*m_rulePaths)[i].first).c_str(), selected)) { *m_selectedRule = i; } } ImGui::EndListBox(); } if (ImGuiExt::IconButton(ICON_VS_ADD, ImGui::GetStyleColorVec4(ImGuiCol_Text))) { const auto basePaths = fs::getDefaultPaths(fs::ImHexPath::Yara); std::vector paths; for (const auto &path : basePaths) { std::error_code error; for (const auto &entry : std::fs::recursive_directory_iterator(path, error)) { if (!entry.is_regular_file()) continue; if (entry.path().extension() != ".yara" && entry.path().extension() != ".yar") continue; paths.push_back(entry); } } ui::PopupFileChooser::open(basePaths, paths, std::vector{ { "Yara File", "yara" }, { "Yara File", "yar" } }, true, [&](const auto &path) { m_rulePaths->push_back({ path.filename(), path }); }); } ImGui::SameLine(); if (ImGuiExt::IconButton(ICON_VS_REMOVE, ImGui::GetStyleColorVec4(ImGuiCol_Text))) { if (*m_selectedRule < m_rulePaths->size()) { m_rulePaths->erase(m_rulePaths->begin() + *m_selectedRule); m_selectedRule = std::min(*m_selectedRule, u32(m_rulePaths->size() - 1)); } } ImGui::NewLine(); if (ImGui::Button("hex.yara_rules.view.yara.match"_lang)) this->applyRules(); if (m_matcherTask.isRunning()) { ImGui::SameLine(); ImGuiExt::TextSpinner("hex.yara_rules.view.yara.matching"_lang); } ImGuiExt::Header("hex.yara_rules.view.yara.header.matches"_lang); auto matchesTableSize = ImGui::GetContentRegionAvail(); matchesTableSize.y *= 3.75 / 5.0; matchesTableSize.y -= ImGui::GetTextLineHeightWithSpacing(); if (ImGui::BeginTable("matches", 3, ImGuiTableFlags_Borders | ImGuiTableFlags_Resizable | ImGuiTableFlags_Sortable | ImGuiTableFlags_Reorderable | ImGuiTableFlags_RowBg | ImGuiTableFlags_ScrollY, matchesTableSize)) { ImGui::TableSetupScrollFreeze(0, 1); ImGui::TableSetupColumn("hex.yara_rules.view.yara.matches.variable"_lang, ImGuiTableColumnFlags_PreferSortAscending, 0, ImGui::GetID("variable")); ImGui::TableSetupColumn("hex.ui.common.address"_lang, ImGuiTableColumnFlags_PreferSortAscending, 0, ImGui::GetID("address")); ImGui::TableSetupColumn("hex.ui.common.size"_lang, ImGuiTableColumnFlags_PreferSortAscending, 0, ImGui::GetID("size")); ImGui::TableHeadersRow(); if (!m_matcherTask.isRunning()) { for (const auto &rule : *m_matchedRules) { if (rule.matches.empty()) continue; ImGui::TableNextRow(); ImGui::TableNextColumn(); if (ImGui::TreeNode(rule.identifier.c_str())) { for (const auto &match : rule.matches) { ImGui::TableNextRow(); ImGui::TableNextColumn(); ImGui::TextUnformatted(match.variable.c_str()); ImGui::TableNextColumn(); ImGui::TextUnformatted(hex::format("0x{0:08X}", match.region.getStartAddress()).c_str()); ImGui::TableNextColumn(); ImGui::TextUnformatted(hex::format("0x{0:08X}", match.region.getSize()).c_str()); } ImGui::TreePop(); } } } ImGui::EndTable(); } auto consoleSize = ImGui::GetContentRegionAvail(); if (ImGui::BeginChild("##console", consoleSize, true, ImGuiWindowFlags_AlwaysVerticalScrollbar | ImGuiWindowFlags_HorizontalScrollbar)) { ImGuiListClipper clipper; clipper.Begin(m_consoleMessages->size()); while (clipper.Step()) { for (int i = clipper.DisplayStart; i < clipper.DisplayEnd; i++) { const auto &message = m_consoleMessages->at(i); if (ImGui::Selectable(message.c_str())) ImGui::SetClipboardText(message.c_str()); } } } ImGui::EndChild(); } void ViewYara::clearResult() { m_matchedRules->clear(); m_consoleMessages->clear(); } void ViewYara::applyRules() { this->clearResult(); auto provider = ImHexApi::Provider::get(); if (provider == nullptr) return; m_matcherTask = TaskManager::createTask("hex.yara_rules.view.yara.matching", 0, [this, provider](auto &task) { u32 progress = 0; std::vector results; for (const auto &[fileName, filePath] : *m_rulePaths) { YaraRule rule(filePath); task.setInterruptCallback([&rule] { rule.interrupt(); }); auto result = rule.match(provider, { provider->getBaseAddress(), provider->getSize() }); if (!result.has_value()) { TaskManager::doLater([this, error = result.error()] { m_consoleMessages->emplace_back(error.message); }); return; } results.emplace_back(result.value()); task.update(progress); progress += 1; } TaskManager::doLater([this, results = std::move(results)] { this->clearResult(); for (auto &result : results) { m_matchedRules->insert(m_matchedRules->end(), result.matchedRules.begin(), result.matchedRules.end()); m_consoleMessages->insert(m_consoleMessages->end(), result.consoleMessages.begin(), result.consoleMessages.end()); } for (YaraRule::Rule &rule : *m_matchedRules) { for (auto &match : rule.matches) { auto tags = hex::format("{}", fmt::join(rule.tags, ", ")); m_highlights->insert( { match.region.getStartAddress(), match.region.getEndAddress() }, hex::format("rule {0}{1} {{ {2} }}", rule.identifier, tags.empty() ? "" : hex::format(" : {}", tags), match.variable ) ); } } }); }); } }