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
| package fr.neatmonster.labs; | |
| import java.awt.Color; | |
| import java.awt.Dimension; | |
| import java.awt.Graphics; | |
| import java.awt.image.BufferedImage; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.util.ArrayList; | |
| import java.util.Collections; |
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 -Naur a/llvm_mode/afl-clang-fast.c b/llvm_mode/afl-clang-fast.c | |
| --- a/llvm_mode/afl-clang-fast.c 2017-01-25 03:51:26.000000000 +0100 | |
| +++ b/llvm_mode/afl-clang-fast.c 2017-06-21 16:35:01.203146919 +0200 | |
| @@ -120,7 +120,28 @@ | |
| http://clang.llvm.org/docs/SanitizerCoverage.html#tracing-pcs-with-guards */ | |
| #ifdef USE_TRACE_PC | |
| - cc_params[cc_par_cnt++] = "-fsanitize-coverage=trace-pc-guard"; | |
| + u8 *trace_ind = ""; | |
| + #ifdef USE_TRACE_IND |
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
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <stdint.h> | |
| #include <string.h> | |
| #include <unistd.h> | |
| typedef void (*F)(); | |
| static F t[256]; |
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 -Naur a/llvm_mode/afl-llvm-rt.o.c b/llvm_mode/afl-llvm-rt.o.c | |
| --- a/llvm_mode/afl-llvm-rt.o.c 2017-02-01 02:59:41.000000000 +0100 | |
| +++ b/llvm_mode/afl-llvm-rt.o.c 2017-06-29 15:55:53.052681442 +0200 | |
| @@ -304,3 +304,205 @@ | |
| } | |
| } | |
| + | |
| +/* This function is called on every indirect call, but only if the binary has | |
| + been compiled with -fsanitize-coverage=trace-pc,indirect-calls. */ |
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
| import frida, sys | |
| images = {} | |
| def on_message(message, data): | |
| global image | |
| if message['type'] == 'send': | |
| if message['payload'].startswith('['): | |
| message = message['payload'] | |
| save = message[message.index(']')+1:] |
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
| import ida_netnode | |
| """ | |
| You can also switch the shell into IDC mode and enter del_user_info(). | |
| You can also edit your `~/ida-x/cfg/ida.cfg` and set `STORE_USER_INFO` to `NO`. | |
| """ | |
| # This will replace the original user blob with the evaluation version blob. | |
| ORIGINAL_USER = \ |
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
| 97 Pearson | |
| 76 Codility | |
| 52 Stereoarts | |
| 43 Webkul | |
| 43 FHAdmin | |
| 41 Attributor | |
| 37 OffensiveSecurity | |
| 35 Odoo | |
| 35 Jetbrains | |
| 29 Mobiscroll |
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
| import os | |
| import sys | |
| from construct import * | |
| BOOT_IMG_HDR = Struct( | |
| "magic" / Const(b"ANDROID!"), | |
| "kernel_size" / Int32ul, | |
| "kernel_addr" / Int32ul, | |
| "ramdisk_size" / Int32ul, |
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
| import java.io.BufferedReader; | |
| import java.io.File; | |
| import java.io.FileReader; | |
| import java.io.IOException; | |
| import java.util.HashMap; | |
| import java.util.Map; | |
| import org.objectweb.asm.ClassVisitor; | |
| import org.objectweb.asm.ClassWriter; | |
| import org.objectweb.asm.commons.ClassRemapper; |
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
| import argparse | |
| from construct import Int16ul, Int64ul | |
| def main(args): | |
| with open(args.kernel, 'rb') as f: | |
| data = f.read() | |
| sym_addrs = data.find(Int64ul.build(0xffffff8008080000) * 2) | |
| for offset in range(0, len(data), 0x100): |