Issues (31)

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.

code/model/EvernoteSettings.php (4 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
/**
4
 * EvernoteSettings
5
 *
6
 * @property string APIKey Api key from Evernote.
7
 * @property string APISecret Api Secret from Evernote.
8
 * @property string CallbackURL Callback URL.
9
 * @property Boolean Sandbox Enable of disable Sandbox.
10
 * @property Boolean China Type Enable country china.
11
 *
12
 * @package EvernoteSettings
13
 */
14
class EvernoteSettings extends DataObject {
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
15
16
    private static $db = array(
0 ignored issues
show
Comprehensibility introduced by
Consider using a different property name as you override a private property of the parent class.
Loading history...
The property $db is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
17
        "APIKey" => "Varchar",
18
        "APISecret" => "Varchar",
19
        "CallbackURL" => "Varchar(512)",
20
        "Sandbox" => "Boolean",
21
        "China" => "Boolean"
22
    );
23
24
    /**
25
  	 * Default permission to check for 'LoggedInUsers' to create or edit pages
26
  	 *
27
  	 * @var array
28
  	 * @config
29
  	 */
30
  	private static $required_permission = array('CMS_ACCESS_CMSMain', 'CMS_ACCESS_LeftAndMain');
0 ignored issues
show
The property $required_permission is not used and could be removed.

This check marks private properties in classes that are never used. Those properties can be removed.

Loading history...
31
32
33
    /**
34
     * @return FieldList
35
     */
36
    public function getCMSFields() {
37
38
      $fields = new FieldList(
39
        new TabSet("Root",
40
          $tabMain = new Tab('Evernote',
41
            $apiKey = new TextField('APIKey', 'API key', $this->APIKey),
42
            $apiSecret = new TextField('APISecret', 'API secret', $this->APISecret),
43
            $callbackURL = new TextField('CallbackURL',
44
                    'CallbackURL - where user will be returned after authenticated from evernote',
45
                    $this->CallbackURL
46
            ),
47
            $sanbox = new CheckBoxField('Sandbox', 'Enable Sandbox', $this->Sandbox),
48
            $china = new CheckBoxField('China', 'Are you in China?', $this->China)
49
          )
50
          ),
51
          new HiddenField('ID')
52
        );
53
54
        $this->extend('updateCMSFields', $fields);
55
56
    		return $fields;
57
    }
58
59
    /**
60
     * Get the current Evernote Settings, and creates a new one through
61
     * {@link make_evernote_settings()} if none is found.
62
     *
63
     * @return EvernoteSettings
64
     */
65
    public static function current_Evernote_settings() {
66
      if ($evernoteSettings = DataObject::get_one('EvernoteSettings')) return $evernoteSettings;
67
68
      return self::make_evernote_settings();
69
    }
70
71
    /**
72
  	 * Create EvernoteSettings with defaults from language file.
73
  	 *
74
  	 * @return EvernoteSettings
75
  	 */
76
  	public static function make_evernote_settings() {
77
  		$config = EvernoteSettings::create();
78
  		$config->write();
79
80
  		return $config;
81
  	}
82
83
    /**
84
     * Get the actions that are sent to the CMS.
85
     *
86
     * In your extensions: updateEditFormActions($actions)
87
     *
88
     * @return FieldList
89
     */
90
    public function getCMSActions() {
91
      if (Permission::check('ADMIN')) {
92
        $actions = new FieldList(
93
          FormAction::create('save_evernotesettings', _t('CMSMain.SAVE','Save'))
94
            ->addExtraClass('ss-ui-action-constructive')->setAttribute('data-icon', 'accept')
95
        );
96
      } else {
97
        $actions = new FieldList();
98
      }
99
100
      $this->extend('updateCMSActions', $actions);
101
102
      return $actions;
103
    }
104
}
105