Skip to content

Instantly share code, notes, and snippets.

View ShiverZm's full-sized avatar
🏠
Working from home

Shiver ShiverZm

🏠
Working from home
View GitHub Profile
@Pulimet
Pulimet / AdbCommands
Last active July 2, 2024 16:00
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@jaredcatkinson
jaredcatkinson / Get-InjectedThread.ps1
Last active July 1, 2024 08:32
Code from "Taking Hunting to the Next Level: Hunting in Memory" presentation at SANS Threat Hunting Summit 2017 by Jared Atkinson and Joe Desimone
function Get-InjectedThread
{
<#
.SYNOPSIS
Looks for threads that were created as a result of code injection.
.DESCRIPTION