1
0
mirror of synced 2024-11-17 12:27:13 +01:00
ImHex/plugins/builtin/include/content/views/view_yara.hpp
2022-02-02 21:08:46 +01:00

37 lines
768 B
C++

#pragma once
#include <hex.hpp>
#include <imgui.h>
#include <hex/ui/view.hpp>
namespace hex::plugin::builtin {
class ViewYara : public View {
public:
ViewYara();
~ViewYara() override;
void drawContent() override;
private:
struct YaraMatch {
std::string identifier;
std::string variable;
u64 address;
size_t size;
bool wholeDataMatch;
u32 highlightId;
};
std::vector<std::pair<std::string, std::string>> m_rules;
std::vector<YaraMatch> m_matches;
u32 m_selectedRule = 0;
bool m_matching = false;
std::vector<char> m_errorMessage;
void reloadRules();
void applyRules();
};
}