Skip to content

Instantly share code, notes, and snippets.

View Atumcell's full-sized avatar

Atumcell Industries Atumcell

View GitHub Profile
// Function to click all elements matching the specified XPath
function clickElementsWithXPath(xpath) {
const matchingElements = document.evaluate(xpath, document, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
for (let i = 0; i < matchingElements.snapshotLength; i++) {
const element = matchingElements.snapshotItem(i);
element.click();
console.log('Clicked Element', i + 1);
}
}
@Atumcell
Atumcell / kerberos_attacks_cheatsheet.md
Created August 13, 2023 08:51 — forked from TarlogicSecurity/kerberos_attacks_cheatsheet.md
A cheatsheet with commands that can be used to perform kerberos attacks

Kerberos cheatsheet

Bruteforcing

With kerbrute.py:

python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>

With Rubeus version with brute module:

@Atumcell
Atumcell / AD-OSCP.md
Created August 13, 2023 08:51 — forked from RajChowdhury240/AD-OSCP.md
Active Directory Attacks OSCP