Issues (3)

Security Analysis    not enabled

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

src/MissingUrlsRedirector.php (1 issue)

Severity

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
declare(strict_types=1);
4
5
namespace Arcanedev\MissingUrlsRedirector;
6
7
use Arcanedev\MissingUrlsRedirector\Contracts\{RedirectorManager, RedirectorProvider};
8
use Arcanedev\MissingUrlsRedirector\Entities\{Redirection, RedirectionCollection};
9
use Arcanedev\MissingUrlsRedirector\Events\RedirectionNotFound;
10
use Arcanedev\MissingUrlsRedirector\Helpers\RouteMaker;
11
use Illuminate\Http\{Request, Response};
12
use Illuminate\Support\Arr;
13
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
14
15
/**
16
 * Class     MissingUrlsRedirector
17
 *
18
 * @package  Arcanedev\MissingUrlsRedirector
19
 * @author   ARCANEDEV <[email protected]>
20
 */
21
class MissingUrlsRedirector implements RedirectorManager
22
{
23
    /* -----------------------------------------------------------------
24
     |  Properties
25
     | -----------------------------------------------------------------
26
     */
27
28
    /** @var  \Arcanedev\MissingUrlsRedirector\Contracts\RedirectorProvider|mixed */
29
    protected $redirector;
30
31
    /**
32
     * @var \Arcanedev\MissingUrlsRedirector\Entities\RedirectionCollection
33
     */
34
    protected $redirections;
35
36
    /* -----------------------------------------------------------------
37
     |  Constructor
38
     | -----------------------------------------------------------------
39
     */
40
41
    /**
42
     * RedirectionManager constructor.
43
     *
44
     * @param  \Arcanedev\MissingUrlsRedirector\Contracts\RedirectorProvider  $redirector
45
     */
46 120
    public function __construct(RedirectorProvider $redirector)
47
    {
48 120
        $this->setRedirector($redirector);
49 120
        $this->setRedirections(new RedirectionCollection);
50 120
    }
51
52
    /* -----------------------------------------------------------------
53
     |  Getters & Setters
54
     | -----------------------------------------------------------------
55
     */
56
57
    /**
58
     * Get the redirections.
59
     *
60
     * @return \Arcanedev\MissingUrlsRedirector\Entities\RedirectionCollection
61
     */
62 96
    public function getRedirections(): RedirectionCollection
63
    {
64 96
        return $this->redirections;
65
    }
66
67
    /**
68
     * Set the redirections.
69
     *
70
     * @param  \Arcanedev\MissingUrlsRedirector\Entities\RedirectionCollection  $redirections
71
     *
72
     * @return $this
73
     */
74 120
    public function setRedirections(RedirectionCollection $redirections): self
75
    {
76 120
        $this->redirections = $redirections;
77
78 120
        return $this;
79
    }
80
81
    /**
82
     * Get the redirected status codes.
83
     *
84
     * @return array|null
85
     */
86 90
    public function getRedirectedStatusCodes(): ?array
87
    {
88 90
        return $this->getRedirector()->statusCodes();
89
    }
90
91
    /**
92
     * Get the redirector.
93
     *
94
     * @param  \Arcanedev\MissingUrlsRedirector\Contracts\RedirectorProvider|mixed  $redirector
95
     *
96
     * @return $this
97
     */
98 120
    public function setRedirector(RedirectorProvider $redirector): self
99
    {
100 120
        $this->redirector = $redirector;
101
102 120
        return $this;
103
    }
104
105
    /**
106
     * Get the redirector.
107
     *
108
     * @return \Arcanedev\MissingUrlsRedirector\Contracts\RedirectorProvider|mixed
109
     */
110 90
    protected function getRedirector(): RedirectorProvider
111
    {
112 90
        return $this->redirector;
113
    }
114
115
    /* -----------------------------------------------------------------
116
     |  Main Methods
117
     | -----------------------------------------------------------------
118
     */
119
120
    /**
121
     * Register a redirection.
122
     *
123
     * @param  iterable|string  $from
124
     * @param  string           $to
125
     * @param  int              $status
126
     *
127
     * @return $this
128
     */
129 72
    public function register($from, string $to, int $status = Response::HTTP_MOVED_PERMANENTLY): self
130
    {
131 72
        if (is_string($from)) {
132 60
            $this->getRedirections()->addOne($from, $to, $status);
133
        }
134
135 72
        if (is_iterable($from)) {
136 12
            $this->getRedirections()->addMany($from, $to, $status);
137
        }
138
139 72
        return $this;
140
    }
141
142
    /**
143
     * Register a redirection (entity).
144
     *
145
     * @param  \Arcanedev\MissingUrlsRedirector\Entities\Redirection  $redirection
146
     *
147
     * @return $this
148
     */
149 12
    public function registerRedirection(Redirection $redirection)
150
    {
151 12
        $this->getRedirections()->addRedirection($redirection);
152
153 12
        return $this;
154
    }
155
156
    /**
157
     * Get the redirection for the given request.
158
     *
159
     * @param  \Illuminate\Http\Request  $request
160
     *
161
     * @return \Illuminate\Http\Response|null
162
     */
163 66
    public function getRedirectionFor(Request $request)
164
    {
165 66
        $this->loadRedirections(
166 66
            $this->getRedirector()->redirectionsFor($request)
167
        );
168
169 66
        $routes = RouteMaker::makeCollection($this->getRedirections());
170
171
        try {
172 66
            return $routes->match($request)->run();
173
        }
174 6
        catch (NotFoundHttpException $e) {
175 6
            event(new RedirectionNotFound($request));
176
        }
177
178 6
        return null;
179
    }
180
181
    /**
182
     * Load the redirections collection.
183
     *
184
     * @param  \Arcanedev\MissingUrlsRedirector\Entities\Redirection[]|array  $redirections
185
     *
186
     * @return $this
187
     */
188 66
    private function loadRedirections(array $redirections): self
189
    {
190 66
        foreach ($redirections as $from => $redirection) {
191 60
            if ($redirection instanceof Redirection)
192 12
                $this->registerRedirection($redirection);
193
            else
194 48
                $this->register($from, ...Arr::wrap($redirection));
0 ignored issues
show
\Illuminate\Support\Arr::wrap($redirection) is of type array, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
195
        }
196
197 66
        return $this;
198
    }
199
}
200