Skip to content

Instantly share code, notes, and snippets.

View LongWayHomie's full-sized avatar

Razz LongWayHomie

  • gov.pl
  • Warsaw
  • 03:07 (UTC +01:00)
View GitHub Profile
@LongWayHomie
LongWayHomie / DynWin32-ShellcodeProcessHollowing.ps1
Created July 14, 2024 08:19 — forked from qtc-de/DynWin32-ShellcodeProcessHollowing.ps1
PowerShell implementation of shellcode based Process Hollowing that only relies on dynamically resolved Win32 API functions
<#
DynWin32-ShellcodeProcessHollowing.ps1 performs shellcode based process hollowing using
dynamically looked up Win32 API calls. The script obtains the methods GetModuleHandle,
GetProcAddress and CreateProcess by using reflection. Afterwards it utilizes GetModuleHandle
and GetProcAddress to obtain the addresses of the other required Win32 API calls.
When all required Win32 API calls are looked up, it starts svchost.exe in a suspended state
and overwrites the entrypoint with the specified shellcode. Afterwards, the thread is resumed
and the shellcode is executed enveloped within the trusted svchost.exe process.
@LongWayHomie
LongWayHomie / mjolnir.sh
Created March 16, 2024 20:26 — forked from Celestial-intelligence/mjolnir.sh
Bash script to BruteForce Wi-Fi networks (WPA-KEY) without external adapter or monitor mode on Android devices. Will add feature to brute WPS too in the future.
#!/bin/bash
# ATTENTION!!!
# Highly recommended to use with https://github.com/beardache/WiFiMap or https://forums.kali.org/showthread.php?23080-adstar-Wordlist-Generator-v1-0 (this one gives passwords quick right from stdout ;)
# Attached version of wpa_cli binary was compiled for armv7 architecture. However you can find your architecture version in the internet.
# Forked from https://github.com/rasta-mouse/Mjolnir
### text colours ###
red='\e[0;31m'