Issues (1098)

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/filters/share.php (1 issue)

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
//
5
//  eTraxis - Records tracking web-based system
6
//  Copyright (C) 2010  Artem Rodygin
7
//
8
//  This program is free software: you can redistribute it and/or modify
9
//  it under the terms of the GNU General Public License as published by
10
//  the Free Software Foundation, either version 3 of the License, or
11
//  (at your option) any later version.
12
//
13
//  This program is distributed in the hope that it will be useful,
14
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
15
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
//  GNU General Public License for more details.
17
//
18
//  You should have received a copy of the GNU General Public License
19
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
20
//
21
//------------------------------------------------------------------------------
22
23
/**
24
 * @package eTraxis
25
 * @ignore
26
 */
27
28
/**#@+
29
 * Dependency.
30
 */
31
require_once('../engine/engine.php');
32
require_once('../dbo/projects.php');
33
require_once('../dbo/templates.php');
34
require_once('../dbo/filters.php');
35
/**#@-*/
36
37
init_page(LOAD_TAB);
38
39
// check that requested filter exists
40
41
$id     = ustr2int(try_request('id'));
42
$filter = filter_find($id);
43
44
if (!$filter)
0 ignored issues
show
Bug Best Practice introduced by
The expression $filter of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
45
{
46
    debug_write_log(DEBUG_NOTICE, 'Filter cannot be found.');
47
    exit;
48
}
49
50
// add/remove selected groups
51
52
if (try_request('submitted') == 'othersform')
53
{
54
    debug_write_log(DEBUG_NOTICE, 'Data are submitted (adding new groups).');
55
56
    if (isset($_REQUEST['groups']))
57
    {
58
        foreach ($_REQUEST['groups'] as $group)
59
        {
60
            dal_query('filters/fshcreate.sql', $id, $group);
61
        }
62
    }
63
    else
64
    {
65
        debug_write_log(DEBUG_NOTICE, 'No groups are selected.');
66
    }
67
68
    exit;
69
}
70
elseif (try_request('submitted') == 'allowedform')
71
{
72
    debug_write_log(DEBUG_NOTICE, 'Data are submitted (removing selected groups).');
73
74
    if (isset($_REQUEST['groups']))
75
    {
76
        foreach ($_REQUEST['groups'] as $group)
77
        {
78
            dal_query('filters/fshdelete.sql', $id, $group);
79
        }
80
    }
81
    else
82
    {
83
        debug_write_log(DEBUG_NOTICE, 'No groups are selected.');
84
    }
85
86
    exit;
87
}
88
else
89
{
90
    debug_write_log(DEBUG_NOTICE, 'Data are being requested.');
91
92
    // determine filter's project
93
    switch ($filter['filter_type'])
94
    {
95
        case FILTER_TYPE_ALL_PROJECTS:
96
97
            $project_id = 0;
98
99
            break;
100
101
        case FILTER_TYPE_ALL_TEMPLATES:
102
103
            $project    = project_find($filter['filter_param']);
104
            $project_id = ($project ? $project['project_id'] : 0);
105
106
            break;
107
108
        case FILTER_TYPE_ALL_STATES:
109
        case FILTER_TYPE_SEL_STATES:
110
111
            $template   = template_find($filter['filter_param']);
112
            $project_id = ($template ? $template['project_id'] : 0);
113
114
            break;
115
116
        default:
117
118
            $project_id = 0;
119
120
            debug_write_log(DEBUG_WARNING, 'Unknown filter type = ' . $filter['filter_type']);
121
    }
122
}
123
124
// generate left side
125
126
$xml = '<dual>'
127
     . '<dualleft>'
128
     . '<form name="othersform" action="share.php?id=' . $id . '" success="reloadTab">'
129
     . '<group title="' . get_html_resource(RES_OTHERS_ID) . '">'
130
     . '<control name="groups[]">'
131
     . '<listbox size="10">';
132
133
$rs = dal_query('filters/sharing.sql', $id, $project_id);
134
135 View Code Duplication
while (($row = $rs->fetch()))
136
{
137
    if (!$row['is_selected'])
138
    {
139
        $xml .= '<listitem value="' . $row['group_id'] . '">'
140
              . sprintf('%s (%s)', ustr2html($row['group_name']), get_html_resource($row['is_global'] ? RES_GLOBAL_ID : RES_LOCAL_ID))
141
              . '</listitem>';
142
    }
143
}
144
145
$xml .= '</listbox>'
146
      . '</control>'
147
      . '</group>'
148
      . '</form>'
149
      . '</dualleft>';
150
151
// generate right side
152
153
$xml .= '<dualright>'
154
      . '<form name="allowedform" action="share.php?id=' . $id . '" success="reloadTab">'
155
      . '<group title="' . get_html_resource(RES_ALLOWED_ID) . '">'
156
      . '<control name="groups[]">'
157
      . '<listbox size="10">';
158
159
$rs->seek();
160
161 View Code Duplication
while (($row = $rs->fetch()))
162
{
163
    if ($row['is_selected'])
164
    {
165
        $xml .= '<listitem value="' . $row['group_id'] . '">'
166
              . sprintf('%s (%s)', ustr2html($row['group_name']), get_html_resource($row['is_global'] ? RES_GLOBAL_ID : RES_LOCAL_ID))
167
              . '</listitem>';
168
    }
169
}
170
171
$xml .= '</listbox>'
172
      . '</control>'
173
      . '</group>'
174
      . '</form>'
175
      . '</dualright>';
176
177
// generate buttons
178
179
$xml .= '<button action="$(\'#othersform\').submit()">%gt;%gt;</button>'
180
      . '<button action="$(\'#allowedform\').submit()">%lt;%lt;</button>'
181
      . '</dual>';
182
183
echo(xml2html($xml));
184
185
?>
186