Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 632
Enhancement: Enable and configure header_comment fixer#671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| <?php | ||
| // Simulate a /backend shortcut call (which will lead to a manual page) | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| $_SERVER['REQUEST_URI'] = '/backend'; | ||
| include_once __DIR__ . '/../include/prepend.inc'; | ||
| include_once __DIR__ . '/../error.php'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| <?php | ||
| // Simulate a /bin shortcut call (which will lead to a manual page) | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| $_SERVER['REQUEST_URI'] = '/bin'; | ||
| include_once __DIR__ . '/../include/prepend.inc'; | ||
| include_once __DIR__ . '/../error.php'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,11 @@ | ||
| <?php | ||
| /* | ||
| Yes, we know this can be used to view the source for any file | ||
ContributorAuthor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Probably makes sense to keep these, but move them. | ||
| in the docroot directory. This is intentional and not an LFI | ||
| vulnerability. The source code for everything in the docroot | ||
| is publicly available at | ||
| https://github.com/php/web-php | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| so there is no vulnerability here. You can't use this to view | ||
| anything that is private. | ||
| */ | ||
| $_SERVER['BASE_PAGE'] = 'cached.php'; | ||
| include_once 'include/prepend.inc'; | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| <?php | ||
| // Simulate a /images shortcut call (which will lead to a manual page) | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| $_SERVER['REQUEST_URI'] = '/images'; | ||
| include_once __DIR__ . '/../include/prepend.inc'; | ||
| include_once __DIR__ . '/../error.php'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,11 @@ | ||
| <?php | ||
| // Simulate a /include shortcut call (which will lead to a manual page) | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| $_SERVER['REQUEST_URI'] = '/include'; | ||
| include_once __DIR__ . '/prepend.inc'; | ||
| include_once __DIR__ . '/../error.php'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,10 @@ | ||
| <?php // -*- C++ -*- | ||
| <?php | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| /* | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,10 @@ | ||
| <?php // -*- C++ -*- | ||
| <?php | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| /* | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,11 @@ | ||
| <?php | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| $OLDRELEASES = array ( | ||
| 8 => | ||
| array ( | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,10 @@ | ||
| <?php // -*- C++ -*- | ||
| <?php | ||
| /** | ||
| * Any ideas? | ||
| * | ||
| * @see https://github.com/php/web-php | ||
| */ | ||
| /* | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
❗