ait-testbed / attackmate

AttackMate is an attack orchestration tool that executes full attack-chains based on playbooks.
GNU General Public License v3.0
24 stars 3 forks source link

Add support for sliver-beacons #20

Open whotwagner opened 1 year ago

whotwagner commented 1 year ago

Currently only sliver-sessions are supported. Add support for sliver-beacons!

thorinaboenke commented 4 months ago

is this implemented with for example:

     async def get_session_or_beacon(self,
                                    name,
                                    beacon=False) -> InteractiveBeacon | InteractiveSession:
        if beacon:
            return await self.get_beacon_by_name(name)
        else:
            return await self.get_session_by_name(name)

commit https://github.com/ait-testbed/attackmate/commit/65266892cb34080403e9b83edd7a0ef80188009f

whotwagner commented 4 months ago

Yes, but it is still buggy and need to be fixed. That's why I left that open