From 143898d62369919d377235e56c2aec29f67dac7c Mon Sep 17 00:00:00 2001 From: qmadev <190383216+qmadev@users.noreply.github.com> Date: Wed, 25 Feb 2026 18:36:29 +0100 Subject: [PATCH 1/2] First release --- BOF-Collection/.clang-format | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BOF-Collection/.clang-format b/BOF-Collection/.clang-format index be48c94..0cf11b8 100644 --- a/BOF-Collection/.clang-format +++ b/BOF-Collection/.clang-format @@ -1,8 +1,8 @@ --- Language: Cpp BasedOnStyle: LLVM -ColumnLimit: 120 +ColumnLimit: 120 IndentWidth: 4 UseTab: Never IndentExternBlock: false diff --git a/README.md b/README.md index e1be869..85de3d9 100644 --- a/README.md +++ b/README.md @@ -7,4 +7,4 @@ My own (growing) BOF collection. Built using the [bof-vs](https://github.com/Cob |Name|Description| |----|----------| |**[execute-shellcode](BOF-Collection/shellcode.cpp)**|Run shellcode inside the beacon process using QueueUserAPC. Make sure your shellcode returns!| -|**[ticket-extractor](BOF-Collection/ticket_extractor.cpp)**|Extract Kerberos tickets from the system. The same way that `Rubeus.exe dump` does it.| +|**[extract-ticket](BOF-Collection/ticket_extractor.cpp)**|Extract Kerberos tickets from the system. The same way that `Rubeus.exe dump` does it.| From 29bb45d49966caf26bbaa727d1238aba576b4f95 Mon Sep 17 00:00:00 2001 From: qmadev <190383216+qmadev@users.noreply.github.com> Date: Wed, 25 Feb 2026 18:37:02 +0100 Subject: [PATCH 2/2] Fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 85de3d9..428961e 100644 --- a/README.md +++ b/README.md @@ -7,4 +7,4 @@ My own (growing) BOF collection. Built using the [bof-vs](https://github.com/Cob |Name|Description| |----|----------| |**[execute-shellcode](BOF-Collection/shellcode.cpp)**|Run shellcode inside the beacon process using QueueUserAPC. Make sure your shellcode returns!| -|**[extract-ticket](BOF-Collection/ticket_extractor.cpp)**|Extract Kerberos tickets from the system. The same way that `Rubeus.exe dump` does it.| +|**[extract-tickets](BOF-Collection/ticket_extractor.cpp)**|Extract Kerberos tickets from the system. The same way that `Rubeus.exe dump` does it.|