Issues (1066)

Security Analysis    7 potential vulnerabilities

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting (1)
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 (3)
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 (3)
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.

docs/demo.php (5 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
require(__DIR__ . '/../src/PhpQuery.php');
3
4
// INITIALIZE IT
0 ignored issues
show
Unused Code Comprehensibility introduced by
39% 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...
5
// PhpQuery::newDocumentHTML($markup);
6
// PhpQuery::newDocumentXML();
7
// PhpQuery::newDocumentFileXHTML('test.html');
8
// PhpQuery::newDocumentFilePHP('test.php');
9
// PhpQuery::newDocument('test.xml', 'application/rss+xml');
10
// this one defaults to text/html in utf8
11
$doc = PhpQuery::newDocument('<div/>');
0 ignored issues
show
The method newDocument() does not seem to exist on object<PhpQuery>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
12
13
// FILL IT
14
// array syntax works like ->find() here
15
$doc['div']->append('<ul></ul>');
16
// array set changes inner html
17
$doc['div ul'] = '<li>1</li> <li>2</li> <li>3</li>';
18
19
// MANIPULATE IT
20
$li = null;
21
// almost everything can be a chain
22
$doc['ul > li']
23
	->addClass('my-new-class')
24
	->filter(':last')
25
		->addClass('last-li')
26
// save it anywhere in the chain
27
		->toReference($li);
28
29
// SELECT DOCUMENT
30
// pq(); is using selected document as default
31
PhpQuery::selectDocument($doc);
0 ignored issues
show
The method selectDocument() does not seem to exist on object<PhpQuery>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
32
// documents are selected when created or by above method
33
// query all unordered lists in last selected document
34
$ul = pq('ul')->insertAfter('div');
35
36
// ITERATE IT
37
// all direct LIs from $ul
38
foreach($ul['> li'] as $li) {
39
	// iteration returns PLAIN dom nodes, NOT PhpQuery objects
40
	$tagName = $li->tagName;
41
	$childNodes = $li->childNodes;
42
	// so you NEED to wrap it within PhpQuery, using pq();
43
	pq($li)->addClass('my-second-new-class');
44
}
45
46
// PRINT OUTPUT
47
// 1st way
48
print PhpQuery::getDocument($doc->getDocumentID());
0 ignored issues
show
The method getDocument() does not seem to exist on object<PhpQuery>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
49
// 2nd way
50
print PhpQuery::getDocument(pq('div')->getDocumentID());
0 ignored issues
show
The method getDocument() does not seem to exist on object<PhpQuery>.

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
51
// 3rd way
52
print pq('div')->getDocument();
53
// 4th way
54
print $doc->htmlOuter();
55
// 5th way
56
print $doc;
57
// another...
58
print $doc['ul'];