From bff81182290eefd590d52588ac38cbaa80ed1359 Mon Sep 17 00:00:00 2001 From: Akira Moroo Date: Fri, 17 Oct 2025 13:28:24 +0900 Subject: [PATCH 1/2] docs: Add Zenodo DOI badge Signed-off-by: Akira Moroo --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 9da9e01..dc412b1 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # svc-hook: System Call Hook for ARM64 +[![DOI](https://zenodo.org/badge/831623337.svg)](https://zenodo.org/badge/latestdoi/831623337) + svc-hook is a system call hook mechanism for ARM64. It is designed to be low performance overhead, independent of the target source code, without relying on kernel features. It utilizes binary rewriting, replacing every `svc` instruction with a `b` instruction in the loaded target binary code before the main function starts. ## Key Features From 1ff0f1359842b9d5abf89275162186ee92851ea5 Mon Sep 17 00:00:00 2001 From: Akira Moroo Date: Fri, 17 Oct 2025 13:29:11 +0900 Subject: [PATCH 2/2] misc: Add CITATION.cff Signed-off-by: Akira Moroo --- CITATION.cff | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CITATION.cff diff --git a/CITATION.cff b/CITATION.cff new file mode 100644 index 0000000..80107fe --- /dev/null +++ b/CITATION.cff @@ -0,0 +1,10 @@ +cff-version: 1.2.0 +message: "If you use this software, please cite it as below." +authors: + - family-names: "Moroo" + given-names: "Akira" + orcid: "https://orcid.org/0009-0007-9762-3210" +title: "svc-hook" +version: 0.1.0 +date-released: 2025-10-17 +url: "https://github.com/retrage/svc-hook"