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/projects/modify.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) 2005-2011  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
/**#@-*/
34
35
init_page(LOAD_INLINE);
36
37
$error = NO_ERROR;
38
39
if (get_user_level() != USER_LEVEL_ADMIN)
40
{
41
    debug_write_log(DEBUG_NOTICE, 'User must have admin rights to be allowed.');
42
    header('HTTP/1.1 307 index.php');
43
    exit;
44
}
45
46
// check that requested project exists
47
48
$id      = ustr2int(try_request('id'));
49
$project = project_find($id);
50
51
if (!$project)
52
{
53
    debug_write_log(DEBUG_NOTICE, 'Project cannot be found.');
54
    header('HTTP/1.1 307 index.php');
55
    exit;
56
}
57
58
// changed project has been submitted
59
60 View Code Duplication
if (try_request('submitted') == 'modifyform')
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...
61
{
62
    debug_write_log(DEBUG_NOTICE, 'Data are submitted.');
63
64
    $project_name = ustrcut($_REQUEST['project_name'], MAX_PROJECT_NAME);
65
    $description  = ustrcut($_REQUEST['description'],  MAX_PROJECT_DESCRIPTION);
66
67
    $error = project_validate($project_name);
68
69
    if ($error == NO_ERROR)
70
    {
71
        $error = project_modify($id, $project_name, $description);
72
    }
73
74
    switch ($error)
75
    {
76
        case NO_ERROR:
77
            header('HTTP/1.0 200 OK');
78
            break;
79
80
        case ERROR_INCOMPLETE_FORM:
81
            send_http_error(get_html_resource(RES_ALERT_REQUIRED_ARE_EMPTY_ID));
82
            break;
83
84
        case ERROR_ALREADY_EXISTS:
85
            send_http_error(get_html_resource(RES_ALERT_PROJECT_ALREADY_EXISTS_ID));
86
            break;
87
88
        default:
89
            send_http_error(get_html_resource(RES_ALERT_UNKNOWN_ERROR_ID));
90
    }
91
92
    exit;
93
}
94
else
95
{
96
    debug_write_log(DEBUG_NOTICE, 'Data are being requested.');
97
98
    $project_name = $project['project_name'];
99
    $description  = $project['description'];
100
}
101
102
// local JS functions
103
104
$resTitle = get_js_resource(RES_ERROR_ID);
105
$resOK    = get_js_resource(RES_OK_ID);
106
107
$xml = <<<JQUERY
108
<script>
109
110
function modifySuccess ()
111
{
112
    closeModal();
113
    reloadTab();
114
}
115
116
function modifyError (XMLHttpRequest)
117
{
118
    jqAlert("{$resTitle}", XMLHttpRequest.responseText, "{$resOK}");
119
}
120
121
</script>
122
JQUERY;
123
124
// generate page
125
126
$xml .= '<form name="modifyform" action="modify.php?id=' . $id . '" success="modifySuccess" error="modifyError">'
127
      . '<group>'
128
      . '<control name="project_name" required="' . get_html_resource(RES_REQUIRED3_ID) . '">'
129
      . '<label>' . get_html_resource(RES_PROJECT_NAME_ID) . '</label>'
130
      . '<editbox maxlen="' . MAX_PROJECT_NAME . '">' . ustr2html($project_name) . '</editbox>'
131
      . '</control>'
132
      . '<control name="description">'
133
      . '<label>' . get_html_resource(RES_DESCRIPTION_ID) . '</label>'
134
      . '<editbox maxlen="' . MAX_PROJECT_DESCRIPTION . '">' . ustr2html($description) . '</editbox>'
135
      . '</control>'
136
      . '</group>'
137
      . '<note>' . get_html_resource(RES_ALERT_REQUIRED_ARE_EMPTY_ID) . '</note>'
138
      . '</form>';
139
140
echo(xml2html($xml));
141
142
?>
143