Python seems to do some mitigation which can be added to the README
Source : https://news.ycombinator.com/item?id=17237665
https://docs.python.org/3/library/zipfile.html?highlight=zipfile#zipfile.ZipFile.extract
If a member filename is an absolute path, a drive/UNC sharepoint and leading (back)slashes will be stripped, e.g.: ///foo/bar becomes foo/bar on Unix, and C:\foo\bar becomes foo\bar on Windows. And all ".." components in a member filename will be removed, e.g.: ../../foo../../ba..r becomes foo../ba..r. On Windows illegal characters (:, <, >, |, ", ?, and *) replaced by underscore (_).
Python seems to do some mitigation which can be added to the README
Source : https://news.ycombinator.com/item?id=17237665
https://docs.python.org/3/library/zipfile.html?highlight=zipfile#zipfile.ZipFile.extract