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
diff -ru ../xnu-7195.60.75/Makefile ../xnu-7195.81.3/Makefile | |
--- ../xnu-7195.60.75/Makefile 2020-12-18 10:21:20.000000000 +0100 | |
+++ ../xnu-7195.81.3/Makefile 2021-01-26 21:33:33.000000000 +0100 | |
@@ -31,6 +31,7 @@ | |
export MakeInc_rule=${VERSDIR}/makedefs/MakeInc.rule | |
export MakeInc_dir=${VERSDIR}/makedefs/MakeInc.dir | |
+ | |
# | |
# Dispatch non-xnu build aliases to their own build |
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
/* automatically generated by rust-bindgen 0.56.0 */ | |
pub const true_: u32 = 1; | |
pub const false_: u32 = 0; | |
pub const __bool_true_false_are_defined: u32 = 1; | |
pub const __WORDSIZE: u32 = 64; | |
pub const __DARWIN_ONLY_64_BIT_INO_T: u32 = 1; | |
pub const __DARWIN_ONLY_UNIX_CONFORMANCE: u32 = 1; | |
pub const __DARWIN_ONLY_VERS_1050: u32 = 1; | |
pub const __DARWIN_UNIX03: u32 = 1; |
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
#!/usr/bin/env python3 | |
import re | |
import sys | |
import json | |
import argparse | |
import requests | |
from bs4 import BeautifulSoup | |
# requirements: pip3 install requests bs4 --user | |
# |
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
/* | |
* SEP firmware split tool | |
* | |
* Copyright (c) 2017 xerub | |
*/ | |
#include <fcntl.h> | |
#include <stddef.h> | |
#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
--- dyld-210.2.3/launch-cache/dsc_extractor.cpp 2012-05-21 02:35:15.000000000 -0400 | |
+++ dyld-210.2.3/launch-cache/dsc_extractor.cpp 2013-07-26 16:05:03.000000000 -0400 | |
@@ -37,6 +37,7 @@ | |
#include <mach-o/arch.h> | |
#include <mach-o/loader.h> | |
#include <Availability.h> | |
+#include <dlfcn.h> | |
#define NO_ULEB | |
#include "Architectures.hpp" |
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
#vlc_poc.py: | |
import struct | |
import sys | |
class mov_exploit: | |
def __init__(self,blocksize,gotbase,gotsize,shellcodebase=None,arch='win32'): | |
self.arch=arch | |
self.blocksize=blocksize |
NewerOlder