Without the use of an addon, the only thing you can do is access each forum and use the filter option to sort by replies and then descending. That will show you the threads with the most replies in that forum.
Top 100 visible replied to threads started in 2023
Code:
SELECT thread_id, title, reply_count FROM xf_thread WHERE YEAR(FROM_UNIXTIME(post_date)) = 2023 AND discussion_state ='visible' AND discussion_type != 'redirect' ORDER BY reply_count DESC LIMIT 100