➜ tezos ✗ arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
➜ tezos ✗ arch -x86_64 /usr/local/bin/brew tap serokell/tezos-packaging https://github.com/serokell/tezos-packaging.git
➜ tezos ✗ arch -x86_64 /usr/local/bin/brew install tezos-client
➜ tezos ✗ tezos-client
Usage:
tezos-client [global options] command [command options]
tezos-client --help (for global options)
tezos-client [global options] command --help (for command options)
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 |
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
/* | |
* 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
#!/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
/* 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
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
pdf: ## Generate PDF version of the manual | |
git clone https://github.com/ethereumbook/ethereumbook | |
asciidoctor-pdf \ | |
--base-dir $(CURDIR)/ethereumbook \ | |
--out-file "$(CURDIR)/Ethereum Book.pdf" \ | |
$(CURDIR)/ethereumbook/book.asciidoc |
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
LOCAL_PATH := $(call my-dir) | |
include $(CLEAR_VARS) | |
LOCAL_MODULE := libhwui | |
LOCAL_SRC_FILES := /android/rootfs/system/lib64/libhwui.so | |
include $(PREBUILT_SHARED_LIBRARY) | |
### build your lib ### | |
include $(CLEAR_VARS) | |
LOCAL_LDLIBS := -lhwui -L/android/rootfs/system/lib64/ |
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
//just a quick port of the SKCodecFuzzer harness by j00ru | |
#define SK_BUILD_FOR_ANDROID | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> |
OlderNewer