承接 sytxlabs/filesanitizer 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

sytxlabs/filesanitizer

Composer 安装命令:

composer require sytxlabs/filesanitizer

包简介

A PHP library to sanitize file names and content to prevent security vulnerabilities.

README 文档

README

MIT Licensed Check code style Tests Latest Version on Packagist Total Downloads

Pure PHP file sanitizer and scanner for uploaded files. It strips metadata where practical, rewrites selected file types into safer forms, and detects suspicious or malicious content such as XSS-style payloads, risky embedded markup, active PDF content, and dangerous archive entries.

Features

  • Re-encodes supported image formats to remove metadata and ancillary chunks
  • Sanitizes HTML and SVG using strict policy-based cleanup
  • Scans PDFs for active content and applies best-effort cleanup
  • Scans OOXML documents for risky content such as macros, ActiveX, and external relationships
  • Recursively scans ZIP archives, including nested archives, with configurable safety limits
  • Scans audio files for suspicious embedded payloads and removes metadata where practical
  • Scans video files for suspicious embedded payloads and applies best-effort metadata cleanup
  • Supports sanitize-always mode for best-effort cleaning even when risky content is detected
  • Pure PHP implementation with no shell access, SSH, or external binaries required

Installation

composer require sytxlabs/filesanitizer

For development and tests:

composer install
composer test

Quick start

<?php

require __DIR__ . '/vendor/autoload.php';

use SytxLabs\FileSanitizer\FileSanitizer;

$sanitizer = new FileSanitizer();

$result = $sanitizer->process(__DIR__ . '/upload.svg');

if (!$result['scan']->safe) {
    foreach ($result['scan']->issues as $issue) {
        echo $issue->code . ': ' . $issue->message . PHP_EOL;
    }

    exit(1);
}

echo 'Sanitized file written to: ' . $result['sanitize']->outputPath . PHP_EOL;

String and base64 input

You can sanitize raw payloads directly without creating input files yourself.

<?php

use SytxLabs\FileSanitizer\FileSanitizer;

$sanitizer = new FileSanitizer();

$html = '<div onclick="x()"><script>alert(1)</script>ok</div>';
$result = $sanitizer->processString($html, 'upload.html', true);

echo $result['sanitizedData'];

processString() also accepts optional filenameHint and optional mimeType as the 2nd and 5th argument. If mimeType is null, FileSanitizer detects it from the payload data. It also supports Python-style bytes literal input like b"...\\xFF..." or b'...\\x00...'.

For raw binary bytes, use processBinary():

<?php

use SytxLabs\FileSanitizer\FileSanitizer;

$sanitizer = new FileSanitizer();
$bytes = file_get_contents('php://input');
$result = $sanitizer->processBinary($bytes, null, null, true, null);

For base64 payloads (including data:*;base64,... input):

<?php

use SytxLabs\FileSanitizer\FileSanitizer;

$sanitizer = new FileSanitizer();

$payload = 'data:image/svg+xml;base64,' . base64_encode('<svg><script>alert(1)</script></svg>');
$result = $sanitizer->processBase64($payload, 'upload.svg', true);

echo $result['sanitizedBase64'];

processBase64() also accepts optional filenameHint and optional mimeType as the 2nd and 5th argument. If mimeType is null, it first uses Data-URI MIME (if present), otherwise detects from decoded data.

sanitizeAlways mode

When sanitizeAlways is enabled, FileSanitizer will attempt best-effort sanitization even if risky content is detected during scanning.

This is useful when you want to:

  • always strip metadata where possible
  • always rewrite supported files where possible
  • keep findings for review without immediately rejecting the upload
<?php

use SytxLabs\FileSanitizer\FileSanitizer;

$sanitizer = new FileSanitizer();

$result = $sanitizer->process(__DIR__ . '/upload.pdf', null, true);

Best-effort sanitization does not guarantee a full structural rebuild for complex formats such as PDF, audio, or video containers.

Supported file types

FileSanitizer currently supports scanning and/or sanitizing the following file types.

  • Images
    • JPEG
    • PNG
    • GIF
    • WebP
  • Documents and markup
    • HTML
    • SVG
    • PDF
    • TXT and text-like files
    • DOCX
    • XLSX
    • PPTX
  • Archives
    • ZIP
    • Nested ZIP archives
  • Audio
    • MP3
    • WAV
    • OGG
    • FLAC
    • M4A
    • AAC
  • Video
    • MP4
    • MOV
    • WebM
    • MKV
    • AVI

