awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

7 个仓库

Awesome GitHub RepositoriesCGI Script Execution

The process of executing external system scripts and returning their output as a dynamic HTTP response.

Distinct from Sandboxed Scripting: None of the candidates cover the standard Common Gateway Interface (CGI) mechanism for executing system scripts.

Explore 7 awesome GitHub repositories matching web development · CGI Script Execution. Refine with filters or upvote what's useful.

Awesome CGI Script Execution GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • aosabook/500linesaosabook 的头像

    aosabook/500lines

    29,582在 GitHub 上查看↗

    This project is a software engineering educational resource providing a collection of canonical system implementations. It serves as a library of computer science case studies and polyglot code examples designed to demonstrate architectural tradeoffs and design patterns through concise versions of fundamental software components. The repository focuses on studying the implementation of core concepts such as consensus algorithms, interpreters, and database engines. It provides minimal versions of complex systems to facilitate the analysis of language design, data structure implementation, and

    Implements the execution of external CGI scripts to deliver dynamic responses to web clients.

    JavaScript
    在 GitHub 上查看↗29,582
  • joewalnes/websocketdjoewalnes 的头像

    joewalnes/websocketd

    17,465在 GitHub 上查看↗

    websocketd is a CGI web server and process-to-WebSocket wrapper that transforms command line programs into WebSocket servers by bridging standard input and output streams to remote clients. It functions as a TLS-secured gateway that routes traffic to backend processes, allowing any executable using standard IO to be exposed via a web interface. The project uses directory-based endpoint mapping to automate the creation of URL paths from local executable files. It employs a process-per-connection model to isolate execution and forwards HTTP request metadata, such as cookies and query parameters

    Provides the ability to execute local scripts and return their output as HTTP responses via the CGI standard.

    Goproxywebsocket-serverwebsockets
    在 GitHub 上查看↗17,465
  • ezlippi/tinyhttpdEZLippi 的头像

    EZLippi/Tinyhttpd

    12,153在 GitHub 上查看↗

    Tinyhttpd is a minimal HTTP web server designed to process requests, deliver static files, and execute CGI scripts via network sockets. It serves as an educational implementation for studying the fundamental mechanics of the HTTP protocol and network programming. The server supports the Common Gateway Interface to generate dynamic content by launching external programs as subprocesses. It manages these dynamic requests by redirecting data through pipes and system environment variables. The system provides capabilities for parsing HTTP request methods and URLs, mapping those requests to local

    Executes external scripts via the Common Gateway Interface to generate dynamic web content.

    C
    在 GitHub 上查看↗12,153
  • apache/tomcatapache 的头像

    apache/tomcat

    8,186在 GitHub 上查看↗

    Apache Tomcat is an open-source implementation of the Jakarta Servlet, Pages, Expression Language, and WebSocket specifications, serving as a container for running Java web applications. It provides a modular architecture with a servlet container, connector abstraction for multiple I/O models, and a pipeline-based request processing system that handles cross-cutting concerns through composable components. The server supports container-managed security with configurable realms for authentication against JDBC, LDAP, or memory-based credential stores, and offers TLS encryption with optional Open

    Executes external CGI programs and returns their output as HTTP responses.

    Javahttpjavajavaee
    在 GitHub 上查看↗8,186
  • webpy/webpywebpy 的头像

    webpy/webpy

    5,919在 GitHub 上查看↗

    web.py is a minimal Python web framework that provides the core components needed to build web applications: URL routing, template rendering, database access, form handling, and session management. The framework uses a convention-based approach where URL patterns are automatically mapped to handler classes based on their names, eliminating the need for manual route configuration. It exposes applications as WSGI callables, making them deployable with any WSGI-compliant server. The framework distinguishes itself through its metaclass-driven auto-discovery system, which automatically registers h

    Runs the application as a CGI script for platforms like Google App Engine.

    Python
    在 GitHub 上查看↗5,919
  • webmin/webminwebmin 的头像

    webmin/webmin

    5,595在 GitHub 上查看↗

    Webmin is a web-based administration interface for Unix systems. It provides a centralized console for managing the full range of server administration tasks — users and groups, software packages, storage, network configuration, system services, and security — all through a browser. Its modular architecture allows separate modules to handle databases (MySQL, MariaDB, PostgreSQL), web servers (Apache), DNS (BIND), email (Sendmail, Dovecot), file sharing (Samba, NFS), and more, with a unified access control system that restricts what each administrator can see and do. What sets Webmin apart is

    Uses CGI scripts to dynamically generate the HTML administration interface from user actions.

    HTML
    在 GitHub 上查看↗5,595
  • apache/httpdapache 的头像

    apache/httpd

    4,051在 GitHub 上查看↗

    这是一个 HTTP Web 服务器,可在各种操作系统上使用 HTTP/1.1 和 HTTP/2 协议向客户端交付 Web 内容。它可用作反向代理服务器、基于规则的 URL 重写器、SSL/TLS 终止网关和虚拟主机管理器。 该服务器能够通过将请求映射到特定的目录结构,在单个实例上托管多个不同的域名。它在服务器边界对网络流量进行加密和解密,以确保客户端与服务器之间的通信安全。此外,它还在定位资源之前,使用正则表达式引擎将请求的 URL 转换为不同的路径。 其广泛的功能包括静态网站托管以及通过服务器端脚本执行动态内容。该系统提供 Web 访问控制,可根据用户身份、认证规则或网络来源限制或授予对文件和目录的访问权限。它还通过将传入请求转发到后端服务器来管理流量。

    Produces dynamic content by executing external system scripts via the Common Gateway Interface (CGI).

    Chttpd
    在 GitHub 上查看↗4,051
  1. Home
  2. Web Development
  3. CGI Script Execution