Skip to content

Commit 8a3b5c4

Browse files
authored
Merge branch 'master' into update_HTB__TheFrizz_20250827_141120
2 parents a971509 + 4966f6d commit 8a3b5c4

49 files changed

Lines changed: 1975 additions & 1745 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

searchindex.js

Lines changed: 1 addition & 0 deletions
Large diffs are not rendered by default.

src/SUMMARY.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,8 @@
8080
- [Bruteforce hash (few chars)](generic-methodologies-and-resources/python/bruteforce-hash-few-chars.md)
8181
- [Basic Python](generic-methodologies-and-resources/python/basic-python.md)
8282
- [Threat Modeling](generic-methodologies-and-resources/threat-modeling.md)
83+
- [Blockchain & Crypto](blockchain/blockchain-and-crypto-currencies/README.md)
84+
- [Lua Sandbox Escape](generic-methodologies-and-resources/lua/bypass-lua-sandboxes/README.md)
8385

8486
# 🧙‍♂️ Generic Hacking
8587

@@ -234,6 +236,7 @@
234236
- [Authentication Credentials Uac And Efs](windows-hardening/authentication-credentials-uac-and-efs.md)
235237
- [Checklist - Local Windows Privilege Escalation](windows-hardening/checklist-windows-privilege-escalation.md)
236238
- [Windows Local Privilege Escalation](windows-hardening/windows-local-privilege-escalation/README.md)
239+
- [Abusing Auto Updaters And Ipc](windows-hardening/windows-local-privilege-escalation/abusing-auto-updaters-and-ipc.md)
237240
- [Arbitrary Kernel Rw Token Theft](windows-hardening/windows-local-privilege-escalation/arbitrary-kernel-rw-token-theft.md)
238241
- [Dll Hijacking](windows-hardening/windows-local-privilege-escalation/dll-hijacking.md)
239242
- [Abusing Tokens](windows-hardening/windows-local-privilege-escalation/privilege-escalation-abusing-tokens.md)
@@ -782,7 +785,7 @@
782785
- [Windows Seh Overflow](binary-exploitation/stack-overflow/windows-seh-overflow.md)
783786
- [Array Indexing](binary-exploitation/array-indexing.md)
784787
- [Chrome Exploiting](binary-exploitation/chrome-exploiting.md)
785-
- [Integer Overflow](binary-exploitation/integer-overflow.md)
788+
- [Integer Overflow](binary-exploitation/integer-overflow-and-underflow.md)
786789
- [Format Strings](binary-exploitation/format-strings/README.md)
787790
- [Format Strings - Arbitrary Read Example](binary-exploitation/format-strings/format-strings-arbitrary-read-example.md)
788791
- [Format Strings Template](binary-exploitation/format-strings/format-strings-template.md)
@@ -926,13 +929,4 @@
926929
- [Post Exploitation](todo/post-exploitation.md)
927930
- [Investment Terms](todo/investment-terms.md)
928931
- [Cookies Policy](todo/cookies-policy.md)
929-
930-
931-
932-
- [Readme](blockchain/blockchain-and-crypto-currencies/README.md)
933-
- [Readme](macos-hardening/macos-security-and-privilege-escalation/mac-os-architecture/macos-ipc-inter-process-communication/README.md)
934-
- [Readme](network-services-pentesting/1521-1522-1529-pentesting-oracle-listener/README.md)
935-
- [Readme](pentesting-web/web-vulnerabilities-methodology/README.md)
936-
- [Readme](reversing/cryptographic-algorithms/README.md)
937-
- [Readme](reversing/reversing-tools/README.md)
938-
- [Readme](windows-hardening/windows-local-privilege-escalation/privilege-escalation-abusing-tokens/README.md)
932+

src/binary-exploitation/basic-stack-binary-exploitation-methodology/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@ With so many techniques it's good to have a scheme when each technique will be u
2727
There are different was you could end controlling the flow of a program:
2828

2929
- [**Stack Overflows**](../stack-overflow/index.html) overwriting the return pointer from the stack or the EBP -> ESP -> EIP.
30-
- Might need to abuse an [**Integer Overflows**](../integer-overflow.md) to cause the overflow
30+
- Might need to abuse an [**Integer Overflows**](../integer-overflow-and-underflow.md) to cause the overflow
3131
- Or via **Arbitrary Writes + Write What Where to Execution**
3232
- [**Format strings**](../format-strings/index.html)**:** Abuse `printf` to write arbitrary content in arbitrary addresses.
3333
- [**Array Indexing**](../array-indexing.md): Abuse a poorly designed indexing to be able to control some arrays and get an arbitrary write.
34-
- Might need to abuse an [**Integer Overflows**](../integer-overflow.md) to cause the overflow
34+
- Might need to abuse an [**Integer Overflows**](../integer-overflow-and-underflow.md) to cause the overflow
3535
- **bof to WWW via ROP**: Abuse a buffer overflow to construct a ROP and be able to get a WWW.
3636

3737
You can find the **Write What Where to Execution** techniques in:

0 commit comments

Comments
 (0)