Issues (569)

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/Task/File/Replace.php (2 issues)

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
namespace Robo\Task\File;
4
5
use Robo\Result;
6
use Robo\Task\BaseTask;
7
8
/**
9
 * Performs search and replace inside a file.
10
 *
11
 * ``` php
12
 * <?php
13
 * $this->taskReplaceInFile('VERSION')
14
 *  ->from('0.2.0')
15
 *  ->to('0.3.0')
16
 *  ->run();
17
 *
18
 * $this->taskReplaceInFile('README.md')
19
 *  ->from(date('Y')-1)
20
 *  ->to(date('Y'))
21
 *  ->run();
22
 *
23
 * $this->taskReplaceInFile('config.yml')
24
 *  ->regex('~^service:~')
25
 *  ->to('services:')
26
 *  ->run();
27
 *
28
 * $this->taskReplaceInFile('box/robo.txt')
29
 *  ->from(array('##dbname##', '##dbhost##'))
30
 *  ->to(array('robo', 'localhost'))
31
 *  ->run();
32
 * ?>
33
 * ```
34
 */
35
class Replace extends BaseTask
36
{
37
    /**
38
     * @var string
39
     */
40
    protected $filename;
41
42
    /**
43
     * @var string|string[]
44
     */
45
    protected $from;
46
47
    /**
48
     * @var integer
49
     */
50
    protected $limit = -1;
51
52
    /**
53
     * @var string|string[]
54
     */
55
    protected $to;
56
57
    /**
58
     * @var string
59
     */
60
    protected $regex;
61
62
    /**
63
     * @param string $filename
64
     */
65
    public function __construct($filename)
66
    {
67
        $this->filename = $filename;
68
    }
69
70
    /**
71
     * @param string $filename
72
     *
73
     * @return $this
74
     */
75
    public function filename($filename)
76
    {
77
        $this->filename = $filename;
78
        return $this;
79
    }
80
81
    /**
82
     * String(s) to be replaced.
83
     *
84
     * @param string|string[] $from
85
     *
86
     * @return $this
87
     */
88
    public function from($from)
89
    {
90
        $this->from = $from;
91
        return $this;
92
    }
93
94
    /**
95
     * Value(s) to be set as a replacement.
96
     *
97
     * @param string|string[] $to
98
     *
99
     * @return $this
100
     */
101
    public function to($to)
102
    {
103
        $this->to = $to;
104
        return $this;
105
    }
106
107
    /**
108
     * Regex to match string to be replaced.
109
     *
110
     * @param string $regex
111
     *
112
     * @return $this
113
     */
114
    public function regex($regex)
115
    {
116
        $this->regex = $regex;
117
        return $this;
118
    }
119
120
    /**
121
     * If used with $this->regexp() how many counts will be replaced
122
     *
123
     * @param int $limit
124
     *
125
     * @return $this
126
     */
127
    public function limit($limit)
128
    {
129
        $this->limit = $limit;
130
        return $this;
131
    }
132
133
    /**
134
     * {@inheritdoc}
135
     */
136
    public function run()
137
    {
138 View Code Duplication
        if (!file_exists($this->filename)) {
0 ignored issues
show
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
139
            $this->printTaskError('File {filename} does not exist', ['filename' => $this->filename]);
140
            return false;
0 ignored issues
show
Bug Best Practice introduced by
The return type of return false; (false) is incompatible with the return type declared by the interface Robo\Contract\TaskInterface::run of type Robo\Result.

If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.

Let’s take a look at an example:

class Author {
    private $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}

abstract class Post {
    public function getAuthor() {
        return 'Johannes';
    }
}

class BlogPost extends Post {
    public function getAuthor() {
        return new Author('Johannes');
    }
}

class ForumPost extends Post { /* ... */ }

function my_function(Post $post) {
    echo strtoupper($post->getAuthor());
}

Our function my_function expects a Post object, and outputs the author of the post. The base class Post returns a simple string and outputting a simple string will work just fine. However, the child class BlogPost which is a sub-type of Post instead decided to return an object, and is therefore violating the SOLID principles. If a BlogPost were passed to my_function, PHP would not complain, but ultimately fail when executing the strtoupper call in its body.

Loading history...
141
        }
142
143
        $text = file_get_contents($this->filename);
144
        if ($this->regex) {
145
            $text = preg_replace($this->regex, $this->to, $text, $this->limit, $count);
146
        } else {
147
            $text = str_replace($this->from, $this->to, $text, $count);
148
        }
149
        if ($count > 0) {
150
            $res = file_put_contents($this->filename, $text);
151
            if ($res === false) {
152
                return Result::error($this, "Error writing to file {filename}.", ['filename' => $this->filename]);
153
            }
154
            $this->printTaskSuccess("{filename} updated. {count} items replaced", ['filename' => $this->filename, 'count' => $count]);
155
        } else {
156
            $this->printTaskInfo("{filename} unchanged. {count} items replaced", ['filename' => $this->filename, 'count' => $count]);
157
        }
158
        return Result::success($this, '', ['replaced' => $count]);
159
    }
160
}
161