├── .vscode └── settings.json ├── README.md ├── test.py └── totally_innocuous_folder └── no_seriously_nothing_to_see_here ├── bin ├── activate ├── activate.csh ├── activate.fish ├── easy_install ├── easy_install-3.7 ├── epylint ├── isort ├── pip ├── pip3 ├── pip3.7 ├── pylint ├── pyreverse ├── python ├── python3 └── symilar ├── lib └── python3.7 │ └── site-packages │ ├── astroid-2.3.1.dist-info │ ├── COPYING │ ├── COPYING.LESSER │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── astroid │ ├── __init__.py │ ├── __pkginfo__.py │ ├── _ast.py │ ├── arguments.py │ ├── as_string.py │ ├── bases.py │ ├── brain │ │ ├── brain_argparse.py │ │ ├── brain_attrs.py │ │ ├── brain_builtin_inference.py │ │ ├── brain_collections.py │ │ ├── brain_crypt.py │ │ ├── brain_curses.py │ │ ├── brain_dataclasses.py │ │ ├── brain_dateutil.py │ │ ├── brain_fstrings.py │ │ ├── brain_functools.py │ │ ├── brain_gi.py │ │ ├── brain_hashlib.py │ │ ├── brain_http.py │ │ ├── brain_io.py │ │ ├── brain_mechanize.py │ │ ├── brain_multiprocessing.py │ │ ├── brain_namedtuple_enum.py │ │ ├── brain_nose.py │ │ ├── brain_numpy_core_fromnumeric.py │ │ ├── brain_numpy_core_function_base.py │ │ ├── brain_numpy_core_multiarray.py │ │ ├── brain_numpy_core_numeric.py │ │ ├── brain_numpy_core_numerictypes.py │ │ ├── brain_numpy_core_umath.py │ │ ├── brain_numpy_ndarray.py │ │ ├── brain_numpy_random_mtrand.py │ │ ├── brain_numpy_utils.py │ │ ├── brain_pkg_resources.py │ │ ├── brain_pytest.py │ │ ├── brain_qt.py │ │ ├── brain_random.py │ │ ├── brain_re.py │ │ ├── brain_six.py │ │ ├── brain_ssl.py │ │ ├── brain_subprocess.py │ │ ├── brain_threading.py │ │ ├── brain_typing.py │ │ └── brain_uuid.py │ ├── builder.py │ ├── context.py │ ├── decorators.py │ ├── exceptions.py │ ├── helpers.py │ ├── inference.py │ ├── interpreter │ │ ├── __init__.py │ │ ├── _import │ │ │ ├── __init__.py │ │ │ ├── spec.py │ │ │ └── util.py │ │ ├── dunder_lookup.py │ │ └── objectmodel.py │ ├── manager.py │ ├── mixins.py │ ├── modutils.py │ ├── node_classes.py │ ├── nodes.py │ ├── objects.py │ ├── protocols.py │ ├── raw_building.py │ ├── rebuilder.py │ ├── scoped_nodes.py │ ├── test_utils.py │ ├── transforms.py │ └── util.py │ ├── easy_install.py │ ├── isort-4.3.21.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── isort │ ├── __init__.py │ ├── __main__.py │ ├── finders.py │ ├── hooks.py │ ├── isort.py │ ├── main.py │ ├── natural.py │ ├── pie_slice.py │ ├── pylama_isort.py │ ├── settings.py │ └── utils.py │ ├── lazy_object_proxy-1.4.2.dist-info │ ├── AUTHORS.rst │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── lazy_object_proxy │ ├── __init__.py │ ├── _version.py │ ├── cext.cpython-37m-darwin.so │ ├── compat.py │ ├── simple.py │ ├── slots.py │ └── utils.py │ ├── mccabe-0.6.1.dist-info │ ├── DESCRIPTION.rst │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ ├── metadata.json │ └── top_level.txt │ ├── mccabe.py │ ├── pip-19.0.3.dist-info │ ├── INSTALLER │ ├── LICENSE.txt │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pip │ ├── __init__.py │ ├── __main__.py │ ├── _internal │ │ ├── __init__.py │ │ ├── build_env.py │ │ ├── cache.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ ├── autocompletion.py │ │ │ ├── base_command.py │ │ │ ├── cmdoptions.py │ │ │ ├── main_parser.py │ │ │ ├── parser.py │ │ │ └── status_codes.py │ │ ├── commands │ │ │ ├── __init__.py │ │ │ ├── check.py │ │ │ ├── completion.py │ │ │ ├── configuration.py │ │ │ ├── download.py │ │ │ ├── freeze.py │ │ │ ├── hash.py │ │ │ ├── help.py │ │ │ ├── install.py │ │ │ ├── list.py │ │ │ ├── search.py │ │ │ ├── show.py │ │ │ ├── uninstall.py │ │ │ └── wheel.py │ │ ├── configuration.py │ │ ├── download.py │ │ ├── exceptions.py │ │ ├── index.py │ │ ├── locations.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── candidate.py │ │ │ ├── format_control.py │ │ │ ├── index.py │ │ │ └── link.py │ │ ├── operations │ │ │ ├── __init__.py │ │ │ ├── check.py │ │ │ ├── freeze.py │ │ │ └── prepare.py │ │ ├── pep425tags.py │ │ ├── pyproject.py │ │ ├── req │ │ │ ├── __init__.py │ │ │ ├── constructors.py │ │ │ ├── req_file.py │ │ │ ├── req_install.py │ │ │ ├── req_set.py │ │ │ ├── req_tracker.py │ │ │ └── req_uninstall.py │ │ ├── resolve.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── appdirs.py │ │ │ ├── compat.py │ │ │ ├── deprecation.py │ │ │ ├── encoding.py │ │ │ ├── filesystem.py │ │ │ ├── glibc.py │ │ │ ├── hashes.py │ │ │ ├── logging.py │ │ │ ├── misc.py │ │ │ ├── models.py │ │ │ ├── outdated.py │ │ │ ├── packaging.py │ │ │ ├── setuptools_build.py │ │ │ ├── temp_dir.py │ │ │ ├── typing.py │ │ │ └── ui.py │ │ ├── vcs │ │ │ ├── __init__.py │ │ │ ├── bazaar.py │ │ │ ├── git.py │ │ │ ├── mercurial.py │ │ │ └── subversion.py │ │ └── wheel.py │ └── _vendor │ │ ├── __init__.py │ │ ├── appdirs.py │ │ ├── cachecontrol │ │ ├── __init__.py │ │ ├── _cmd.py │ │ ├── adapter.py │ │ ├── cache.py │ │ ├── caches │ │ │ ├── __init__.py │ │ │ ├── file_cache.py │ │ │ └── redis_cache.py │ │ ├── compat.py │ │ ├── controller.py │ │ ├── filewrapper.py │ │ ├── heuristics.py │ │ ├── serialize.py │ │ └── wrapper.py │ │ ├── certifi │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── cacert.pem │ │ └── core.py │ │ ├── chardet │ │ ├── __init__.py │ │ ├── big5freq.py │ │ ├── big5prober.py │ │ ├── chardistribution.py │ │ ├── charsetgroupprober.py │ │ ├── charsetprober.py │ │ ├── cli │ │ │ ├── __init__.py │ │ │ └── chardetect.py │ │ ├── codingstatemachine.py │ │ ├── compat.py │ │ ├── cp949prober.py │ │ ├── enums.py │ │ ├── escprober.py │ │ ├── escsm.py │ │ ├── eucjpprober.py │ │ ├── euckrfreq.py │ │ ├── euckrprober.py │ │ ├── euctwfreq.py │ │ ├── euctwprober.py │ │ ├── gb2312freq.py │ │ ├── gb2312prober.py │ │ ├── hebrewprober.py │ │ ├── jisfreq.py │ │ ├── jpcntx.py │ │ ├── langbulgarianmodel.py │ │ ├── langcyrillicmodel.py │ │ ├── langgreekmodel.py │ │ ├── langhebrewmodel.py │ │ ├── langhungarianmodel.py │ │ ├── langthaimodel.py │ │ ├── langturkishmodel.py │ │ ├── latin1prober.py │ │ ├── mbcharsetprober.py │ │ ├── mbcsgroupprober.py │ │ ├── mbcssm.py │ │ ├── sbcharsetprober.py │ │ ├── sbcsgroupprober.py │ │ ├── sjisprober.py │ │ ├── universaldetector.py │ │ ├── utf8prober.py │ │ └── version.py │ │ ├── colorama │ │ ├── __init__.py │ │ ├── ansi.py │ │ ├── ansitowin32.py │ │ ├── initialise.py │ │ ├── win32.py │ │ └── winterm.py │ │ ├── distlib │ │ ├── __init__.py │ │ ├── _backport │ │ │ ├── __init__.py │ │ │ ├── misc.py │ │ │ ├── shutil.py │ │ │ ├── sysconfig.cfg │ │ │ ├── sysconfig.py │ │ │ └── tarfile.py │ │ ├── compat.py │ │ ├── database.py │ │ ├── index.py │ │ ├── locators.py │ │ ├── manifest.py │ │ ├── markers.py │ │ ├── metadata.py │ │ ├── resources.py │ │ ├── scripts.py │ │ ├── t32.exe │ │ ├── t64.exe │ │ ├── util.py │ │ ├── version.py │ │ ├── w32.exe │ │ ├── w64.exe │ │ └── wheel.py │ │ ├── distro.py │ │ ├── html5lib │ │ ├── __init__.py │ │ ├── _ihatexml.py │ │ ├── _inputstream.py │ │ ├── _tokenizer.py │ │ ├── _trie │ │ │ ├── __init__.py │ │ │ ├── _base.py │ │ │ ├── datrie.py │ │ │ └── py.py │ │ ├── _utils.py │ │ ├── constants.py │ │ ├── filters │ │ │ ├── __init__.py │ │ │ ├── alphabeticalattributes.py │ │ │ ├── base.py │ │ │ ├── inject_meta_charset.py │ │ │ ├── lint.py │ │ │ ├── optionaltags.py │ │ │ ├── sanitizer.py │ │ │ └── whitespace.py │ │ ├── html5parser.py │ │ ├── serializer.py │ │ ├── treeadapters │ │ │ ├── __init__.py │ │ │ ├── genshi.py │ │ │ └── sax.py │ │ ├── treebuilders │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ └── etree_lxml.py │ │ └── treewalkers │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── dom.py │ │ │ ├── etree.py │ │ │ ├── etree_lxml.py │ │ │ └── genshi.py │ │ ├── idna │ │ ├── __init__.py │ │ ├── codec.py │ │ ├── compat.py │ │ ├── core.py │ │ ├── idnadata.py │ │ ├── intranges.py │ │ ├── package_data.py │ │ └── uts46data.py │ │ ├── ipaddress.py │ │ ├── lockfile │ │ ├── __init__.py │ │ ├── linklockfile.py │ │ ├── mkdirlockfile.py │ │ ├── pidlockfile.py │ │ ├── sqlitelockfile.py │ │ └── symlinklockfile.py │ │ ├── msgpack │ │ ├── __init__.py │ │ ├── _version.py │ │ ├── exceptions.py │ │ └── fallback.py │ │ ├── packaging │ │ ├── __about__.py │ │ ├── __init__.py │ │ ├── _compat.py │ │ ├── _structures.py │ │ ├── markers.py │ │ ├── requirements.py │ │ ├── specifiers.py │ │ ├── utils.py │ │ └── version.py │ │ ├── pep517 │ │ ├── __init__.py │ │ ├── _in_process.py │ │ ├── build.py │ │ ├── check.py │ │ ├── colorlog.py │ │ ├── compat.py │ │ ├── envbuild.py │ │ └── wrappers.py │ │ ├── pkg_resources │ │ ├── __init__.py │ │ └── py31compat.py │ │ ├── progress │ │ ├── __init__.py │ │ ├── bar.py │ │ ├── counter.py │ │ ├── helpers.py │ │ └── spinner.py │ │ ├── pyparsing.py │ │ ├── pytoml │ │ ├── __init__.py │ │ ├── core.py │ │ ├── parser.py │ │ ├── test.py │ │ ├── utils.py │ │ └── writer.py │ │ ├── requests │ │ ├── __init__.py │ │ ├── __version__.py │ │ ├── _internal_utils.py │ │ ├── adapters.py │ │ ├── api.py │ │ ├── auth.py │ │ ├── certs.py │ │ ├── compat.py │ │ ├── cookies.py │ │ ├── exceptions.py │ │ ├── help.py │ │ ├── hooks.py │ │ ├── models.py │ │ ├── packages.py │ │ ├── sessions.py │ │ ├── status_codes.py │ │ ├── structures.py │ │ └── utils.py │ │ ├── retrying.py │ │ ├── six.py │ │ ├── urllib3 │ │ ├── __init__.py │ │ ├── _collections.py │ │ ├── connection.py │ │ ├── connectionpool.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── _appengine_environ.py │ │ │ ├── _securetransport │ │ │ │ ├── __init__.py │ │ │ │ ├── bindings.py │ │ │ │ └── low_level.py │ │ │ ├── appengine.py │ │ │ ├── ntlmpool.py │ │ │ ├── pyopenssl.py │ │ │ ├── securetransport.py │ │ │ └── socks.py │ │ ├── exceptions.py │ │ ├── fields.py │ │ ├── filepost.py │ │ ├── packages │ │ │ ├── __init__.py │ │ │ ├── backports │ │ │ │ ├── __init__.py │ │ │ │ └── makefile.py │ │ │ ├── six.py │ │ │ └── ssl_match_hostname │ │ │ │ ├── __init__.py │ │ │ │ └── _implementation.py │ │ ├── poolmanager.py │ │ ├── request.py │ │ ├── response.py │ │ └── util │ │ │ ├── __init__.py │ │ │ ├── connection.py │ │ │ ├── queue.py │ │ │ ├── request.py │ │ │ ├── response.py │ │ │ ├── retry.py │ │ │ ├── ssl_.py │ │ │ ├── timeout.py │ │ │ ├── url.py │ │ │ └── wait.py │ │ └── webencodings │ │ ├── __init__.py │ │ ├── labels.py │ │ ├── mklabels.py │ │ ├── tests.py │ │ └── x_user_defined.py │ ├── pkg_resources │ ├── __init__.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── appdirs.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing.py │ │ └── six.py │ ├── extern │ │ └── __init__.py │ └── py31compat.py │ ├── pylint-2.4.2.dist-info │ ├── COPYING │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── entry_points.txt │ └── top_level.txt │ ├── pylint │ ├── __init__.py │ ├── __main__.py │ ├── __pkginfo__.py │ ├── checkers │ │ ├── __init__.py │ │ ├── async.py │ │ ├── base.py │ │ ├── base_checker.py │ │ ├── classes.py │ │ ├── design_analysis.py │ │ ├── exceptions.py │ │ ├── format.py │ │ ├── imports.py │ │ ├── logging.py │ │ ├── misc.py │ │ ├── newstyle.py │ │ ├── python3.py │ │ ├── raw_metrics.py │ │ ├── refactoring.py │ │ ├── similar.py │ │ ├── spelling.py │ │ ├── stdlib.py │ │ ├── strings.py │ │ ├── typecheck.py │ │ ├── utils.py │ │ └── variables.py │ ├── config.py │ ├── constants.py │ ├── epylint.py │ ├── exceptions.py │ ├── extensions │ │ ├── __init__.py │ │ ├── _check_docs_utils.py │ │ ├── bad_builtin.py │ │ ├── broad_try_clause.py │ │ ├── check_docs.py │ │ ├── check_elif.py │ │ ├── comparetozero.py │ │ ├── docparams.py │ │ ├── docstyle.py │ │ ├── emptystring.py │ │ ├── mccabe.py │ │ ├── overlapping_exceptions.py │ │ └── redefined_variable_type.py │ ├── graph.py │ ├── interfaces.py │ ├── lint.py │ ├── message │ │ ├── __init__.py │ │ ├── message.py │ │ ├── message_definition.py │ │ ├── message_definition_store.py │ │ ├── message_handler_mix_in.py │ │ └── message_id_store.py │ ├── pyreverse │ │ ├── __init__.py │ │ ├── diadefslib.py │ │ ├── diagrams.py │ │ ├── inspector.py │ │ ├── main.py │ │ ├── utils.py │ │ ├── vcgutils.py │ │ └── writer.py │ ├── reporters │ │ ├── __init__.py │ │ ├── base_reporter.py │ │ ├── collecting_reporter.py │ │ ├── json_reporter.py │ │ ├── reports_handler_mix_in.py │ │ ├── text.py │ │ └── ureports │ │ │ ├── __init__.py │ │ │ ├── nodes.py │ │ │ └── text_writer.py │ ├── testutils.py │ └── utils │ │ ├── __init__.py │ │ ├── ast_walker.py │ │ ├── file_state.py │ │ └── utils.py │ ├── setuptools-40.8.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ ├── dependency_links.txt │ ├── entry_points.txt │ ├── top_level.txt │ └── zip-safe │ ├── setuptools │ ├── __init__.py │ ├── _deprecation_warning.py │ ├── _vendor │ │ ├── __init__.py │ │ ├── packaging │ │ │ ├── __about__.py │ │ │ ├── __init__.py │ │ │ ├── _compat.py │ │ │ ├── _structures.py │ │ │ ├── markers.py │ │ │ ├── requirements.py │ │ │ ├── specifiers.py │ │ │ ├── utils.py │ │ │ └── version.py │ │ ├── pyparsing.py │ │ └── six.py │ ├── archive_util.py │ ├── build_meta.py │ ├── cli-32.exe │ ├── cli-64.exe │ ├── cli.exe │ ├── command │ │ ├── __init__.py │ │ ├── alias.py │ │ ├── bdist_egg.py │ │ ├── bdist_rpm.py │ │ ├── bdist_wininst.py │ │ ├── build_clib.py │ │ ├── build_ext.py │ │ ├── build_py.py │ │ ├── develop.py │ │ ├── dist_info.py │ │ ├── easy_install.py │ │ ├── egg_info.py │ │ ├── install.py │ │ ├── install_egg_info.py │ │ ├── install_lib.py │ │ ├── install_scripts.py │ │ ├── launcher manifest.xml │ │ ├── py36compat.py │ │ ├── register.py │ │ ├── rotate.py │ │ ├── saveopts.py │ │ ├── sdist.py │ │ ├── setopt.py │ │ ├── test.py │ │ ├── upload.py │ │ └── upload_docs.py │ ├── config.py │ ├── dep_util.py │ ├── depends.py │ ├── dist.py │ ├── extension.py │ ├── extern │ │ └── __init__.py │ ├── glibc.py │ ├── glob.py │ ├── gui-32.exe │ ├── gui-64.exe │ ├── gui.exe │ ├── launch.py │ ├── lib2to3_ex.py │ ├── monkey.py │ ├── msvc.py │ ├── namespaces.py │ ├── package_index.py │ ├── pep425tags.py │ ├── py27compat.py │ ├── py31compat.py │ ├── py33compat.py │ ├── sandbox.py │ ├── script (dev).tmpl │ ├── script.tmpl │ ├── site-patch.py │ ├── ssl_support.py │ ├── unicode_utils.py │ ├── version.py │ ├── wheel.py │ └── windows_support.py │ ├── six-1.12.0.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── six.py │ ├── typed_ast-1.4.0.dist-info │ ├── INSTALLER │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ ├── typed_ast │ ├── __init__.py │ ├── _ast27.cpython-37m-darwin.so │ ├── _ast3.cpython-37m-darwin.so │ ├── ast27.py │ ├── ast3.py │ ├── conversions.py │ └── tests │ │ └── test_basics.py │ ├── wrapt-1.11.2.dist-info │ ├── INSTALLER │ ├── LICENSE │ ├── METADATA │ ├── RECORD │ ├── WHEEL │ └── top_level.txt │ └── wrapt │ ├── __init__.py │ ├── _wrappers.cpython-37m-darwin.so │ ├── decorators.py │ ├── importer.py │ └── wrappers.py └── pyvenv.cfg /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/README.md -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | print("Test!") 3 | 4 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/activate -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/activate.csh -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/activate.fish -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/easy_install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/easy_install -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/easy_install-3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/easy_install-3.7 -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/epylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/epylint -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/isort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/isort -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pip -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pip3 -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pip3.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pip3.7 -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pylint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pylint -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pyreverse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/pyreverse -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/python: -------------------------------------------------------------------------------- 1 | python3 -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/python3: -------------------------------------------------------------------------------- 1 | /usr/local/bin/python3 -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/symilar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/bin/symilar -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/COPYING -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/COPYING.LESSER -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid-2.3.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | astroid 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/__pkginfo__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/__pkginfo__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/_ast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/_ast.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/arguments.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/as_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/as_string.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/bases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/bases.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_argparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_argparse.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_attrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_attrs.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_collections.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_crypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_crypt.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_curses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_curses.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_dataclasses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_dataclasses.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_dateutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_dateutil.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_fstrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_fstrings.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_functools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_functools.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_gi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_gi.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_hashlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_hashlib.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_http.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_io.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_mechanize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_mechanize.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_multiprocessing.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_namedtuple_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_namedtuple_enum.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_nose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_nose.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_numpy_core_umath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_numpy_core_umath.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_numpy_ndarray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_numpy_ndarray.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_numpy_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_numpy_utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_pkg_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_pkg_resources.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_pytest.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_qt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_qt.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_random.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_re.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_six.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_ssl.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_subprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_subprocess.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_threading.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_typing.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/brain/brain_uuid.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/builder.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/context.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/decorators.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/exceptions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/helpers.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/inference.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/_import/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/_import/spec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/_import/spec.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/_import/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/_import/util.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/dunder_lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/dunder_lookup.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/objectmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/interpreter/objectmodel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/manager.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/mixins.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/modutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/modutils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/node_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/node_classes.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/nodes.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/objects.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/protocols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/protocols.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/raw_building.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/raw_building.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/rebuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/rebuilder.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/scoped_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/scoped_nodes.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/test_utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/transforms.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/astroid/util.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/easy_install.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/LICENSE -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/WHEEL -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/entry_points.txt -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort-4.3.21.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | isort 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/__main__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/finders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/finders.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/hooks.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/isort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/isort.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/main.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/natural.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/natural.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/pie_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/pie_slice.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/pylama_isort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/pylama_isort.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/settings.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/isort/utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy-1.4.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy-1.4.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy-1.4.2.dist-info/WHEEL -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy-1.4.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | lazy_object_proxy 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/_version.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/simple.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/slots.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/lazy_object_proxy/utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/DESCRIPTION.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/DESCRIPTION.rst -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/WHEEL -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/entry_points.txt: -------------------------------------------------------------------------------- 1 | [flake8.extension] 2 | C90 = mccabe:McCabeChecker 3 | 4 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/metadata.json -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe-0.6.1.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | mccabe 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/mccabe.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/LICENSE.txt -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/WHEEL -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/entry_points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/entry_points.txt -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip-19.0.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "19.0.3" 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/__main__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/build_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/build_env.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cache.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/autocompletion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/autocompletion.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/base_command.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/base_command.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/cmdoptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/cmdoptions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/main_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/main_parser.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/parser.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/cli/status_codes.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/check.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/completion.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/configuration.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/download.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/freeze.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/hash.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/help.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/install.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/list.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/search.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/show.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/show.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/uninstall.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/commands/wheel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/configuration.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/download.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/exceptions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/index.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/locations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/locations.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/candidate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/candidate.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/format_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/format_control.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/index.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/link.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/models/link.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/operations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/operations/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/operations/check.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/operations/freeze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/operations/freeze.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/operations/prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/operations/prepare.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/pep425tags.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/pyproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/pyproject.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/constructors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/constructors.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_file.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_install.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_set.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_tracker.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_uninstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/req/req_uninstall.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/resolve.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/appdirs.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/deprecation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/deprecation.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/encoding.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/filesystem.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/glibc.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/hashes.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/logging.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/misc.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/models.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/outdated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/outdated.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/packaging.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/setuptools_build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/setuptools_build.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/temp_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/temp_dir.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/typing.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/utils/ui.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/bazaar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/bazaar.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/git.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/mercurial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/mercurial.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/subversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/vcs/subversion.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_internal/wheel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/appdirs.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/_cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/_cmd.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/adapter.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/cache.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/controller.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/filewrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/filewrapper.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/heuristics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/heuristics.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/serialize.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/cachecontrol/wrapper.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/certifi/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import where 2 | 3 | __version__ = "2018.11.29" 4 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/certifi/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/certifi/__main__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/certifi/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/certifi/cacert.pem -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/certifi/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/certifi/core.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/big5freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/big5freq.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/big5prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/big5prober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/chardistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/chardistribution.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/charsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/charsetprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/cli/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/cli/chardetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/cli/chardetect.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/cp949prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/cp949prober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/enums.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/escprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/escprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/escsm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/escsm.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/eucjpprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/eucjpprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/euckrfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/euckrfreq.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/euckrprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/euckrprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/euctwfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/euctwfreq.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/euctwprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/euctwprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/gb2312freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/gb2312freq.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/gb2312prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/gb2312prober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/hebrewprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/hebrewprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/jisfreq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/jisfreq.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/jpcntx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/jpcntx.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/langgreekmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/langgreekmodel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/langhebrewmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/langhebrewmodel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/langthaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/langthaimodel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/langturkishmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/langturkishmodel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/latin1prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/latin1prober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/mbcharsetprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/mbcharsetprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/mbcsgroupprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/mbcsgroupprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/mbcssm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/mbcssm.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/sjisprober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/sjisprober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/utf8prober.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/utf8prober.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/chardet/version.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/ansi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/ansi.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/ansitowin32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/ansitowin32.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/initialise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/initialise.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/win32.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/colorama/winterm.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/database.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/index.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/locators.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/manifest.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/markers.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/metadata.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/resources.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/scripts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/scripts.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/t32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/t32.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/t64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/t64.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/util.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/version.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/w32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/w32.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/w64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/w64.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distlib/wheel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/distro.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_ihatexml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_ihatexml.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_inputstream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_inputstream.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_tokenizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_tokenizer.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/_base.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/datrie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/datrie.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_trie/py.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/_utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/constants.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/base.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/filters/lint.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/html5parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/html5parser.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/html5lib/serializer.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/codec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/codec.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/core.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/idnadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/idnadata.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/intranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/intranges.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/package_data.py: -------------------------------------------------------------------------------- 1 | __version__ = '2.8' 2 | 3 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/uts46data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/idna/uts46data.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/ipaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/ipaddress.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/lockfile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/lockfile/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/lockfile/linklockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/lockfile/linklockfile.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/lockfile/pidlockfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/lockfile/pidlockfile.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/msgpack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/msgpack/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/msgpack/_version.py: -------------------------------------------------------------------------------- 1 | version = (0, 5, 6) 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/msgpack/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/msgpack/exceptions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/msgpack/fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/msgpack/fallback.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/__about__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/__about__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/_compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/_structures.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/markers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/markers.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/specifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/specifiers.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/packaging/version.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/__init__.py: -------------------------------------------------------------------------------- 1 | """Wrappers to build Python packages using PEP 517 hooks 2 | """ 3 | 4 | __version__ = '0.5.0' 5 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/_in_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/_in_process.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/build.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/check.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/colorlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/colorlog.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/envbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/envbuild.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pep517/wrappers.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/bar.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/counter.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/helpers.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/progress/spinner.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pyparsing.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/core.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/parser.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/test.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/pytoml/writer.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/__version__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/adapters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/adapters.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/api.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/auth.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/certs.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/cookies.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/exceptions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/help.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/hooks.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/models.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/packages.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/sessions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/sessions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/status_codes.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/structures.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/requests/utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/retrying.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/retrying.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/six.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/_collections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/_collections.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/connection.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/contrib/socks.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/exceptions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/fields.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/filepost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/filepost.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/packages/six.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/poolmanager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/poolmanager.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/request.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/response.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/queue.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/request.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/response.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/retry.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/ssl_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/ssl_.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/timeout.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/url.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/wait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/urllib3/util/wait.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/webencodings/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/webencodings/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/webencodings/labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/webencodings/labels.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/webencodings/mklabels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/webencodings/mklabels.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/webencodings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pip/_vendor/webencodings/tests.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/_vendor/appdirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/_vendor/appdirs.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/_vendor/pyparsing.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/_vendor/six.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/extern/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pkg_resources/py31compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/COPYING -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.33.6) 3 | Root-Is-Purelib: true 4 | Tag: py3-none-any 5 | 6 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint-2.4.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | pylint 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/__main__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/__pkginfo__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/__pkginfo__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/async.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/base.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/base_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/base_checker.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/classes.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/design_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/design_analysis.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/exceptions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/format.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/imports.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/logging.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/misc.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/newstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/newstyle.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/python3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/python3.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/raw_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/raw_metrics.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/refactoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/refactoring.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/similar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/similar.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/spelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/spelling.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/stdlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/stdlib.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/strings.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/typecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/typecheck.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/checkers/variables.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/config.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/constants.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/epylint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/epylint.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/exceptions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/bad_builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/bad_builtin.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/check_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/check_docs.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/check_elif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/check_elif.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/comparetozero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/comparetozero.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/docparams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/docparams.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/docstyle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/docstyle.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/emptystring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/emptystring.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/mccabe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/extensions/mccabe.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/graph.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/interfaces.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/lint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/lint.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/message/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/message/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/message/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/message/message.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/message/message_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/message/message_definition.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/message/message_id_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/message/message_id_store.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/diadefslib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/diadefslib.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/diagrams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/diagrams.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/inspector.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/main.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/vcgutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/vcgutils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/pyreverse/writer.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/base_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/base_reporter.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/json_reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/json_reporter.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/text.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/ureports/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/reporters/ureports/nodes.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/testutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/testutils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/utils/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/utils/ast_walker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/utils/ast_walker.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/utils/file_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/utils/file_state.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/pylint/utils/utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/LICENSE -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/WHEEL -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | easy_install 2 | pkg_resources 3 | setuptools 4 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools-40.8.0.dist-info/zip-safe: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/_deprecation_warning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/_deprecation_warning.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/_vendor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/_vendor/pyparsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/_vendor/pyparsing.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/_vendor/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/_vendor/six.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/archive_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/archive_util.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/build_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/build_meta.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/cli-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/cli-32.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/cli-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/cli-64.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/cli.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/cli.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/alias.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/bdist_egg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/bdist_egg.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/bdist_rpm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/bdist_rpm.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/bdist_wininst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/bdist_wininst.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/build_clib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/build_clib.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/build_ext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/build_ext.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/build_py.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/build_py.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/develop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/develop.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/dist_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/dist_info.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/easy_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/easy_install.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/egg_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/egg_info.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/install.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/install_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/install_lib.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/py36compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/py36compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/register.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/rotate.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/saveopts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/saveopts.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/sdist.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/setopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/setopt.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/test.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/upload.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/upload_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/command/upload_docs.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/config.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/dep_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/dep_util.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/depends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/depends.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/dist.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/extension.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/extern/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/extern/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/glibc.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/glob.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/gui-32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/gui-32.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/gui-64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/gui-64.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/gui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/gui.exe -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/launch.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/lib2to3_ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/lib2to3_ex.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/monkey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/monkey.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/msvc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/msvc.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/namespaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/namespaces.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/package_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/package_index.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/pep425tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/pep425tags.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/py27compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/py27compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/py31compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/py31compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/py33compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/py33compat.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/sandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/sandbox.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/script (dev).tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/script (dev).tmpl -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/script.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/script.tmpl -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/site-patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/site-patch.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/ssl_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/ssl_support.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/unicode_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/unicode_utils.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/version.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/wheel.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/windows_support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/setuptools/windows_support.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/LICENSE -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/WHEEL -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six-1.12.0.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | six 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/six.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast-1.4.0.dist-info/WHEEL -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.4.0" 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/ast27.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/ast27.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/ast3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/ast3.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/conversions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/conversions.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/typed_ast/tests/test_basics.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/LICENSE -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/METADATA -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/RECORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/RECORD -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/WHEEL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/WHEEL -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt-1.11.2.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | wrapt 2 | -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt/__init__.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt/decorators.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt/importer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt/importer.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/lib/python3.7/site-packages/wrapt/wrappers.py -------------------------------------------------------------------------------- /totally_innocuous_folder/no_seriously_nothing_to_see_here/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/doyensec/VSCode_PoC_Oct2019/HEAD/totally_innocuous_folder/no_seriously_nothing_to_see_here/pyvenv.cfg --------------------------------------------------------------------------------