Issues (17)

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/authentication/JwtServiceAccountFactory.php (3 issues)

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
namespace Audiens\DoubleclickClient\authentication;
4
5
use Audiens\DoubleclickClient\entity\ServiceAccount;
6
use Lcobucci\JWT\Builder;
7
use Lcobucci\JWT\Signer\Rsa\Sha256;
8
use Lcobucci\JWT\Token;
9
10
class JwtServiceAccountFactory implements JwtFactoryInterface
11
{
12
13
    public const SCOPE = 'https://ddp.googleapis.com/api/ddp/';
14
15
    /** @var ServiceAccount */
16
    protected $serviceAccount;
17
18
    public function __construct(ServiceAccount $serviceAccount)
19
    {
20
        $this->serviceAccount = $serviceAccount;
21
    }
22
23
    /**
24
     * iss      The email address of the service account.
25
     * scope    A space-delimited list of the permissions that the application requests.
26
     * aud      A descriptor of the intended target of the assertion. When making an access token request this value is
27
     * sub      the user to impersonate as there should be a domain wide auth
28
     * always   https://www.googleapis.com/oauth2/v4/token. exp    The expiration time of the assertion, specified as
29
     * seconds  since 00:00:00 UTC, January 1, 1970. This value has a maximum of 1 hour after the issued time. iat
30
     * The time the assertion was issued, specified as seconds since 00:00:00 UTC, January 1, 1970.
31
     *
32
     * @return \Lcobucci\JWT\Token
33
     */
34
    public function build(): Token
35
    {
36
        return (new Builder())
0 ignored issues
show
Deprecated Code introduced by
The method Lcobucci\JWT\Builder::setIssuer() has been deprecated with message: This method will be removed on v4

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
Deprecated Code introduced by
The method Lcobucci\JWT\Builder::setAudience() has been deprecated with message: This method will be removed on v4

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
Deprecated Code introduced by
The method Lcobucci\JWT\Builder::setSubject() has been deprecated with message: This method will be removed on v4

This method has been deprecated. The supplier of the class has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the method will be removed from the class and what other method or class to use instead.

Loading history...
37
            ->setIssuer($this->serviceAccount->getClientEmail())// iss claim
38
            ->setAudience('https://www.googleapis.com/oauth2/v4/token')// aud claim
39
            ->setSubject($this->serviceAccount->getSubject())// sub claim
40
            ->setIssuedAt(time())// iat claim
41
            ->setExpiration(time() + 3600)// exp claim
42
            ->set('scope', self::SCOPE)// custom claim
43
            ->sign(
44
                new Sha256(),
45
                $this->serviceAccount->getPrivateKey()
46
            )
47
            ->getToken(); // Retrieves the generated token
48
    }
49
50
    public function getHash(): string
51
    {
52
        return sha1($this->serviceAccount->getClientEmail().$this->serviceAccount->getSubject());
53
    }
54
}
55