- Disclamair
- House Of Roman
------> 2.1 Assumptions
------> 2.2 Protections
------> 2.3 Quick Walkthrough
------> 2.4 Setting the FD to malloc_hook
------> 2.5 Fixing the 0x71 freelist
------> 2.6 Unsorted Bin attack on malloc_hook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
To use the extension, place the file somewhere and add | |
`source /path/to/extension` | |
in your ~/.gdbinit file | |
Use just as you would with `dereference` (https://gef.readthedocs.io/en/master/commands/dereference/) | |
but s/deref/veref/g | |
Many missing features because I quickly whipped this up to solve a challenge. | |
1) Doesn't check for v8 version (Older versions don't use compressed pointers) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/Cloud/Docker/Dockerfile b/Cloud/Docker/Dockerfile | |
index 093e342..c2005ef 100644 | |
--- a/Cloud/Docker/Dockerfile | |
+++ b/Cloud/Docker/Dockerfile | |
@@ -16,10 +16,12 @@ WORKDIR /home/fuzzer | |
ADD FuzzilliBuilder/out/Fuzzilli Fuzzilli | |
# Add JavaScriptCore binary | |
-ADD JSCBuilder/out jsc | |
+#ADD JSCBuilder/out jsc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python2 | |
# Challenge: https://gctf-2019.appspot.com/#challenges/sandbox-sandbox-ridl | |
from pwn import * | |
import os | |
def split_by(data, cnt): | |
return [data[i : i+cnt] for i in xrange(0, len(data), cnt)] |