Issues (27)

Security Analysis    no request data  

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/Hipchat/Worker.php (3 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 Messenger\Hipchat;
4
5
use Cronario\AbstractJob;
6
use Cronario\AbstractWorker;
7
8
/**
9
 * Class Worker
10
 *
11
 * @package Messenger\Sms\Alpha
12
 */
13
class Worker extends AbstractWorker
14
{
15
16
    // region VALIDATE ********************************************************
17
18
    /**
19
     * @param Job $job
20
     *
21
     * @throws ResultException
22
     */
23 2
    protected function validateJobParams(Job $job)
24
    {
25 2
        if (empty($job->getToken())) {
26 1
            throw new ResultException(ResultException::ERROR_PARAM_TOKEN);
27
        }
28
29 2
        if (empty($job->getRoom())) {
30 1
            throw new ResultException(ResultException::ERROR_PARAM_ROOM);
31
        }
32
33 2
        if (empty($job->getFrom())) {
34 1
            throw new ResultException(ResultException::ERROR_PARAM_FROM);
35
        }
36
37 2
        if (empty($job->getMsg())) {
38 1
            throw new ResultException(ResultException::ERROR_PARAM_MSG);
39
        }
40
41 1
    }
42
43
    // endregion *************************************************************
44
45
    /**
46
     * @param $token
47
     *
48
     * @return \HipChat\HipChat
49
     */
50 1
    public function getTransport($token)
51
    {
52 1
        return new \HipChat\HipChat($token);
53
    }
54
55
    /**
56
     * @param Job $job
57
     *
58
     * @return bool
59
     */
60 1
    protected function sendMessage(Job $job)
61
    {
62
        // prepare transport
63 1
        $transport = $this->getTransport($job->getToken());
64
65
        // Send message
66 1
        $response = $transport->message_room(
67 1
            $job->getRoom(),
68 1
            $job->getFrom(),
69 1
            $job->getMsg(),
70 1
            false,
71 1
            $job->getColour() ?: \HipChat\HipChat::COLOR_YELLOW,
72 1
            $job->getFormat() ?: \HipChat\HipChat::FORMAT_TEXT
73 1
        );
74
75 1
        return $response;
76
    }
77
78
    /**
79
     * @param AbstractJob|Job $job
80
     *
81
     * @throws ResultException
82
     */
83 2
    protected function doJob(AbstractJob $job)
84
    {
85 2
        $this->validateJobParams($job);
0 ignored issues
show
$job of type object<Cronario\AbstractJob> is not a sub-type of object<Messenger\Hipchat\Job>. It seems like you assume a child class of the class Cronario\AbstractJob to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
86
87
        try {
88 1
            $resultData['response'] = $this->sendMessage($job);
0 ignored issues
show
Coding Style Comprehensibility introduced by
$resultData was never initialized. Although not strictly required by PHP, it is generally a good practice to add $resultData = array(); before regardless.

Adding an explicit array definition is generally preferable to implicit array definition as it guarantees a stable state of the code.

Let’s take a look at an example:

foreach ($collection as $item) {
    $myArray['foo'] = $item->getFoo();

    if ($item->hasBar()) {
        $myArray['bar'] = $item->getBar();
    }

    // do something with $myArray
}

As you can see in this example, the array $myArray is initialized the first time when the foreach loop is entered. You can also see that the value of the bar key is only written conditionally; thus, its value might result from a previous iteration.

This might or might not be intended. To make your intention clear, your code more readible and to avoid accidental bugs, we recommend to add an explicit initialization $myArray = array() either outside or inside the foreach loop.

Loading history...
$job of type object<Cronario\AbstractJob> is not a sub-type of object<Messenger\Hipchat\Job>. It seems like you assume a child class of the class Cronario\AbstractJob to be always present.

This check looks for parameters that are defined as one type in their type hint or doc comment but seem to be used as a narrower type, i.e an implementation of an interface or a subclass.

Consider changing the type of the parameter or doing an instanceof check before assuming your parameter is of the expected type.

Loading history...
89 1
        } catch (\Exception $ex) {
90
            throw new ResultException(ResultException::ERROR_TRANSPORT);
91
        }
92
93 1
        throw new ResultException(ResultException::R_SUCCESS, $resultData);
94
    }
95
}