Browse Source
- cached_property should be instance local, not function local (derp) - custom backdoor class which properly grabs local variables per connection, allowing for us to dynamically update them (bot now adds itself when initialized) - remove multiprocess gateway, its a cute idea but is better served being added at a later date when we can plan it out further. - bot should ignore itselfpull/3/head
6 changed files with 53 additions and 104 deletions
@ -0,0 +1,12 @@ |
|||
from gevent.backdoor import BackdoorServer |
|||
|
|||
|
|||
class DiscoBackdoorServer(BackdoorServer): |
|||
def __init__(self, listener, localf=None, banner=None, **server_args): |
|||
super(DiscoBackdoorServer, self).__init__(listener, {}, banner, **server_args) |
|||
self.localf = localf |
|||
|
|||
def _create_interactive_locals(self): |
|||
obj = super(DiscoBackdoorServer, self)._create_interactive_locals() |
|||
obj.update(self.localf()) |
|||
return obj |
Loading…
Reference in new issue