vuduclyunitn / spython

Example implementations of PEP 578 and 551 entry points

Home Page:https://www.python.org/dev/peps/pep-0578/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

spython

This repository contains sample implementations of CPython entry points using the hooks added in PEP 578.

Python 3.8 is required for these samples, or you can build Python yourself from the 3.8 or master branch.

LogToStdErr

The implementation in LogToStderr is nearly the simplest possible code. It takes every event and prints its arguments to standard error.

Two points are worth calling out:

  • during initialisation, it does not render arguments, but this is only because PyObject_Repr does not always work correctly
  • compile is handled specially to avoid printing the full code of every module

Also see LogToStderrMinimal, which is actually the simplest possible code to displays a message for each event.

NetworkPrompt

The implementation in NetworkPrompt is a hook that prompts the user on every socket.* event. If the user types n, the process is aborted.

The network_prompt.py module uses a Python hook to implement the same prompt.

StartupControl

The implementation in StartupControl limits how Python may be launched and requires that a startup file is specified. This prevents the use of the -c and -m options, as well as interactive mode.

WindowsCatFile

The implementation in WindowsCatFile uses a signed python_lib.cat file to verify all imported modules.

This sample only works on Windows.

WindowsEventLog

The implementation in WindowsEventLog writes a selection of events to a section of the Windows event log.

This sample only works on Windows.

syslog

The implementation in syslog writes a selection of events to the current syslog listener.

This sample requires a syslog implementation.

linux_xattr

The implementation in linux_xattr is a proof of concept for Linux. It verifies all imported modules by hashing their content with OpenSSL and comparing the hashes against stored hashes in extended file attributes.

See the readme in that directory for more information.

This sample only works on Linux and requires OpenSSL and libseccomp.

About

Example implementations of PEP 578 and 551 entry points

https://www.python.org/dev/peps/pep-0578/


Languages

Language:C 62.7%Language:Batchfile 11.9%Language:C++ 7.5%Language:Roff 6.8%Language:Python 4.3%Language:PowerShell 3.7%Language:Makefile 3.1%