(self)
| 12 | self.match_service_name('^redis$') |
| 13 | |
| 14 | def check(self): |
| 15 | if which('redis-cli') is None: |
| 16 | self.error('The redis-cli program could not be found. Make sure it is installed. (On Kali, run: sudo apt install redis-tools)') |
| 17 | return False |
| 18 | |
| 19 | async def run(self, service): |
| 20 | if which('redis-cli') is not None: |