Issues (260)

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.

core/helpers/Chaos.php (9 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
namespace puck\helpers;
3
class Chaos {
4
	public $GbToBigArray;
5
	public $_pinyin;
6
	public $string;
7
	public $url='';
8
	public $msg='';
9
	public $action;
10
	private $prefix;
11
	
12
    function __construct() {
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
13
		$this->_pinyin=new PinYin();
14
	}
15
16
    /**
17
     * @param array $prefix
18
     */
19
    public function addPrefix(array $prefix) {
20
        $this->prefix=$prefix[array_rand($prefix)];
21
	}
22
23
    public function clearPrefix() {
24
        $this->prefix='';
25
	}
26
    public function get($str) {
27
        $this->cutting($str);
28
        $this->convert();
29
        $this->clearPrefix();
30
        return $this->msg;
31
	}
32
33
	//分离URL
34
	private function cutting($str) {
35
36
		if (preg_match("@(http://[^\\s]+)@i", $str, $result)) {
37
			$this->url=$result[1];
38
			$this->msg=$str=str_replace($this->url, '%%%%', $str);
0 ignored issues
show
$str is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
39
		} else {
40
			$this->msg=$str;
41
		}
42
	}
43
	
44
	
45
	
46
	private function convert($method='msg') {
47
		if ($method == 'msg' || $method == 'all') {
48
			$this->msg=$this->setPinyin($this->msg);
49
			$this->msg=$this->setRepeat($this->msg);
50
			//$this->msg = $this->GbToBig($this->msg);
0 ignored issues
show
Unused Code Comprehensibility introduced by
60% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
51
			$this->msg=$this->setBlankness($this->msg);
52
			
53
		}
54
		if ($method == 'url' || $method == 'all') {
55
			$this->url=$this->setChacha($this->url);
56
		}
57
		$this->msg=$this->prefix.str_replace('%%%%', $this->url, $this->msg);
58
	}
59
	
60
	/**
61
	 * @param string $url
62
	 */
63
	function setChacha($url) {
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
64
		$url=strtolower($url);
65
		$arr=array(
66
			'a' => array('a', 'A', 'a', 'A', 'Α', 'А', 'α'),
67
			'b' => array('b', 'B', 'b', 'B', 'Β', 'В', 'Ь'),
68
			'c' => array('c', 'C', 'c', 'C', 'С', 'с'),
69
			'd' => array('d', 'D', 'd', 'D'),
70
			'e' => array('e', 'E', 'e', 'E', 'Ε', 'Е', 'е'),
71
			'f' => array('f', 'F', 'f', 'F'),
72
			'g' => array('g', 'G', 'g', 'G'),
73
			'h' => array('h', 'H', 'h', 'H', 'Η', 'Н', 'н'),
74
			'i' => array('i', 'I', 'i', 'I', 'Ι', 'Ⅰ'),
75
			'j' => array('j', 'J', 'j', 'J'),
76
			'k' => array('k', 'K', 'k', 'K', 'Κ', 'κ', 'к', 'К'),
77
			'l' => array('l', 'L', 'l', 'L', '︱', '︳', '|'),
78
			'm' => array('m', 'M', 'm', 'M', 'Μ', 'М', 'м'),
79
			'n' => array('n', 'N', 'n', 'N', 'Ν', '∩'),
80
			'o' => array('o', 'O', 'o', 'O', 'Ο', 'О'),
81
			'p' => array('p', 'P', 'p', 'P', 'Ρ', 'Р', 'р'),
82
			'q' => array('q', 'Q', 'q', 'Q'),
83
			'r' => array('r', 'R', 'r', 'R'),
84
			's' => array('s', 'S', 's', 'S'),
85
			't' => array('t', 'T', 't', 'T', 'Τ', 'Т', 'ㄒ'),
86
			'u' => array('u', 'U', 'u', 'U', '∪'),
87
			'v' => array('v', 'V', 'v', 'V', '∨', 'ν'),
88
			'w' => array('w', 'W', 'w', 'W'),
89
			'x' => array('x', 'X', 'x', 'X', 'Χ', 'χ', 'Х', 'х', 'Ⅹ', '×'),
90
			'y' => array('y', 'Y', 'y', 'Y', 'У'),
91
			'z' => array('z', 'Z', 'z', 'Z', 'Ζ'),
92
			
93
			'1' => array('1', '1'),
94
			'2' => array('2', '2'),
95
			'3' => array('3', '3'),
96
			'4' => array('4', '4'),
97
			'5' => array('5', '5'),
98
			'6' => array('6', '6'),
99
			'7' => array('7', '7'),
100
			'8' => array('8', '8'),
101
			'9' => array('9', '9'),
102
			'0' => array('0', '0'),
103
			
104
			':' => array(':', ':', '∶'),
105
			'/' => array('/', '/'),
106
			'.' => array('。', '·', '.', '、', '﹒', ',', '丶')
107
		
108
		);
109
		$len=strlen($url);
110
		$temp="\n\n";
111
		for ($i=0; $i < $len; $i++) {
112
			$t_str=substr($url, $i, 1);
113
			$sj=mt_rand(0, count($arr[$t_str]) - 1);
114
			$temp.=$arr[$t_str][$sj];
115
		}
116
		return $temp;
117
	}
118
119
	//随机把一个字符转为拼音
120
121
	/**
122
	 * @param string $str
123
	 */
124
	function setPinyin($str) {
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
125
		$py = mt_rand(0, iconv_strlen( $str, 'UTF-8' )-1);
126
		$t_str = iconv_substr( $str, $py, 1, 'UTF-8');
127
		if(mt_rand(0,10) > 5) {
128
		    $pinyin = " ";
0 ignored issues
show
$pinyin is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
129
		}
130
		$pinyin = $this->_pinyin->convert($t_str,PINYIN_UNICODE);
131
        $pinyin=implode(" ",$pinyin);
132
		if(mt_rand(0,10) > 5) {
133
		    $pinyin .= " ";
134
		}
135
		if($t_str != "%"){
136
			$str = preg_replace("'$t_str'", $pinyin, $str, 1);
137
		}
138
		return $str;
139
	}
140
	
141
	//随机重复一个字符
142
143
	/**
144
	 * @param string $str
145
	 */
146
	function setRepeat($str) {
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
147
		$len = iconv_strlen( $str, 'UTF-8' );
148
		$action = 0;
149
		$temp = '';
150
		for( $i=0;  $i<$len; $i++ ){
151
			$t_str = iconv_substr( $str, $i, 1 ,'UTF-8');
152
			if( mt_rand( 1, 50 ) > 48 && $action == 0) {
153
				if(!preg_match("@[a-z0-9%\\s]+@i", $t_str)) {
154
					$temp .= $t_str;
155
					$action = 1;
156
				}
157
			}
158
			$temp .= $t_str;
159
		}
160
		return $temp;
161
	}
162
	
163
	//随机插入不影响阅读的字符
164
165
	/**
166
	 * @param string $str
167
	 */
168
	function setBlankness($str) {
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
169
		$blankness=array(" ", ' ', '҉', '̅̅', '̲', '̲̲', '̅', '̲̲̅̅');
170
		$len=iconv_strlen($str, 'UTF-8');
171
		$temp='';
172
		for ($i=0; $i < $len; $i++) {
173
			$t_str=iconv_substr($str, $i, 1, 'UTF-8');
174
			if (mt_rand(1, 50) > 48) {
175
				if (!preg_match("@[a-z0-9%\\s]+@i", $t_str)) {
176
					$temp.=$blankness[mt_rand(0, 7)];
177
				}
178
			}
179
			$temp.=$t_str;
180
		}
181
		return $temp;
182
	}
183
	
184
	//随机进行繁体中文转换
185
	function GbToBig($str) {
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
186
		$len=iconv_strlen($str, 'UTF-8');
187
		$temp='';
188
		for ($i=0; $i < $len; $i++) {
189
			$t_str=iconv_substr($str, $i, 1, 'UTF-8');
190
			if (mt_rand(1, 50) > 48) {
191
				$t_str=strtr($t_str, $this->GbToBigArray);
192
			}
193
			$temp.=$t_str;
194
		}
195
		return $temp;
196
	}
197
}
198
199
200