summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2025-04-16 15:04:24 -0400
committerGlenn Smith <glenn@vector35.com>2025-04-16 16:20:46 -0400
commit1762153827196541115133495073244354362653 (patch)
tree131e56d976a58618cc47fd17b0049590185555c2
parent4952747066642661517277537060579581155148 (diff)
Fix various views not being marked executable
-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; }
};