Skip to content

Commit be775b0

Browse files
committed
f
1 parent b010b39 commit be775b0

6 files changed

Lines changed: 396 additions & 133 deletions

File tree

src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@
785785
- [Windows Seh Overflow](binary-exploitation/stack-overflow/windows-seh-overflow.md)
786786
- [Array Indexing](binary-exploitation/array-indexing.md)
787787
- [Chrome Exploiting](binary-exploitation/chrome-exploiting.md)
788-
- [Integer Overflow](binary-exploitation/integer-overflow.md)
788+
- [Integer Overflow](binary-exploitation/integer-overflow-and-underflow.md)
789789
- [Format Strings](binary-exploitation/format-strings/README.md)
790790
- [Format Strings - Arbitrary Read Example](binary-exploitation/format-strings/format-strings-arbitrary-read-example.md)
791791
- [Format Strings Template](binary-exploitation/format-strings/format-strings-template.md)

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)