Hello,
There are some components in MQX that execute in a task, examples (not a definitive list - sorry):
Timer Task (default priority 1) - this is MQX timer component
RTCS (TCP/IP) task (default priority 6)
USB KHCI task (default priority 8)
HTTPSRV server and session tasks (default priority 8)
FTPSRV seerver and session tasks (default priotiy 8)
Especially RTCS server applications can create many tasks internally to handle connected clients in separate session tasks. If you look into Task Summary in TAD while your application executes, you will see all the tasks, including the ones created by system.
There is not such a restriction that user task shall not execute at task priority 0-8. But it shall be used only by users, who are aware of its interrupt mask feature and scheduling between "system tasks" and user tasks.