Traceback (most recent call last):
File "/usr/lib/python3.9/asyncio/runners.py", line 44, in run
return loop.run_until_complete(main)
File "/usr/lib/python3.9/asyncio/base_events.py", line 642, in run_until_complete
return future.result()
File "/home/james/projects/sliverpy/test.py", line 29, in main
res = await client.generate(mtls_config)
File "/var/data/python/lib/python3.9/site-packages/sliver/client.py", line 525, in generate
req.ImplantConfig = config
AttributeError: 'GenerateReq' object has no attribute 'ImplantConfig'
Prior to this patch the following code
would generate this error
I don't see an ImplantConfig in the protobuf https://github.com/BishopFox/sliver/blob/master/protobuf/clientpb/client.proto#L350-L352