From 4e896384c8942d3c531b205e6fc1b2d2637c617d Mon Sep 17 00:00:00 2001 From: sagarishere <5121817+sagarishere@users.noreply.github.com> Date: Thu, 29 Feb 2024 17:12:34 +0200 Subject: [PATCH] add strings to forbidden every exercise can currently be solved by using strings for example ` strings bin | grep "modified"` to give the message required to complete the exercise. However, that technique will teach us nothing about binary inspection, reverse engineering or binary manipulation. --- subjects/cybersecurity/hole-in-bin/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/subjects/cybersecurity/hole-in-bin/README.md b/subjects/cybersecurity/hole-in-bin/README.md index 99cc8aa5c..4802ed647 100644 --- a/subjects/cybersecurity/hole-in-bin/README.md +++ b/subjects/cybersecurity/hole-in-bin/README.md @@ -42,3 +42,4 @@ Files that must be inside your repository: - All tools you use, and any scripts you write. > It's forbidden to use external scripts, in the audit you will be asked different questions about the concepts and the practices of this project, prepare yourself! +> It's is forbidden to use `strings` command.