-1

What are the possible security holes that exist in PHP programing. Weak PHP programming.

Sam
  • 7,252
  • 16
  • 46
  • 65
Wasim A.
  • 9,660
  • 22
  • 90
  • 120
  • 3
    I think you should Google the subject and then ask a more specific question here if you still have one. – The Muffin Man Feb 26 '11 at 07:06
  • You might want to check out this post:http://stackoverflow.com/questions/3115559/exploitable-php-functions/3697776#3697776 and read the owasp top 10 – rook Feb 26 '11 at 20:43

2 Answers2

2

The primary response you will get is SQL injection from input not properly sanitized. Another possibility I can think of offhand is allowing scripts to be uploaded and subsequently executed. OReilly has a book on the topic also, oreilly.com/catalog/9780596006563, Essential PHP Security. Also check out the PHP security guide -

http://phpsec.org/projects/guide/

Brandon Frohbieter
  • 17,563
  • 3
  • 40
  • 62
2

Have a look at this: Historical security flaws of popular PHP CMS's?

Community
  • 1
  • 1
sprain
  • 7,552
  • 6
  • 35
  • 49