Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Hold on, we're currently generating a fresh version of this report
Generated on May 20, 2024 via composer

symfony/web-profiler-bundle v2.8.29

Symfony WebProfilerBundle
Package summary
Share
4
issues
4
high severity
vulnerability
3
meta
1
2
licenses
12
MIT
1
BSD-3-Clause
Package created
18 Nov 2011
Version published
5 Nov 2017
Maintainers
1
Total deps
13
Direct deps
4
License
MIT

Issues

4

4 high severity issues

high
via: symfony/http-kernel@v3.0.9
via: symfony/http-kernel@v3.0.9
via: symfony/twig-bridge@v3.0.9
via: symfony/http-kernel@v3.0.9
Collapse
Expand

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
12 Packages, Including:
psr/log@1.1.4
symfony/debug@v3.4.47
symfony/event-dispatcher@v3.4.47
symfony/http-foundation@v3.4.47
symfony/http-kernel@v3.0.9
symfony/polyfill-ctype@v1.29.0
symfony/polyfill-mbstring@v1.29.0
symfony/polyfill-php70@v1.20.0
symfony/polyfill-php72@v1.29.0
symfony/routing@v3.0.9
symfony/twig-bridge@v3.0.9
symfony/web-profiler-bundle@v2.8.29

BSD 3-Clause "New" or "Revised" License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
place-warranty
Cannot
use-trademark
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
twig/twig@v2.16.0
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

4
All Dependencies CSV
β“˜ This is a list of symfony/web-profiler-bundle 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities
symfony/http-kernelv3.0.9-MIT
prod dev
3
symfony/routingv3.0.9-MIT
prod dev
symfony/twig-bridgev3.0.9-MIT
prod
1
twig/twigv2.16.0275.82 kBBSD-3-Clause
prod

Visualizations

Frequently Asked Questions

What does symfony/web-profiler-bundle do?

The symfony/web-profiler-bundle is a development tool that offers detailed insights regarding the execution of any request. It provides insights helpful in diagnosing, debugging, and optimizing your application. However, it should never be enabled on production servers as it can create major security vulnerabilities in the project.

How do you use symfony/web-profiler-bundle?

To integrate the symfony/web-profiler-bundle into your project, you need to include it in your project using composer. You can do so via the following command:

composer require --dev symfony/web-profiler-bundle

After the successful installation of the bundle, you need to enable the bundle for the dev and test environments. In the config/bundles.php file, ensure the bundle is activated for these environments:

return [
    // ...
    Symfony\Bundle\WebProfilerBundle\WebProfilerBundle::class => ['dev' => true,'test'=>true],
    // ...
];

Then you need to import the routing configuration in your config/routes/dev/web_profiler.yaml:

web_profiler_wdt:
    resource: '@WebProfilerBundle/Resources/config/routing/wdt.xml'
    prefix:   /_wdt

web_profiler_profiler:
    resource: '@WebProfilerBundle/Resources/config/routing/profiler.xml'
    prefix:   /_profiler

The WebProfilerBundle's UI is accessible in the browser at path /_profiler.

Where are the symfony/web-profiler-bundle docs?

The symfony/web-profiler-bundle documentation is in the Symfony repository. You can find detailed information regarding the use, suggestions, and issues in this bundle by clicking here. Also, you can report any issues or send pull requests in the main Symfony repository.