moloch-- / sliver-py

A Python gRPC Client Library for Sliver
GNU General Public License v3.0
65 stars 13 forks source link

fix(https): Fix start_https_listener to call the correct function #16

Closed autovtools closed 2 years ago

autovtools commented 2 years ago

Currently: start_https_listener calls StartHTTPListener in client.py, which results in an http listener job being created.

This PR fixes the function call to match the corresponding server code (https://github.com/BishopFox/sliver/blob/aacf2c16ac00e4609231f5faee588bdb9ea9c532/server/rpc/rpc-jobs.go#L183).

After PR: start_https_listener correctly starts an https listener job.