PHPackages                             sau/tissue-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Security](/categories/security)
4. /
5. sau/tissue-bundle

ActiveSymfony-bundle[Security](/categories/security)

sau/tissue-bundle
=================

Slight variation of the original cleentfaar/CLTissueBundle and evozon-php/tissue-bundle

1.0.2(5y ago)080proprietaryPHPPHP &gt;=7.1

Since Nov 20Pushed 5y ago1 watchersCompare

[ Source](https://github.com/AkinaySau/tissue-bundle)[ Packagist](https://packagist.org/packages/sau/tissue-bundle)[ Docs](https://github.com/AkinaySau)[ RSS](/packages/sau-tissue-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (8)Versions (4)Used By (0)

TissueBundle [![License](https://camo.githubusercontent.com/b033e7a68e7fd72f3d578c4f54e7092317895b8eb88071c7e101e7aa48709391/68747470733a2f2f706f7365722e707567782e6f72672f636c65656e74666161722f7469737375652d62756e646c652f6c6963656e73652e737667)](https://packagist.org/packages/cleentfaar/tissue-bundle)
==============================================================================================================================================================================================================================================================================================================

[](#tissuebundle-)

A Symfony bundle that can scan your files for viruses using the [Tissue](https://github.com/cleentfaar/tissue) library and adapters. Uses the `ClamAV` engine by default.

[![Build Status](https://camo.githubusercontent.com/8be133d68333dd02e0946eac424d9e99712f2b0b2cf317a004a67a2b66ab4cdd/68747470733a2f2f7365637572652e7472617669732d63692e6f72672f636c65656e74666161722f434c54697373756542756e646c652e737667)](http://travis-ci.org/cleentfaar/CLTissueBundle)[![Scrutinizer Code Quality](https://camo.githubusercontent.com/562aacc78bb024124a3343061d8c8457a264848bce6dc2829453bde5183dbf38/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f636c65656e74666161722f434c54697373756542756e646c652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/cleentfaar/CLTissueBundle/?branch=master)[![Code Coverage](https://camo.githubusercontent.com/6178021d4e37f1c85769fb046837905c7028d3b28e165b7ad3bd8fd9e71b05af/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f636c65656e74666161722f434c54697373756542756e646c652f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/cleentfaar/CLTissueBundle/?branch=master)
[![Latest Stable Version](https://camo.githubusercontent.com/af367d940c23ad08ea22775db8e937d509bcde88d3990313ef8d5f55173ae2c5/68747470733a2f2f706f7365722e707567782e6f72672f636c65656e74666161722f7469737375652d62756e646c652f762f737461626c652e737667)](https://packagist.org/packages/cleentfaar/tissue-bundle)[![Total Downloads](https://camo.githubusercontent.com/8d4ad4f3e5a8d705b8d3d5b2ce4bfc4c27f71741bda0918c6bcc604bdefff029/68747470733a2f2f706f7365722e707567782e6f72672f636c65656e74666161722f7469737375652d62756e646c652f646f776e6c6f6164732e737667)](https://packagist.org/packages/cleentfaar/tissue-bundle)[![Latest Unstable Version](https://camo.githubusercontent.com/6bb10e36ee123a539c73881a4f66d52bec7d71ebb6021fd2ce6b558901161a68/68747470733a2f2f706f7365722e707567782e6f72672f636c65656e74666161722f7469737375652d62756e646c652f762f756e737461626c652e737667)](https://packagist.org/packages/cleentfaar/tissue-bundle)

### Features

[](#features)

- Scan uploaded files during validation (using the `CleanFile` constraint).
- Scan files during a batch process (simply using the `cl_tissue.scanner`-service).
- Uses the [Tissue](https://github.com/cleentfaar/tissue) library and it's `ClamAV` adapter, but you can use your own virus-scanning engine by adding your own adapter service and tagging it with `cl_tissue.adapter`(check out the [installation documentation](Resources/doc/installation.md) for more information).

### Quick example

[](#quick-example)

...pictures say more than a thousand words right?

##### 1. You have a file-upload form...

[](#1-you-have-a-file-upload-form)

[![1. You have a file-upload form...](Resources/doc/screens/upload1.png)](Resources/doc/screens/upload1.png)

##### 3. Someone tries to upload an infected file...

[](#3-someone-tries-to-upload-an-infected-file)

[![2. Someone tries to upload an infected file...](Resources/doc/screens/upload2.png)](Resources/doc/screens/upload2.png)

##### 3. The infected file gets rejected...

[](#3-the-infected-file-gets-rejected)

[![3. The infected file gets rejected...](Resources/doc/screens/upload3.png)](Resources/doc/screens/upload3.png)

Please be sure to read the [usage documentation](Resources/doc/usage.md) if you are planning on actually using this bundle!

### Documentation

[](#documentation)

- [Installation](Resources/doc/installation.md)
- [Usage](Resources/doc/usage.md)

### WARNING

[](#warning)

**I highly recommend you to research the security issues involved before using any of these packages on a production server!**

Although following the steps described in the documentation should be enough to keep most evil-doers from uploading infected files to your forms, I can never give any 100% guarantee! You should take care in keeping your virus-scanner's signature database up-to-date, otherwise new viruses may get through. You should also keep in mind that there are many more ways to abuse uploads than just uploading an infected file!

**Make sure your application cannot be manipulated to execute any of the uploaded files! Not even those deemed 'clean'!**

For instance, if you were to keep files available on your web-directory after they have been uploaded, you better make sure that there is **NO CHANCE** that the file may get executed by your application in one way or another.

A malicious user could simply upload a piece of PHP-code (no virus!) that will open your application up to a huge range of leaks. Again, that's just one of the reasons that you should not solely rely on this package protecting your site!

Read up on this subject before opening up your application to possible security leaks! **I am not responsible for any damage done to your server or application while using this package!**

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 66.7% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~437 days

Total

3

Last Release

1860d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/aebf20696c0962e374ef4d391c179f1ea6c20cf9d4107216ff578bf05ca15b9a?d=identicon)[Sau](/maintainers/Sau)

---

Top Contributors

[![frozenminds](https://avatars.githubusercontent.com/u/59042?v=4)](https://github.com/frozenminds "frozenminds (2 commits)")[![balazscsaba2006](https://avatars.githubusercontent.com/u/1202594?v=4)](https://github.com/balazscsaba2006 "balazscsaba2006 (1 commits)")

---

Tags

securityvirusclamavanti virustissue

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/sau-tissue-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/sau-tissue-bundle/health.svg)](https://phpackages.com/packages/sau-tissue-bundle)
```

###  Alternatives

[sylius/sylius

E-Commerce platform for PHP, based on Symfony framework.

8.4k5.6M651](/packages/sylius-sylius)[shopware/platform

The Shopware e-commerce core

3.3k1.5M3](/packages/shopware-platform)[prestashop/prestashop

PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.

9.0k15.4k](/packages/prestashop-prestashop)[contao/core-bundle

Contao Open Source CMS

1231.6M2.4k](/packages/contao-core-bundle)[shopware/core

Shopware platform is the core for all Shopware ecommerce products.

595.2M386](/packages/shopware-core)[ec-cube/ec-cube

EC-CUBE EC open platform.

78527.0k1](/packages/ec-cube-ec-cube)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