How it works

FileSanitizer combines format-aware scanning with best-effort sanitization.

Scanning

The scanner looks for suspicious patterns and risky structures such as:

  • inline JavaScript-style payloads
  • dangerous HTML or SVG constructs
  • active PDF actions
  • suspicious archive paths and nested archive abuse
  • risky embedded strings in audio and video containers
  • macros, ActiveX, and external relationships in OOXML files

Sanitizing

Supported sanitizers attempt to reduce risk by:

  • re-encoding images
  • removing unsafe HTML and SVG elements and attributes
  • stripping metadata where practical
  • rewriting selected file formats into safer forms
  • applying best-effort cleanup to complex containers

Archive scanning

ZIP scanning is recursive and designed to detect suspicious content without using shell extraction.

Current guards:

  • maximum nesting depth: 3
  • maximum scanned entries per archive: 1000
  • maximum expanded bytes scanned: 25 MB
  • suspicious path detection for entries such as ../evil.txt or absolute paths

HTML and SVG policy

HTML and SVG sanitization is policy-based and removes risky constructs instead of relying on simple tag stripping.

Highlights:

  • removes script, iframe, object, embed, form, and other disallowed elements
  • removes all on* event handlers
  • removes javascript:, vbscript:, file:, and unsafe data: URLs
  • removes hostile CSS such as expression(), @import, url(), behavior:, and -moz-binding
  • removes SVG active content such as script, foreignObject, animation elements, external media, image, and use

Audio support

FileSanitizer includes best-effort support for common audio formats.

What it does

  • Detects suspicious embedded payloads such as:

    • <script
    • javascript:
    • inline event handler patterns like onclick=
    • <iframe
    • data:text/html
    • embedded PHP tags
  • Removes metadata where practical:

    • MP3: ID3v1 and ID3v2 tags
    • WAV: selected metadata chunks such as LIST, INFO, and ID3
    • OGG, FLAC, M4A, and AAC: conservative best-effort textual payload cleanup

Notes

Audio sanitization is best-effort and does not transcode or fully rebuild complex media containers. No shell tools, SSH access, or external binaries are required.

Video support

FileSanitizer includes best-effort support for common video containers.

What it does

  • Detects suspicious embedded payloads such as:

    • <script
    • javascript:
    • inline event handler patterns like onload=
    • <iframe
    • data:text/html
    • embedded PHP tags
  • Applies conservative container cleanup where practical:

    • MP4 and MOV: attempts to remove selected metadata atoms such as udta, meta, and ilst
    • AVI: removes selected metadata chunks such as INFO, JUNK, and IDIT
    • WebM and MKV: applies conservative best-effort textual payload cleanup

Notes

Video sanitization is best-effort and does not transcode or fully rebuild media containers. Without external tools such as FFmpeg, full structural video rewriting is intentionally out of scope.

Test coverage

Included PHPUnit coverage exercises:

  • nested ZIP detection
  • path traversal detection inside ZIPs
  • HTML sanitization rules
  • SVG sanitization rules
  • PDF action detection
  • audio metadata stripping
  • video file scanning for embedded payloads and metadata stripping

Limitations

FileSanitizer is a pure PHP package focused on safe, practical, best-effort sanitization.

Important limitations

  • PDF sanitization is a best-effort and not a full PDF rebuild
  • OOXML files are scanned for risky content but are not fully rewritten
  • audio sanitization removes metadata where practical but does not transcode files
  • video sanitization is best-effort and does not perform full re-encoding or container rebuilding
  • complex media formats may still require deeper inspection in high-security environments

sytxlabs/filesanitizer 适用场景与选型建议

sytxlabs/filesanitizer 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.16k 次下载、GitHub Stars 达 1, 最近一次更新时间为 2026 年 03 月 16 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「security」 「PHP Library」 「file sanitization」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 sytxlabs/filesanitizer 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 sytxlabs/filesanitizer 我们能提供哪些服务?
定制开发 / 二次开发

基于 sytxlabs/filesanitizer 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 1.16k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 1
  • 点击次数: 19
  • 依赖项目数: 1
  • 推荐数: 0

GitHub 信息

  • Stars: 1
  • Watchers: 0
  • Forks: 1
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2026-03-16