🛠️Process injection
This technique aims at increasing privilege and/or escaping the protections applied to the processes
Theory
// encrypt the shellcode
encrypt(ciphered, SHELLCODE, SHELLCODE_LENGTH, KEY);
// decrypt + handoff
decrypt(deciphered, ciphered, SHELLCODE_LENGTH, KEY);
handoff(deciphered, SHELLCODE_LENGTH);Practice
Resources
Last updated
Was this helpful?