Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
0

SQL injection on login system by Adobe?

Guest
Apr 17, 2011 Apr 17, 2011

Copy link to clipboard

Copied

Hello everybody!

I recently bought a wonderful book "Adobe Dreamweaver CS5 with PHP - Training from the source" by Daivid Powers.

In the book is described how you can create a login system.

What I would like to ask is: Have the dreamweaver server behaviors any kind of protection against SQL injection?

Unfortunately I do not know PHP in order to recognize the code generated by server behaviors and be able to answer this question by myself..

I just want to know how safe is to publish a website based on the dreamweaver server behaviors..

Thank you in advance!

TOPICS
Server side applications

Views

651
Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guide ,
Apr 19, 2011 Apr 19, 2011

Copy link to clipboard

Copied

Any form values and inbound URL parameters will be sanitized (via the function GetSQLValueString) based on several criteria:

a) generally applied sanitizing functions: stripslashes, mysql_real_escape_string

b) in case of a numeric value (integer, double) the function GetSQLValueString will additionally apply the PHP function intval respectively doubleval

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Apr 19, 2011 Apr 19, 2011

Copy link to clipboard

Copied

LATEST

Thank you very much!

Votes

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines