summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--view/kernelcache/core/KCView.h2
-rw-r--r--view/sharedcache/core/SharedCacheView.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/view/kernelcache/core/KCView.h b/view/kernelcache/core/KCView.h
index c78833c0..530e10de 100644
--- a/view/kernelcache/core/KCView.h
+++ b/view/kernelcache/core/KCView.h
@@ -16,6 +16,8 @@ public:
~KCView() override;
bool Init() override;
+
+ virtual bool PerformIsExecutable() const override { return true; }
};
diff --git a/view/sharedcache/core/SharedCacheView.h b/view/sharedcache/core/SharedCacheView.h
index 8d4332cb..9318c66c 100644
--- a/view/sharedcache/core/SharedCacheView.h
+++ b/view/sharedcache/core/SharedCacheView.h
@@ -43,6 +43,8 @@ public:
BinaryNinja::Ref<BinaryNinja::Metadata> GetMetadata() const;
void LoadMetadata(const BinaryNinja::Metadata& metadata);
+
+ virtual bool PerformIsExecutable() const override { return true; }
};