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
<?php | |
function kilo($n){ return $n * 1024; } | |
function mega($n){ return kilo($n) * 1024; } | |
function to_cmdline(array $cmd){ | |
return implode(' ', array_map('escapeshellarg', $cmd)); | |
} | |
function make_pipe(array ...$cmds){ | |
$cmdlines = array_map('to_cmdline', $cmds); |
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
// ==UserScript== | |
// @name soundcloud | |
// @namespace https://soundcloud.com/ | |
// @version 0.1 | |
// @include http*://*soundcloud.com* | |
// @description try to take over the world! | |
// @author You | |
// @icon https://www.google.com/s2/favicons?domain=soundcloud.com | |
// @grant none | |
// @run-at document-start |
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
private static unsafe void ReplaceGetEntryAssembly() { | |
MethodInfo methodToReplace = typeof(Assembly).GetMethod("GetEntryAssembly", BindingFlags.Instance | BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public); | |
MethodInfo methodToInject = typeof(EzDotnetCompat).GetMethod("MyGetEntryAssembly", BindingFlags.Instance | BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public); | |
RuntimeHelpers.PrepareMethod(methodToReplace.MethodHandle); | |
RuntimeHelpers.PrepareMethod(methodToInject.MethodHandle); | |
long* inj = (long*)methodToInject.MethodHandle.Value.ToPointer() + 1; | |
long* tar = (long*)methodToReplace.MethodHandle.Value.ToPointer() + 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
<?php | |
<?php | |
//$DUMPBIN= "C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.29.30037/bin/Hostx64/x64/dumpbin.exe"; | |
$DUMPBIN = 'C:\Program Files\Microsoft Visual Studio\2022\Community\VC\Tools\MSVC\14.34.31933\bin\Hostx64\x64\dumpbin.exe'; | |
function genproxy(string $lib_path, $def, $asm){ | |
global $DUMPBIN; | |
$NUMBER="\d+"; | |
$SPACES="\s+"; | |
$HEX="[0-9a-fA-F]+"; |
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
<?php | |
class IntelToolGpio { | |
private SplFileObject $logFile; | |
public function __construct(string $logPath){ | |
$this->logFile = new SplFileObject($logPath, 'r'); | |
} | |
private function gpioRows(){ | |
$HEX = "0x[0-9a-fA-F]+"; |
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 bash | |
## | |
## This script creates a C cross compiler toolchain for QNX | |
## NOTE: cross compiling libstdc++ isn't yet supported, therefore it's a C-only toolchain | |
## Author: Stefano Moioli <[email protected]> | |
## | |
set -e | |
## SSH password to the running QNX system | |
SSHPASS=root |
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
<?php | |
/** | |
* grep.php | |
* author: Stefano Moioli <[email protected]> | |
* | |
* Custom variant of grep that supports: | |
* - utf8/utf16 strings | |
* - hex BE/LE patterns | |
*/ | |
define("CHUNKSIZE", 1024*1024); |
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
/** | |
* @file libgas.c | |
* @author Stefano Moioli <[email protected]> | |
* @brief use GAS from Binutils as a library, without temporary files | |
* this example implements a GAS assembler RAPL - Read Assemble Print Loop | |
* @version 0.1 | |
* @date 2022-04-28 | |
* | |
* @copyright Copyright (c) Stefano Moioli 2022 | |
* |
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
> How to use c++20 modules with CMake? | |
https://stackoverflow.com/a/62499857/11782802 | |
> How to compile/use header unit modules under CLang C++? | |
https://stackoverflow.com/a/67254709/11782802 | |
> Modules in Clang 11 | |
https://mariusbancila.ro/blog/2020/05/15/modules-in-clang-11/ | |
> Using C++ Modules TS with standard headers on linux |
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
/** | |
* A Ghidra script to chainload another Script bundled in an OSGI module | |
* Scripts must be placed in the /scripts package inside the bundle | |
* | |
* Written by Stefano Moioli <[email protected]> | |
*/ | |
import generic.stl.Pair; | |
import ghidra.app.script.GhidraScript; | |
import ghidra.app.tablechooser.AddressableRowObject; | |
import ghidra.app.tablechooser.StringColumnDisplay; |