Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Just asking if you guys can notice any SQL injection possiblities in this code, please reply if found any. This code is to load simple 'jokes' from a MySQL database. Thanks :)

<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title></title>
    </head>
    <body>
        <?php

        try
        {
            $pdo = new PDO('mysql:host=localhost;dbname=website', 'root', '');
            $pdo->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
            $pdo->exec('SET NAMES "utf8"');
        }
        catch (PDOException $e)
        {
            $error = '<font color="red"><strong><p align="center">Unable to connect to the database server. Please visit again later!</p></strong></font>';
            include 'error.html.php';
            exit();
        }

        try
        {
            $sql = 'SELECT joketext FROM joke';
            $result = $pdo->query($sql);
        }
        catch (PDOException $e)
        {
            $error = '<font color="red"><strong><p align=center>Error Fetching Jokes</p></strong></font>';
            include 'error.html.php';
            exit();
        }

        while ($row = $result->fetch())
        {
            $jokes[] = $row['joketext'];
        }

        include 'jokes.html.php'; // Array listing parse
        ?>
    </body>
</html>
share|improve this question
I don't see any user input in there. So it can't be.. But well done for using PDO and not mysql_*. – navnav Jan 2 at 0:17

closed as too localized by Waleed Khan, mario, Jocelyn, Lars Kotthoff, Andy Hayden Jan 2 at 2:59

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

You don't take any user input, so it can't be.

share|improve this answer
True in this case. But shouldn't be generalized based on user input. Code can still be susceptible to second order injection without direct input variables. (Reusing results from one query unesacped in another database statement). – mario Jan 2 at 0:19
@mario Second order injection comes from user input. – Waleed Khan Jan 2 at 0:26

A SQL injection happens when you don't sanitize user input.

Example:

"SELECT joketext FROM joke WHERE joker = " . $_GET['joker']

This is bad because I can put anything I want in the variable (http://yoursite.com/joke.php?joker=whatever) and it will get executed!

Your take no user input so I don't have any opportunity to do such a thing. The query you execute is the same every time and is hard coded in your php file.

Read more about SQL injections on Wiki.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.