for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from lib.base import QualysBaseAction
__all__ = [
'GetHostRangeAction'
]
class GetHostRangeAction(QualysBaseAction):
def run(self, host_start, host_end):
host = self.connection.getHostRange(host_start, host_end)
return self.resultsets.formatter(host)