This file contains 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
/* | |
first malloc(16) : 0x1a61450 | |
eh.. and malloc(-1) : (nil) | |
second malloc(16) : 0x7fe57c0008c0 | |
FYI, libc.so address is : 0x7fe5837dc000 | |
let's calculate! : 0x7fe580000000 | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> |
This file contains 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
--[[ | |
Wireshark Dissector for Qualcomm MSM Interface (QMI) Protocol v0.1 | |
Copyright (c) 2012 Ilya Voronin <[email protected]> | |
Based on Code Aurora Forum's BSD/GPL licensed code: | |
http://www.codeaurora.org/contribute/projects/gobi/ | |
Short howto for using this script: |
This file contains 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
#!/bin/bash | |
# Force libc to output fatal errors to stderr instead of | |
# writing to the terminal directly | |
export LIBC_FATAL_STDERR_=1 | |
# Should be set as the path to the exploitable binary | |
EXPLOITABLE=~/exploitable/exploitable/exploitable/exploitable.py | |
# Ghetto script so -d has to be first |