Skip to content

Instantly share code, notes, and snippets.

@egg82
egg82 / proxmox_nvidia.md
Last active May 4, 2024 14:03
NVidia Proxmox + LXC

Proxmox

Find the proper driver at the NVidia website.

Note: Make sure to select "Linux 64-bit" as your OS

Hit the "Search" button.

@FrankSpierings
FrankSpierings / frida-golang-symbol-enumerate.js
Last active June 13, 2023 14:27
Frida code to enumerate the Golang symbols
const utils = {
colors: {
red: function(string) {
return '\x1b[31m' + string + '\x1b[0m';
},
green: function(string) {
return '\x1b[32m' + string + '\x1b[0m';
},
# This is an example of how to run MiniDumpWriteDump functionality
# natively in IronPython without a C# wrapper.
from System.Runtime.InteropServices import DllImportAttribute, PreserveSigAttribute
from System.Diagnostics import Process
from System.IO import FileStream, FileMode, FileAccess,FileShare
import clrtype, System
class NativeMethods(object):
__metaclass__ = clrtype.ClrClass