I
I
Ivan Ivanov2014-05-31 22:20:23
PHP
Ivan Ivanov, 2014-05-31 22:20:23

PHP injections in the past?

Have they not met for a long time, or do they still exist?

Answer the question

In order to leave comments, you need to log in

5 answer(s)
V
Vlad Zhivotnev, 2014-06-02
@0x3

In php 5.4, the hole that caused most injections was removed ( www.php.net/manual/en/security.globals.php). So there are gradually fewer of them (as php is updated around the world).
But since the developers did not write better, they will not disappear.

A
Appp Zooo, 2014-05-31
@ikeagold

PHP injection becomes possible if input parameters are accepted and used without validation.
Source That is, they are, were and will be until there are those who do not protect the input parameters/data/etc.
Now everyone is targeting XSS, even Google is willing to pay $7500 for a vulnerability.
Here is the mini game - https://xss-game.appspot.com/
Recent post on habr about XSS habrahabr.ru/post/224773

V
Vitaly Zheltyakov, 2014-06-01
@VitaZheltyakov

Yes, they do exist. Of course, the developers were sent to pay more attention to data validation, but not all. In addition, PHP injections through file uploads are still popular.

A
asd111, 2014-06-05
@asd111

This does not depend on PHP, because PHP does not filter output by default and PDO has a way to write insecurely. Frameworks solve the problem with SQL injection a little, and in order to avoid XSS, you need to filter the output of data from the database and user data.

M
Maxim Timofeev, 2014-06-01
@webinar

They are and will be, so you need to check the data.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question