Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6863129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:44:41+00:00 2026-05-27T02:44:41+00:00

Possible Duplicate: What are the best PHP input sanitizing functions? Let’s say I have

  • 0

Possible Duplicate:
What are the best PHP input sanitizing functions?

Let’s say I have a $_GET variable with the name “id”. The $_GET variable is then used in a mysql query to retrieve some data like SELECT text FROM database WHERE id=$_GET['id'];
Would null byte injection in my $_GET variable affect me assuming I’m using common security functions like mysql_real_escape_string(), addslashes(), and strip_tags()?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T02:44:42+00:00Added an answer on May 27, 2026 at 2:44 am

    Would null byte injection in my $_GET variable affect me assuming I’m using common security functions like mysql_real_escape_string(), addslashes(), and strip_tags()?

    Probably not, but a much more simple injection would affect you. Try passing this as the GET parameter:

    99999 OR id=0
    

    and run it through the query you show above. It will allow injection of arbitrary SQL even when using mysql_real_escape_string.

    Contrary to popular belief, mysql_real_escape_string() will not protect you if your value is not enclosed in quotes.

    If querying for numeric values, either test whether it’s a number before inserting the value into the string, or put the value into quotes:

     $id = mysql_real_escape_string($_GET["id"]);
     $query = "SELECT text FROM database WHERE id='$id'";
    

    addslashes and strip_tags have no value at all in this context. They only serve to break data, but they add no security when inserting stuff in a database. Just get rid of them. (strip_tags may be appropriate later when you output something on a HTML page.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: Best way to stop SQL Injection in PHP I have seen some
Possible Duplicate: What is the best method to merge two PHP objects? I have
Possible Duplicate: Best XML Parser for PHP I have an XML code like as
Possible Duplicate: Best methods to parse HTML with PHP for example i have a
Possible Duplicate: What's the best way to pass a PHP variable to Javascript? I
Possible Duplicate: Best XML Parser for PHP -----First XML-----str1 <HOME> <USER_DETAIL> <LOCATION><![CDATA[MUMBAI]]></LOCATION> <NAME><![CDATA[RAVI]]></NAME> <ID><![CDATA[101]]></ID>
Possible Duplicate: Best methods to parse HTML with PHP So I have a ton
Possible Duplicate: Best way to download a file in PHP i have been asked
Possible Duplicate: Best XML Parser for PHP I have a string with XML data
Possible Duplicate: Best way to stop SQL Injection in PHP I am creating a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.