Skip to content

Coalfire-Research/Vampire

Repository files navigation

Vampire

Vampire is an aggressor script which adds a "Mark Owned" right click option to beacons. This allows you to select either the Computer or User (or Default, which will choose based on your user), along with the domain they belong to. There is an additional optional cna script for marking new credentials as owned. Vampire will communicate with your neo4j REST API on localhost:7474 to mark the node as owned.


How to use

  1. Put vampire.cna, vampire_creds.cna, and owned_utils.py in the root of your cobaltstrike folder
  2. chmod u+x owned_utils.py
  3. Load vampire.cna and vampire_creds.cna into Cobalt Strike through the Script Manager
  4. Rain shells
  5. Start neo4j and BloodHound as normal
  6. Run BloodHound data collection and import data
  7. Right click your beacon(s) and mark them as owned
  8. Run logonpasswords

Considerations

  • neo4j must be running on localhost, on the standard port - 7474
  • Your neo4j database creds should be Kali standard neo4j:BloodHound (you can change the base64 in owned_utils.py otherwise)
  • echo -n 'neo4j:yourpassword' | base64 and then replace the auth in owned_utils.py

Benefits

  • Never miss an attack path
  • Quickly keep up with other team members' movement

How it works

  1. Uses owned_utils.py to query the list of domains from neo4j
  2. Obtain user selection
  3. Foreach selected beacon ID:
  4. Append @ + the specified domain to the user/computer name
  5. For Default, it will choose based on whether you're a local admin
  6. Uses owned_utils.py to query the neo4j REST API
    • 'MATCH (n:*) WHERE lower(n.name) = "' + nodelabel.lower() + '" SET n.owned = TRUE'

  1. Listens for the on credentials callback
  2. Loops through all the credentials, keeping an internal state
  3. Optionally excludes 32 byte passwords (NTLM hashes - see $ignore_hash)
  4. Reconstructs a valid domain for the user
  5. Checks the user exists
  6. Marks new credentials as owned

Extensibility

The cna script handles the Cobalt Strike GUI, while the Python script handles Bloodhound/neo4j interaction. The reason I did it this way is because I couldn't get the HTTP request working nicely through Sleep sockets. The plus side is, you can call/import the Python code into your own project which doesn't use Cobalt Strike. The code in the functions is pretty much ripped from the neo4j syntax examples in the Bloodhound Github wiki.

Author

Patrick Hurd

About

Vampire is an aggressor script which integrates with BloodHound to mark nodes as owned.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages