File tree Expand file tree Collapse file tree 5 files changed +163
-97
lines changed Expand file tree Collapse file tree 5 files changed +163
-97
lines changed Original file line number Diff line number Diff line change 11# PostgreSQL MCP Server - Enhanced
22
3- Last Updated October 18 , 2025 8:59 PM EST Production/Stable v1.1.1
3+ Last Updated October 27 , 2025 - Production/Stable v1.1.1
44
55<!-- mcp-name: io.github.neverinfamous/postgres-mcp-server -->
66
Original file line number Diff line number Diff line change @@ -39,6 +39,9 @@ RUN apt-get update && apt-get install -y \
3939 && rm -rf /var/lib/apt/lists/* \
4040 && apt-get clean
4141
42+ # Security: Upgrade pip to fix CVE-2025-8869
43+ RUN pip install --no-cache-dir --upgrade pip>=25.3
44+
4245COPY --from=builder --chown=app:app /app /app
4346COPY --chown=app:app docker-entrypoint.sh /app/
4447RUN chmod +x /app/docker-entrypoint.sh
Original file line number Diff line number Diff line change 11# PostgreSQL MCP Server - Version 1.1.1
22
3- Last Updated October 18 , 2025 8:59 PM EST - Production/Stable v1.1.1
3+ Last Updated October 27 , 2025 - Production/Stable v1.1.1
44
55<!-- mcp-name: io.github.neverinfamous/postgres-mcp-server -->
66
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ dependencies = [
1414 " instructor>=1.7.9" ,
1515 " h11>=0.16.0" ,
1616 " setuptools>=78.1.1" ,
17+ # Security: Force updated versions to fix CVEs
18+ " starlette>=0.49.1" , # CVE-2025-62727, CVE-2025-54121
19+ " urllib3>=2.5.0" , # CVE-2025-50181, CVE-2025-50182
20+ " requests>=2.32.4" , # CVE-2024-47081
21+ " aiohttp>=3.12.14" , # CVE-2025-53643
1722]
1823license = " mit"
1924license-files = [" LICENSE" ]
You can’t perform that action at this time.
0 commit comments