Hacking Websites with SQL Injection - Computerphile

Поділитися
Вставка
  • Опубліковано 9 лют 2025
  • Websites can still be hacked using SQL injection - Tom explains how sites written in PHP (and other languages too) can be vulnerable and have basic security issues.
    More from Tom Scott: / enyay and / tomscott
    Follow the Cookie Trail: • Follow the Cookie Trai...
    CERN Computing Centre & Mouse Farm: • CERN Computing Centre ...
    / computerphile
    / computer_phile
    This video was filmed and edited by Sean Riley.
    Computerphile is a sister project to Brady Haran's Numberphile. See the full list of Brady's video projects at: bit.ly/bradycha...

КОМЕНТАРІ • 882

  • @Kneedragon1962
    @Kneedragon1962 10 років тому +4053

    One of the better 'funny pictures' I have seen, was a numberplate on a pretty fast car, which had an SQL instruction to drop some tables... hello speed cameras ...

  • @Computerphile
    @Computerphile  11 років тому +907

    This is the St Pancras Renaissance hotel in London - great that they let us film after our original location fell through - shame they wouldn't let me use lights though! >Sean

  • @RockLou
    @RockLou 9 років тому +2125

    "; DROP ALL DATABASES;
    dammmit.

  • @Markus9705
    @Markus9705 10 років тому +2529

    Simply: don't ever ever trust user input.

  • @hermest99
    @hermest99 9 років тому +2520

    One finger: "Facebook was originally written in PHP"
    Second finger: All other things.
    Nice one.

  • @bigsteamfan
    @bigsteamfan 11 років тому +5450

    He speaks SO LOUD... lol... I think the entire cafe knows how to hack websites by now...

  • @brettefantomet
    @brettefantomet 9 років тому +1549

    Tom Scott is awesome! "If you can't explain it to an eight year old, you don't fully understand it yourself!" -Unknown Smart person

  • @RebeccaSentance
    @RebeccaSentance 9 років тому +1301

    "It's a hack on top of a hack.... That's a hack, and we've had to put more on top of that, and more on top of that, and more on top of that."
    It's a hack stack!

  • @capo328
    @capo328 11 років тому +555

    >"You can read people's passwords..."
    Well hopefully they're hashed anyway

  • @glueee2621
    @glueee2621 9 років тому +398

    Oh Tom Scott, you always manage to make us feel just a tad bit more paranoid.

  • @MrGeekGamer
    @MrGeekGamer 11 років тому +364

    "It works, but it's clunky." - PHP in nutshell.

  • @DaGleese
    @DaGleese 10 років тому +366

    I literally came to the video to see if he pronounced it as "sequel" or S.Q.L.
    I got my answer instantly! :D

  • @mittfh
    @mittfh 9 років тому +620

    "Shouldn't work any more but still does."
    Just ask TalkTalk's IT department...

  • @someitguy2175
    @someitguy2175 9 років тому +181

    Amazing that he knows I'm a camera, I'm impressed!

  • @ignasmixer
    @ignasmixer 10 років тому +97

    Love the non ordinary video background. Nicely explained topic. Thank you.

  • @epicdman8139
    @epicdman8139 9 років тому +742

    I am familiar with SQL injections but it doesn't work on any websites that are worth messing with

  • @yessopie
    @yessopie 11 років тому +29

    The correct way to think about this: when you are writing code that generates SQL, you need to generate it according to the SQL syntax. When you inject a string into an SQL statement, you need to convert that string into an "SQL string literal". This is done by adding the quotation marks at the beginning and end and escaping any character that has a different meaning in an SQL string literal than in a plain string (backslashes, quotes, etc...). The SQL syntax specification shows you where these string literals are allowed in a statement. If you are putting an integer into your SQL, you need to convert it to an "SQL integer literal", which is usually done just by converting it to a string. (Not an SQL string literal-just a string.)

  • @arosepsy
    @arosepsy 11 років тому +16

    Really enjoy the lighting and setting of this one. Informative person as well. Seeing a large increase in quality on this channel and it's much appreciated.

  • @Zolezify
    @Zolezify 10 років тому +63

    Actually I love his passion for the language and the whole subject itself. You can practically see the fire in his eyes. great work helped a bunch

  • @jamesisntmexican
    @jamesisntmexican 9 років тому +482

    Good ol' Bobby Tables.

  • @Truthiness231
    @Truthiness231 11 років тому +101

    Oh this should be some nostalgic fun, I remember back in highschool when injecting some code into a text field and... this video is from 2013. This video is from 2013? This video is from 2013! How in holy hell could ANYONE leave such a vulnerable area of security wide open this long?

  • @Computerphile
    @Computerphile  11 років тому +129

    Description amended to be less PHP specific - he does explain using PHP though, however little the PHP specific content >Sean

  • @luketimothy
    @luketimothy 11 років тому +5

    Thanks for these videos... In my experience of web programming as an amateur, Security issues have never been something I have come across all that often. It's good to learn more about them.

  • @TheAnig140895
    @TheAnig140895 11 років тому +12

    Tom is so passionate about this stuff. It is truly amazing to watch him explain stuff.

  • @rob-8582
    @rob-8582 10 років тому +215

    This video is good but makes it sound if a website is poorly coded (so SQL injection is possible) that the database server has no security and is an open platter i.e if a malicious user attempts to run a DELETE, DROP DATABASE command they will be able to do this. If the security on the database side has been granted appropriately the user specified in the connection string of the web application will not be able to execute these commands. All users should only be granted permissions required to do the tasks they are going to use. There is no need for a web application needing to have the DROP ALL DATABASES or similar commands. Not trying to water down the risk just making it clear that the problem lies on the developer (code) and administrator side (permissions).

  • @NerdyStarProductions
    @NerdyStarProductions 11 років тому +4

    Great video. Had a web interview a few weeks ago where I needed to know what an SQL injection is, and while I did try and explain it with my limited knowledge, I learned a lot more about it from watching this video. Thanks for the upload, and I'd also love to see more of Tom.

  • @Vulcapyro
    @Vulcapyro 11 років тому +13

    "It really shouldn't work anymore, but still does" is the best description of SQL injection I've ever heard.

  • @Chrisgamee
    @Chrisgamee 11 років тому +7

    This guy is the most entertaining and easy to learn from guy on computerphile! More please!

  • @edcameron
    @edcameron 3 роки тому +7

    Just got out of jail because i tried this 5 years ago. THANKS ALOT FOR THE WARNING TOM

  • @dispatchrabbi
    @dispatchrabbi 11 років тому +9

    This is a really tough thing to explain to non-technical people, and this guy did a great job of it.

  • @Alfakatt
    @Alfakatt 9 років тому +2

    Love how this turned into a PHP promotional video with our host feeling the need to justify his usage of PHP! :D

  • @Mukhambiel
    @Mukhambiel 2 роки тому +2

    Going to show this video to our apprentice. He is going to learn SQL in school soon. Best wishes from germany!

  • @GrimReaperCalls
    @GrimReaperCalls 11 років тому +7

    Really liked Tom's way of explaining, I too would like to see more of him!

  • @roflbunnie6
    @roflbunnie6 11 років тому +4

    Python has taught me really well with strings and escaping. Of course Ive learned more than escaping and learn strings, but I still am thankful for learning it.

  • @Spideyy2099
    @Spideyy2099 8 років тому +7

    I love your channel name and the videos are great! It really satisfies my love of technology, but makes me wanna learn more!

  • @zhevox
    @zhevox 8 років тому +222

    Robert'); DROP TABLE Students;--

  • @WhimsyHeath
    @WhimsyHeath 8 років тому +90

    funnily enough, I got a SQL course ad for this video.

  • @LukeBeacon
    @LukeBeacon 11 років тому +5

    More of this guy.
    I always wonder if the other people in the restaurant (?) cant help but listen in on the riveting conversation going on.

  • @mayur1234560
    @mayur1234560 11 років тому +11

    This guy is one of the best on your channel! Get more videos from him!

  • @dospy1
    @dospy1 11 років тому +1

    moar videos with this guy pls, he's amazing; he manage to output such concise information with ease

  • @Quimbyrbg
    @Quimbyrbg 11 років тому +3

    I liked this bloke, he's very passionate about the subject which helps him avoid the boredom that can creep in when listening to a talk on programming.
    Excellent topic too; I'm neck deep in learning PHP at the moment, so I appreciate the heads up about the security risks.

  • @CharlotteWolf
    @CharlotteWolf 11 років тому

    I quite like the moody lighting, gives it a nice atmosphere, Tom was a joy to listen to aswell.

  • @aryamanmajumdar7411
    @aryamanmajumdar7411 6 років тому

    The lighting in this video is really good.

  • @joshstead6078
    @joshstead6078 9 років тому +12

    I don't understand who dislikes these videos, no matter what there are people who will dislike every video on youtube

  • @tomlxyz
    @tomlxyz 9 років тому +172

    PHP is only fun at the beginning.

  • @Bukowski208
    @Bukowski208 11 років тому

    I seriously love this guys enthusiasm

  • @Seanmc19
    @Seanmc19 11 років тому +2

    I really like this guy, very enthusiastic, reminds me of my lecturer for databases

  • @ok_engineer
    @ok_engineer 11 років тому

    This video is going to be the response to so many stackoverflow questions.

  • @gdwnet
    @gdwnet 11 років тому +65

    as hacks go there are worse ones *heavy sigh* - There speaks someone who has had to deal with them! I know that sigh all too well.

  • @ashwith
    @ashwith 11 років тому +3

    "...someone who uses Windows." The expression at 8:31 is priceless! :D

  • @dementeddr
    @dementeddr 11 років тому

    I love that he writes things on old continuous-feed paper.

  • @CityState_of_Valletta
    @CityState_of_Valletta 5 років тому +6

    Me and my friend always joked about naming a kid "DropTable" in our IS SQL intro course.
    But I guess now I realized it should be something along the lines of: Frank";Droptable

  • @yklai3
    @yklai3 11 років тому +1

    9 minutes from him is better than 90 minutes from my lecturer :(

  • @SignalsEverywhere
    @SignalsEverywhere 11 років тому +5

    Thanks for the video, I have a much much better understanding of how this works now.

  • @ZeeCoder
    @ZeeCoder 11 років тому +15

    I'd love to see more about security from Tom, he just does a wonderful job explaining things.

  • @lehw916
    @lehw916 4 роки тому +7

    How did you isolate his voice from the surrounding noise?

  • @erythreas34
    @erythreas34 11 років тому +4

    Watching Video: Ok lets not be stupid.
    After video: LET'S SEND SQL CODES ON EVERY SITE WE KNOW!!!

  • @0096luke
    @0096luke 9 років тому +183

    There's a fix for this. It's called not using PHP

  • @TechLaboratories
    @TechLaboratories 11 років тому +5

    Awesome video! Personally, I think that HTML, Javascript and PHP should be taught in every high school worldwide, if for no other reason than the problem solving skills and understanding of how the internet works gained in the process. No offense to the other client-side and server-side scripting languages.

  • @_wouter52
    @_wouter52 11 років тому

    Yay Tom is back! Great video as always!

  • @yash1152
    @yash1152 Рік тому +1

    6:57 near flawless join in audio from a cut
    niiice

  • @neongreencoding878
    @neongreencoding878 9 років тому +2

    Great info! SQL injection is a classic security flaw

  • @crisunjackalD
    @crisunjackalD 11 років тому

    SQL was designed under the name SEQUEL (Structured English QUEry Language), but Sequel just so happened to be a trademarked name of a UK company called Hawker Siddeley Aircraft so it had to be changed.
    From that, we can assume both ways of saying are correct since Sequel was the name originally intended but "Es-Kyoo-El" is the amended one.

  • @josephthedafty
    @josephthedafty 11 років тому +1

    I freaking love Tom Scott, everyone should.

  • @datakaka
    @datakaka 11 років тому +2

    Great explanation, more videos with Tom please.

  • @mike36801
    @mike36801 11 років тому

    I told countless times to the other developer at work to write all the SQL in procedures, and not inline in the application, but he did not listen to me. Now he works in another company, paid better than me. After a security check in my company, all my applications pass clean without errors, and all his applications have errors, and SQL injection problems. Now I have to fix all his applications, to transfer his inline SQL code to procedures. How fun is that !!!

  • @phatcartoon
    @phatcartoon 11 років тому

    Yes, another UA-cam user suggested the same. I checked it out recently and it's really nice. Thanks.

  • @benjamincuningham
    @benjamincuningham 11 років тому +2

    Extremely well explained. Great job!

  • @icemd24
    @icemd24 9 років тому +2

    Gonna change all my code to prepared statements right now. Thank you!

  • @TheDonMacdonald
    @TheDonMacdonald 11 років тому +1

    Great vid !!
    There is a lot of confusion about prepared statements at the moment.
    It's more than string building for onwards processing.
    The SQL statement is parsed and optimised for execution by the RDBMS.
    The variable is inserted prior to execution by the optimiser.
    In general, it's a good thing to prepare when you can. Just trust me.
    Most DBAs will have a large list of their commonly executed statements.
    It's safer and they gain some element of control over the SQL being executed.

  • @WaynesvilleRC
    @WaynesvilleRC 11 років тому +6

    This guy is phenomenal; more of him please!

  • @ghelyar
    @ghelyar 11 років тому

    SEQUEL was different to SQL and used for ~12 years before the 1986 ANSI spec for SQL, in which the correct pronunciation is specified.
    It may be that the pronunciation was only even defined to avoid copyright infringement, but since it's in the spec the pronunciation is just as well defined as the "SELECT" keyword, for example. Just as you can't swap "choose" or "find" or "get" for "select" in a query, there is a pronunciation that is defined as correct and other pronunciations are non-spec.

  • @dunx125
    @dunx125 11 років тому

    I really like this guy, he speaks with passion and intelligence

  • @BasedLemur
    @BasedLemur 8 років тому +9

    Don't most websites send text through some secondary language's, like JS or something, function to clean the input before sending it to the actual database?

  • @Ferhard
    @Ferhard 11 років тому

    This is exactly what I just learned about in my database class today... Computerphile, are you stalking me?

  • @nickt906
    @nickt906 9 років тому +2

    This guy is great at teaching.

  • @toobeetoobeetoo
    @toobeetoobeetoo 11 років тому

    One of additional benefits of database prepared statements is they usually offer a performance boost in returning the data. Not a huge amount mind you, but it adds up. If you need more complexity in database queries than prepared statements can do, than any web application should be using stored procedures. It is this specific point that royally pisses off most web programmers, because they need to learn the internals of something else, and their easy money job just became much more complicated.

  • @unbelievable_truth_band
    @unbelievable_truth_band 6 років тому +4

    I know it's not the point of this video, but it's really nicely lit!

  • @sjmww1235
    @sjmww1235 10 років тому +245

    bobby drop table students anyone

  • @Firelynx87
    @Firelynx87 11 років тому

    Great video! i really enjoy listening to Tom!

  • @benjaminwyatt
    @benjaminwyatt 2 роки тому +2

    i think i'm the first person to have watched this series in the last 6 years lol

  • @onwul
    @onwul 11 років тому +1

    Firstly, a clarification: MySQL is a program what listens at a certain port for commands. Basically, its like a web-server. A PHP simply has a library what simplifies interaction with mysql program to a bunch of commands. So, PHP and MySQL are two different things, and SQL Injection applies to MySQL not to PHP. As someone who coded on PHP for 4+years, I think that language at its roots is a mess. Only way to make PHP something, is to rewrite everything from a scratch PROPERLY.

  • @abaltazar8
    @abaltazar8 11 років тому

    He clearly said it wasn't just a PHP specific problem. Great video!

  • @theNumberOne
    @theNumberOne 11 років тому

    Of course, in some cases stored procedures/functions can be better, but that often ties you to a particular database/infrastructure stack.
    It's a trade-off in your overall architecture. Lock yourself in with Stored Procedures, or be a little more flexible (useful in products you want to sell, especially to large businesses/enterprises).

  • @JoelLagunaYomama
    @JoelLagunaYomama 11 років тому +4

    I love the way his eyes turned when he says "...Microsoft Database..." lol

  • @bobsmith-ov3kn
    @bobsmith-ov3kn 9 років тому +3

    I am a professional database expert and I know that the language I am a specialist in, DB2, that 2 two things...
    1 - This has been a well known security issue for many years, and any DBM or security expert would be fully aware of these specific issues
    2 - Even if for whatever reason someone was able to input commands they shouldn't be allowed to input..
    2A - There are restrictions on who is allowed to perform what operations and on which table(s)(and even which individual records). Even if someone was able to hack the command stream and input malicious commands, any reasonable database will have very easy to implement restrictions that make sure nobody could ever do or view anything they aren't supposed to, and CERTAINLY not do any sort of potentially seriously disruptful actions like deleting data or dropping all databases, lol. Just a very simple restriction on any potentially powerful commands to only the database admins would nullify any of these potential threats.
    2B - Even IF something catastrophic was performed like "drop all databases" there are methods of restoring the database to previous states, not just by having BACKUPS saved somewhere, but by diagnostic logs that can be used to roll the environment back in time. I suppose it's possible to imagine a malicous attack that was smart enough and all-inclusive enough to delete all backups and relevant data needed to restore the environment, but just keeping a seperate copy of backups on a completely separate system would alleviate that possibility.

  • @Vulcapyro
    @Vulcapyro 11 років тому +1

    These sorts of practices make me cringe inside. I salute you for your continued efforts.

  • @boenrobot
    @boenrobot 11 років тому +1

    The real question in that case is what constitutes "its own program".
    You can run JavaScript via a browser, but the JavaScript code doesn't have to call browser specific (e.g. DOM) methods. You could (at least theoretically) write a JS code that works equally with a browser or with a server system (e.g. Node.js) or a build system (e.g. Visual Studio's ".w32" files). The language is all the same in all those environments. Only the non-core APIs of the runtime differ.

  • @Florent_ATo
    @Florent_ATo 11 років тому +2

    You're right. For me, using PDO implicitly means "use it properly" i.e alway prepare the statements.
    Thanks for pointing out.

  • @BradenBest
    @BradenBest 11 років тому

    Good point. All JavaScript execution is done in a JavaScript interpreter, typically written in C. But if you're going to make that distinction, then you might as well say the most common language is x86 machine language.

  • @farissaadat4437
    @farissaadat4437 8 років тому +8

    The recent ‘Super Mario World (1990)’ speedrun uses code injection in very fascinating ways that I don't understand. There is even a way to play PONG on the game using in-game sprites and complicated code injection.

  • @QuotePilgrim
    @QuotePilgrim 11 років тому

    Thank you. The analogy in the beginning is genius.

  • @TheDesius
    @TheDesius 9 років тому +27

    i am a greyhat hacker and always send this video to webmasters of vulnerable websites in the hope that they fix it

  • @IceMetalPunk
    @IceMetalPunk 11 років тому +2

    I'd like to hear more detail about other methods of injections. I've always been under the impression that properly escaping your inputs was enough to be safe...

  • @IbrahimDayax
    @IbrahimDayax 3 роки тому +3

    Who's here in 2022 when PHP has largely been replaced by Server side JS?

  • @murialvoid85
    @murialvoid85 2 роки тому +6

    Sequel? I prefer squirrel injection. Sounds a lot cooler.

  • @Kwpolska
    @Kwpolska 11 років тому

    And “proper handling” means query parameterization (prepared statements) - which was actually described in this video…
    But you can’t do it with PHP’s mysql_*, hence the “easier in PHP”.

  • @recklessroges
    @recklessroges 11 років тому

    I don't know what Chris is, but his comment just indicates that he is knowledgeable about PHP.

  • @Yodamanjaro
    @Yodamanjaro 9 років тому +28

    "Prepared statements" - this is also called parameterized queries, right?

  • @seemslegit319
    @seemslegit319 11 років тому

    I want a channel only with this guy