Тёмный

Interactive SQL Injection 

John Hammond
Подписаться 1,8 млн
Просмотров 23 тыс.
50% 1

Try the Interactive SQL Injection hub on Hacking Hub! jh.live/hackin...
Learn Cybersecurity - Name Your Price Training with John Hammond: nameyourpricet...
Learn Coding: jh.live/codecr...
WATCH MORE:
Dark Web & Cybercrime Investigations: • Tracking Cybercrime on...
Malware & Hacker Tradecraft: • Malware Analysis & Thr...
📧JOIN MY NEWSLETTER ➡ jh.live/email
🙏SUPPORT THE CHANNEL ➡ jh.live/patreon
🤝 SPONSOR THE CHANNEL ➡ jh.live/sponsor
🌎FOLLOW ME EVERYWHERE ➡ jh.live/twitter ↔ jh.live/linkedin ↔ jh.live/discord ↔ jh.live/instagram ↔ jh.live/tiktok
💥 SEND ME MALWARE ➡ jh.live/malware
🔥RU-vid ALGORITHM ➡ Like, Comment, & Subscribe!

Опубликовано:

 

16 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 66   
@robbertvriens4351
@robbertvriens4351 19 дней назад
It’s a common misconception that you will get the first record when adding LIMIT 1 to a SELECT statement. You will get 1 record, but unless you specify the ORDER BY, it’s up to the database to provide you with any record.
@carius989
@carius989 16 дней назад
Yeah, recently had that at work. Postgres for example orders by an internal row named "ctid" by default. Thats the location of the row within the table. I initially thought the ctid would only change when a row is updated. My usecase was to store data from the last x days in the table and never update rows, but just add new ones and delete old ones with a cron trigger. I then discovered that ctid can change, even if the rows are not updated. Postgres sometimes automatically runs a "vacuum" (cleanup) that frees up space after rows are deleted. That can change the ctids of the existing rows even tho they are not updated. I then added a real index number to sort the rows for each day
@bluesquare23
@bluesquare23 14 дней назад
Good to know!
@watermelonpiebread
@watermelonpiebread 19 дней назад
The reason it always expects you to use id='0' or just '' is because you have to remove the original query's output to make your added result the first row. In a real-world situation, only the first row is returned as the article content on the web page. Subsequent rows are ignored. So they made that form look like a browser window.
@jonmayer
@jonmayer 19 дней назад
Yes, I'm surprised he didn't get this to explain it better. Showing the actual query results were hindering him from teaching the lesson actually.
@CoastalCult
@CoastalCult 19 дней назад
Just being very blunt and honest here. US $80 for a single module is quite an ask.
@BuildHackSecure
@BuildHackSecure 19 дней назад
Nooo, that’s for the whole course which includes the SQLi module , and there’s a 50% discount.
@cinderwolf32
@cinderwolf32 10 дней назад
If anyone is learning SQL from this please note that from a developer perspective, at least with MySQL, LIMIT 1 OFFSET 1 is the proper way to perform pagination since it's far more expressive than LIMIT 1,1
@Divino_1
@Divino_1 8 дней назад
far less
@ai-spacedestructor
@ai-spacedestructor 19 дней назад
dont know about the guys mentioned but i would personally find it funny if randomly after multiple years of career an expert would tweet that they just finished the beginners course.
@DavidAlvesWeb
@DavidAlvesWeb 19 дней назад
what's wrong with that? shouldn't we revisit the fundamentals every once in a while? it's always nice to get a refresher on fundamental concepts!
@ai-spacedestructor
@ai-spacedestructor 19 дней назад
@DavidAlvesWeb I didn't say that, funny doesn't mean bad. Funny means funny, if you have trouble with the definition I suggest going to elementary school before using RU-vid.
@Aba-abdelmasih
@Aba-abdelmasih 19 дней назад
​@@ai-spacedestructor Lmfao
@bakurathewerewolf8121
@bakurathewerewolf8121 19 дней назад
i just started watching your videos couple weeks ago and it's really making me want to learn how to code or program but I feel dum XD but want to learn
@nordgaren2358
@nordgaren2358 19 дней назад
Don't feel dumb. Just get started. It just takes time to learn, but you can do it! I promise!
@ASI_SOLUTION
@ASI_SOLUTION 19 дней назад
I have tried to do so much courses but I haven't completed lets see from start
@shaikhwaqas-m3l
@shaikhwaqas-m3l 19 дней назад
we need merchs !! :D
@DavidRomigJr
@DavidRomigJr 19 дней назад
As another poster pointed out, you kept getting answers occasionally wrong because you would return article data in those attempts in the first row. The faux web page was only showing the first row, so you were not showing any secret data at all. To remove the article data being returned you need to set id to a non-match, such as 0 or empty string, anything but 1 in this case.
@N1ckdgr8
@N1ckdgr8 19 дней назад
Hey @John Hammond, I remember there was a CTF making competition where we can submit our challenges and they will be reviewed and awarded later. I created one challenge and submitted but never heard back ?? Im curious what happened?
@mprokop6
@mprokop6 19 дней назад
quite a steep price, when compared to THM
@beck2424
@beck2424 19 дней назад
You have a typo on the instructions of part 7 - "in descening order", missing the "d" in "descending"
@tatubr2
@tatubr2 19 дней назад
Nice!
@sad_man_no_talent
@sad_man_no_talent 19 дней назад
OHH John hammond I never thought u didn't knew password is first encrypted and then saved to the database
@nordgaren2358
@nordgaren2358 19 дней назад
Depends on the implementation?
@sad_man_no_talent
@sad_man_no_talent 19 дней назад
@@nordgaren2358 I mean it's best practice though it's even in the OWASP
@AyaanAhmado
@AyaanAhmado 19 дней назад
I missed this kind of content keep it up Hammond this is refreshing to watch🎉
@shaikhwaqas-m3l
@shaikhwaqas-m3l 19 дней назад
John my favorite cyber security person, you the GOAT
@AfarTech
@AfarTech 19 дней назад
Nice bro
@nathancoats6432
@nathancoats6432 19 дней назад
You guys are GANGSTA!
@JackBright4908
@JackBright4908 19 дней назад
I got 2 questions: how much does it cost to make it from start to finish Does it teach from total noob to certified expert
@fsbgaming1588
@fsbgaming1588 19 дней назад
does owasp and asvs help as std? or there any better way
@ChristophHellmann
@ChristophHellmann 19 дней назад
Will prepared statements protect from this?
@danielmuthama7288
@danielmuthama7288 19 дней назад
Please take us through the last test in another video please
@kikkerpoesGD
@kikkerpoesGD 19 дней назад
At 2:03 the leaderboard icon is the same as the logo of gemairo
@Gli7chSec
@Gli7chSec 19 дней назад
Nice
@iblackfeathers
@iblackfeathers 19 дней назад
2:08 in that video shot i thought it was a man with a loud print shirt sitting in front of a table. then i later realised there is a laptop right there. 😂 the print in the laptop almost makes it camouflaged... that would be funny to make laptop skins that match tshirts you are wearing and coordinate your outfit with your laptop.
@BuildHackSecure
@BuildHackSecure 19 дней назад
Hahaha, that’s me, I never noticed until now that it does blend in a little too much haha😂
@notavoicechanger1808
@notavoicechanger1808 19 дней назад
24:24, any Missouri government work..
@januzi2
@januzi2 19 дней назад
Is it possible to ban unions? That would solve some problems.
@DavidRomigJr
@DavidRomigJr 19 дней назад
Careful looking up Little Bobby Table’s user info by name. ;)
@ethio_viral_tiktok
@ethio_viral_tiktok 19 дней назад
@JonasRexFrelsøy
@JonasRexFrelsøy 19 дней назад
We ned merch
@Bleppacus
@Bleppacus 19 дней назад
Just sproc all the things.
@ricardoruiz3986
@ricardoruiz3986 19 дней назад
Can I help with this UI, it needs help lol
@DJPalsyP
@DJPalsyP 19 дней назад
Seeing no backticks is testing my OCD 😏🤪
@JonasRexFrelsøy
@JonasRexFrelsøy 19 дней назад
We ned merch😊
@cristianfernandez1032
@cristianfernandez1032 19 дней назад
My brother what is that UI 😢
@qis2999
@qis2999 19 дней назад
HELLO "FRIEND" !! 🤣🤣🤣🤣
@Karl2Peter
@Karl2Peter 18 дней назад
"new"?
@JonasRexFrelsøy
@JonasRexFrelsøy 19 дней назад
Bro I love it❤
@mrp6k490
@mrp6k490 19 дней назад
That AI generated image as the thumbnail looks terrible.
@chemicalvideobee2993
@chemicalvideobee2993 19 дней назад
Is it terrible because it’s AI or terrible because it’s terrible
@mrp6k490
@mrp6k490 19 дней назад
@@chemicalvideobee2993 terrible because its terrible mostly. Could be biased tho
@fluffsquirrel
@fluffsquirrel 19 дней назад
I think he fixed it, it's just code now
@DetectiveNoir_
@DetectiveNoir_ 19 дней назад
@@mrp6k490 poor John took your comment personally and replaced the thumbnail with SQL queries 😭
@mrp6k490
@mrp6k490 19 дней назад
@@DetectiveNoir_ hey, only super honest feedback over here ;)
@RandomytchannelGD
@RandomytchannelGD 19 дней назад
Hi
@fbfnysnshnsgnwgGD
@fbfnysnshnsgnwgGD 19 дней назад
enroll is spelt wrong at 1:53. it is spelt enrol
@CoastalCult
@CoastalCult 19 дней назад
Both are acceptable spelling
@BuildHackSecure
@BuildHackSecure 19 дней назад
In the U.K it’s usually enrol, we fought about this one haha😂
@ibox361
@ibox361 19 дней назад
First
@carsonjamesiv2512
@carsonjamesiv2512 19 дней назад
😃👍
@fadiallo1
@fadiallo1 19 дней назад
SQL Injection
Далее
Self-Extracting Executables for Hackers
41:06
Просмотров 50 тыс.
I Went To DEFCON!
16:25
Просмотров 205 тыс.
КОГДА МАМА НАШЛА ТЕБЕ НЕВЕСТУ
00:55
Finding WEIRD Devices on the Public Internet
27:48
Просмотров 283 тыс.
The Phishing Website that Hacked Linus Tech Tips
27:11
Просмотров 340 тыс.
Recover Quarantined Malware
25:06
Просмотров 47 тыс.
Harder Drive: Hard drives we didn't want or need
36:47
What is DNS? (and how it makes the Internet work)
24:22
Use Java For Everything
38:35
Просмотров 371 тыс.
Why More People Dont Use Linux
18:51
Просмотров 218 тыс.
Notepad.exe Will Snitch On You (full coding project)
53:30
Snip3 Crypter/RAT Loader - DcRat MALWARE ANALYSIS
1:42:04