joshavg / OmgDb

GNU General Public License v2.0
0 stars 0 forks source link

[Insight] Files should not be executable #16

Closed joshavg closed 8 years ago

joshavg commented 8 years ago

Your project contains files with permissive permissions. In order to avoid opening a security breach, you should restrict execution rights on following files:

  • src/AppBundle/Entity/Attribute.php
  • src/AppBundle/Entity/AttributeDataType.php
  • src/AppBundle/Entity/AttributeRepository.php
  • src/AppBundle/Entity/Schema.php
  • src/AppBundle/Form/FormDefinition.php
  • src/AppBundle/Form/Type/AttributeType.php
chmod a-x 'src/AppBundle/Entity/Attribute.php' \
    'src/AppBundle/Entity/AttributeDataType.php' \
    'src/AppBundle/Entity/AttributeRepository.php' \
    'src/AppBundle/Entity/Schema.php' \
    'src/AppBundle/Form/FormDefinition.php' \
    'src/AppBundle/Form/Type/AttributeType.php'

Posted from SensioLabsInsight