def decrypt_config_item_list()

in asyncrat/asyncrat.py [0:0]


    def decrypt_config_item_list(self, key: bytes, data: list[bytes], index: int) -> list[str]:
        result: str = "".join(
            filter(
                lambda x: x in string.printable,
                self.decrypt(key, base64.b64decode(data[index][1:])),
            )
        )
        if result == "null":
            return []
        return result.split(",")