mirror of
https://github.com/aquasecurity/kube-hunter.git
synced 2026-05-10 11:17:05 +00:00
10 lines
186 B
Python
10 lines
186 B
Python
from hunters.hunter import Hunter
|
|
|
|
|
|
class Proxy(Hunter):
|
|
def __init__(self, host):
|
|
self.host = host
|
|
|
|
def hunt(self, *args, **kwargs):
|
|
raise NotImplementedError()
|