Welcome Guest, Not a member yet? Register   Sign In
SQL Injection
#1

Afternoon

I was struggling to get some data to insert in to MySQL but i have finally got that working - However, someone said I am wide open to an SQL injection attack and theyve not said anything else about it. This of course got me worried

In my views I have a postcode.php and a submit.php (the submit is where the SQL query is saved).

PHP Code:
// SAVE POSTCODE & DELIVERY COST
if(isset($_POST['submitPostCode'])){
    // Get editor content
    $postCodeString $_POST['postCodetext'];
    $costString $_POST['costtext'];

    // Check whether the editor content is empty
    if(!empty($postCodeString)){
        // Insert editor content in the database
        $insert1 $db->query("INSERT INTO postCode (postCode, Cost) VALUES ('".$postCodeString."', '".$costString."')");

        // If database insertion is successful
        if($insert1){
            $statusMsg1 "Succeddfully Saved.";
        }else{
            $statusMsg1 "A problem occurred, please try again.";
        }
    }else{
        $statusMsg1 'You cannot save a blank postcode or delivery charge';
    }


I kind of understand SQL injection. My knowledge is that a malicious using may be able to essentially change the query to suite their need such as drop a table etc.

But how is mine not secure, and why is it wide open to an attack? Also, what can I immediately do to secure it
Reply


Messages In This Thread
SQL Injection - by dmorgan20 - 11-25-2019, 10:46 AM
RE: SQL Injection - by jreklund - 11-25-2019, 11:37 AM
RE: SQL Injection - by HeyDarling - 11-25-2019, 03:48 PM
RE: SQL Injection - by jreklund - 11-26-2019, 12:14 PM



Theme © iAndrew 2016 - Forum software by © MyBB