eval() call detected
High
- Category
- Dangerous Code Execution
- Content
def get_task_from_redis(self): tasks = self._redisdb.zget(self._task_table, count=self._task_limit) tasks = [eval(task) for task in tasks] return tasks def get_todo_task_from_mysql(self):- Confidence
- 99% confidence
- Finding
- tasks = [eval(task) for task in tasks]
