Hackers Can Phish with PLAINTEXT QR Codes

  Рет қаралды 61,522

John Hammond

John Hammond

Ай бұрын

jh.live/keeper || Keeper Security offers a privileged access management solution to deliver enterprise grade protection all in one unified platform -- keep your users, your data, and your environment secure with Keeper! jh.live/keeper
My scrappy Python code: github.com/JohnHammond/qr2uni...
Learn Cybersecurity - Name Your Price Training with John Hammond: nameyourpricetraining.com
📧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
🔥KZfaq ALGORITHM ➡ Like, Comment, & Subscribe!

Пікірлер: 138
@_JohnHammond
@_JohnHammond Ай бұрын
PS -- I see in the comments that `qrencode -t` would work just as well. That works great, but may still need some tweaking to be full-width characters and "monospace" to copy-paste into an email (or Sans font). Might be a worth a KZfaq Short 🤪
@darkshoxx
@darkshoxx Ай бұрын
There's always someone in the comments who has a faster/shorter solution 😆 This way round is the better story though 👍
@MrPrzescieradlo
@MrPrzescieradlo Ай бұрын
​@@darkshoxx There's also -m for setting the margin, which I found while writing the folowing (lil' optimisation for finding the margins): For finding the min and max, you could stop at the first black pixel you hit, as it will always be the top-left corner, and then loop from the [width, height] back to zero to find the right-bottom corner. This skips looping through the whole QR Couldn't stop myself when I saw the full-image scanning Edit: for block-size, from the top-left corner that we found, we can go diagonally until we find a white pixel. That means we're inside the 'marker' outer border = we're in block 2,2 Sorry for editing, I write as I watch
@pixl_xip
@pixl_xip Ай бұрын
You could use an empty braille character as a space. "⠀" U2800 I saw this in a video where the person made Flappy Bird as small as possible, using braille as the pixels. I can't find that video, though :(
@materialoperator
@materialoperator Ай бұрын
GPT says the same
@youtubecom3474
@youtubecom3474 Ай бұрын
Excellent video as always, sir! Would you consider doing a walk-through of my teams CTF for DC32?
@SirPeterlll
@SirPeterlll Ай бұрын
The company I work for did do the office 356 QR code email to see how many employees would fall for the scam. props for the Ciso team
@xliquidflames
@xliquidflames Ай бұрын
You know if you're using an Android phone, the camera app will scan QR codes without needing an app with ads. At least my Pixel does. Google Lens is tied into the camera app so if I just open the camera and hold it up, Lens recognizes there's a QR in the viewfinder and gives me the link. Edit: note to self - finish the video before commenting.
@paulstelian97
@paulstelian97 Ай бұрын
And on iOS you also have QR code scanning in the camera app.
@Terrain2
@Terrain2 Ай бұрын
It depends on the specific vendor. On some camera apps, it is not available (but on most it is). On LineageOS, it is a separate tab.
@OpenKeith
@OpenKeith Ай бұрын
There's also Binary Eye, which is a FOSS app that can scan all sorts of barcode types, not just QR codes
@ChrisWiley77
@ChrisWiley77 Ай бұрын
I like how your Hello World QR code looks like someone dancing and removing their hat right in the middle
@Linuxfy
@Linuxfy Ай бұрын
lol you right
@jamess3159
@jamess3159 Ай бұрын
Everyone's looks like that. Aren't you coding along?
@ZeroAlpha1173
@ZeroAlpha1173 Ай бұрын
I rewound the video to see this and it’s amazing. Thanks for your comment! 😊
@vaibhav3852
@vaibhav3852 Ай бұрын
Ha n1
@joshmalik5582
@joshmalik5582 Ай бұрын
Random thought... You can use Excel to display a QR code... in a variety of ways. An easy way is to use conditional formatting to shade the appropriate cells, and make the column width the same as the height. Pretty sure I did that for a CTF last year. Python is way cooler though! :-)
@JohnDlugosz
@JohnDlugosz Ай бұрын
Try the "Figure Space" (U+2007). But it depends on the font. There is a whole selection of spaces in different widths called -per-Em Space. The best thing to do is use the same character in different colors.
@twinbits-eu
@twinbits-eu Ай бұрын
The blank space in unicode should be U+00A0 (the infamous ALT+255) I wonder, for the sake of making it smaller, if we could use those half-blocks (upper-half and lower-half) together with the full block and the empty block, to sort of generate a QR code that's 4 times as small and has the same pixels :) I guess all we'd need would be to add an extra row at the end if the number of rows is odd, and then parse the rows 2 by 2, to compose each block.
@tutacat
@tutacat Ай бұрын
Yes, the qrencode tool does exactly this with it's utf8 output format
@JohnDlugosz
@JohnDlugosz Ай бұрын
No, the non-breaking space is exactly the same size as the normal ' ' character.
@TheTrainWatch
@TheTrainWatch Ай бұрын
I was thinking the same on using the half blocks.
@IlliaZhdanov
@IlliaZhdanov Ай бұрын
why not the zero width non-joiner?
@IlliaZhdanov
@IlliaZhdanov Ай бұрын
\u200c
@jmr
@jmr Ай бұрын
I was not getting the concept of "plaintext QR" at first. AWESOME idea! 😆
@fiercethundr_
@fiercethundr_ Ай бұрын
I think a braille empty character could have worked as a spacer in this case. Not really sure if it is the exact same width as any of the blocks off the top of my head, but could also possibly work with one of the different width blocks regardless.
@darkshoxx
@darkshoxx Ай бұрын
my thoughts exactly
@TheRealMangoDev
@TheRealMangoDev Ай бұрын
ye that “invisible” one
@aidan7913
@aidan7913 Ай бұрын
or since its an email, literally just changing the font color to white and use the same character, just in white
@darkshoxx
@darkshoxx Ай бұрын
@@aidan7913 Nof if the recipient uses dark mode
@aidan7913
@aidan7913 Ай бұрын
@@darkshoxx usually you can send an email with custom styling that isn't overwritten by the email client. dark mode doesn't matter if you set some html element to have a background color
@darkshoxx
@darkshoxx Ай бұрын
Beautiful. Amazing idea, easily understandable solution. For empty characters I recommend U+2800 which is the empty Braille character. The Braille characters are often used for pixel art in things like twitch chat, and that one “⠀” should have the right size no matter which font.
@alek002
@alek002 Ай бұрын
Cool
@jondoe-xk6jw
@jondoe-xk6jw Ай бұрын
An alternate (and slightly faster) way to determine block size is to march along the diagonal from the first black pixel to the first white along x=y from the top left corner as per qr spec that will be your first "block".The top left positioning marker will always be 1 block thin.
@jamess3159
@jamess3159 Ай бұрын
This code is brilliant. You rock man, did you come up with this algorithm yourself? Good stuff!
@luketurner314
@luketurner314 Ай бұрын
15:35 (-ish) you could combine lines 40-43 into a one-liner: row.append(int(middle_pixel_value < binary_threshold)) because int(True) == 1 and int(False) == 0 maybe less readable, but might run a tiny bit faster
@Supstone8519
@Supstone8519 Ай бұрын
That really isn't a bad idea for a phishing campaign at all John. Nice job man.
@Crysal
@Crysal Ай бұрын
I remember I wrote a bash script(just some loops with ImageMagick inside) that would translate an image to morse code based on the black and white pixels. I thought this could also be done with a QR image, when instead of dot/dash, just set it to a binary 0 or 1. Then later just replace the 0s with the White Square and the 1s with a Black Square and put a newline at the Nth character
@babayaga5225
@babayaga5225 28 күн бұрын
That was awesome, Loved the video!
@ShinobuFX
@ShinobuFX Ай бұрын
This is actually really smart!
@trif169
@trif169 Ай бұрын
I like the sound of this one !
@tutacat
@tutacat Ай бұрын
Gnome switched to Loupe image viewer. Also `qrencode -t UTF8` will do that for you. Lol, always RTM But someone seeing an ASCII QR code will be more wary, maybe.
@cyber_space09
@cyber_space09 15 күн бұрын
That's Qr code so cute i like this video thank you SM ❤😂
@unknownlordd
@unknownlordd Ай бұрын
Beautiful t-shirt John
@Chiberia
@Chiberia Ай бұрын
Shoot, even the ASCII table has block characters. I used them regularly in the '90s to create DOS UIs.
@icantcomeupwithnames469
@icantcomeupwithnames469 Ай бұрын
ASCII does not, you're probably thinking of CP437.
@DerMarkus1982
@DerMarkus1982 Ай бұрын
@@icantcomeupwithnames469 Ah, the infamous " MODE CON CODEPAGE PREPARE=(437, C:\DOS\EGA.CPI) MODE CON CODEPAGE SELECT=437 " (Whoops, I never got *that Emoji-selector* before ! Was that a Windows Update, or is Win+[Period] hijacked by YT?)
@tinolm6202
@tinolm6202 Ай бұрын
Audio slightly off?
@MrJasonDEX
@MrJasonDEX Ай бұрын
I generally thought it was cos I had earphones on but less it not me 😅
@ak0904
@ak0904 Ай бұрын
seems like it
@Frensissz
@Frensissz Ай бұрын
Please John may you tell us your keyboard brand/model? That looks so nice and the sound as well. That would be so appreciated! Love the content as always
@user-rl3nv1qk3s
@user-rl3nv1qk3s Ай бұрын
hi John i need your advice: what's the important concepts i have to focus on it in network for a beginner hacker
@Schmoogie
@Schmoogie Ай бұрын
A different approach to distributing QR Codes that's perhaps less spearphish-y would be printing out a bunch of stickers with a malicious QR Code and putting them up around town. Bonus points for getting some buddies to print some in other towns too.
@ParrotParrot
@ParrotParrot Ай бұрын
You have uniform white space baked into the quadrants/halves in the very unicode table you've shown in the video.
@6g8j5f9k2d
@6g8j5f9k2d Ай бұрын
you could've used a blank braille pattern (u2800) as a replacement for the spaces
@zwatotem
@zwatotem Ай бұрын
I think you could use the quadrant characters to make the code 4 times smaller and better fit on screens.
@Alfred-Neuman
@Alfred-Neuman Ай бұрын
That's genius
@XSpImmaLion
@XSpImmaLion Ай бұрын
Neat! Fun stuff. This is how lots of image to ASCII app thinguies work btw. xD Turn image file into a matrix of numbers, replace numbers with ASCII characters of choice, print it out. For the QR Code phishing though... can't e-mail administrators just drop all e-mail that comes with this set of ASCII characters that can be used to reproduce QR codes though? Really asking, I dunno how much filtering you can really do. Can't really do it with a filter that only excludes images from e-mail, but if you have full access to text, probably, right?
@Ridful
@Ridful 26 күн бұрын
I believe vertical tabs should be used instead of newlines in the qr code in order to get rid of the gap between each line
@Gordin508
@Gordin508 Ай бұрын
Since you mentioned qrencode, is the python script any different from what "qrencode -t utf8" does?
@shamringo7438
@shamringo7438 Ай бұрын
Nothing really I think he’s just padding the video because this whole python section is totally obsolete. I guess probably it won’t align well with some mail clients maybe
@tutacat
@tutacat Ай бұрын
@@shamringo7438 He didn't RFM
@johnlockie
@johnlockie Ай бұрын
Blocking QR codes is incredibly challenging. This is like asking admins to "block any email with an image of a chair"....except even worse w/ QR codes because you actually need to extract what the QR code is doing and where it sends you, analyze that, and then block or forward the message. So, "find anything that looks like a 'chair' in the email, extract the color of the chair and then only allow green chairs to be sent, block all other chairs". Way harder than people think.
@johnlockie
@johnlockie Ай бұрын
And keep in mind there are more ways to display QR besides ASCII (and of course PNG/JPG, etc.). You can do this in CSS, HTML tables, SVG, Excel (yes paint the cells and form a qr code in an EXCEL document that would almost certainly bypass ALL MTA security). Vector Markup Language is yet another potential method....
@dealloc
@dealloc Ай бұрын
It's really not hard to detect QR codes... this is literally how QR code scanners work; detect the QR code and decode it-that's the whole point of barcodes in general; to be easily machine-readable in many different conditions. A QR code just contains plain text so you can interpret the content however you want. It's not at all comparable with detecting chairs in an image. And if you think detecting non-image variants of QR codes would be hard, think again; simply render the email/content into an image (i.e. via. a browser) and perform the detection... like any scanner does; and it won't be slow either, even with a low-end CPU.
@capability-snob
@capability-snob Ай бұрын
Corporate environments often just block all images by default from external senders. You can enable them on a per-sender basis.
@johnlockie
@johnlockie Ай бұрын
@@capability-snob you’re trolling right? LOL
@capability-snob
@capability-snob Ай бұрын
​@@johnlockieI work in a company of >5000 information workers. I'm in an app dev team; so I'd make different decisions to IT, but our outlook 365 instance blocks images by default. I've seen worse. In one branch of state government, we couldn't even _receive_ emails from outside addresses without first getting ourselves added to a special list. Imagine the fun of discovering that one for the first time.
@anthirian
@anthirian Ай бұрын
You probably could have saved yourself a lot of time with qrencode’s -t flag that allows outputting to various text-based formats 😉
@MikeyMacc
@MikeyMacc Ай бұрын
Wouldn't the "em space" work or would plain text render it as a normal space
@chriseddisford1834
@chriseddisford1834 Ай бұрын
Great video
@RandomytchannelGD
@RandomytchannelGD Ай бұрын
11:56 that’s when you know you program in js too much
@Jelte_Dijkmans
@Jelte_Dijkmans Ай бұрын
or C or C++ or C# or quite literally most programming languages
@JohnDlugosz
@JohnDlugosz Ай бұрын
Instead of nested loops with if/else logic inside it, you should just use `map`. Say what you mean: replacing two values with two strings should be stated directly, not explained how to do it in elaborate detail.
@lancemarchetti8673
@lancemarchetti8673 Ай бұрын
What a time to be alive
@darkshoxx
@darkshoxx Ай бұрын
I spot a dear fellow scholar 😄
@logiciananimal
@logiciananimal Ай бұрын
Isn't UTF (anything) encoded email against the RFC for the various email protocols?
@mollthecoder
@mollthecoder Ай бұрын
Doubt it, because that would mean you'd only be able to email in English.
@motbus3
@motbus3 Ай бұрын
The reason for the black boxes us for you not check the whole image
@ghostbr9136
@ghostbr9136 Ай бұрын
Menus at restaurants are mostly phising 😊😊😊
@Lampe2020
@Lampe2020 Ай бұрын
10:19 How did that not crash?!? When I tried indexing like pixels[x,y] instead of pixels[x][y] it crashed with a TypeError telling me list indices must be integers or slices, not tuples.
@elnutsio
@elnutsio Ай бұрын
Cool!
@CodeMonkeyNinja
@CodeMonkeyNinja Ай бұрын
Just curious, why not just do `$ qrencode -t UTF8 --casesensitive --8bit "$URL"` (replace var URL or string such as "hello world") from BASH?
@user-dc5bf5lv7j0
@user-dc5bf5lv7j0 Ай бұрын
Estaria bueno algo de android reverse tcp. 😂😂 exelente video
@tutacat
@tutacat Ай бұрын
Python supports UTF8 in strings...
@vaibhav3852
@vaibhav3852 Ай бұрын
Haha "no one matter, nothing cares" This man can communicate to code like none of us can but struggles to communicate with his fellow beings
@SolitaryElite
@SolitaryElite Ай бұрын
damn thats crazy
@perlind393
@perlind393 Ай бұрын
QR codes has its uses but the problem is how do I verify that I'm using the correct QR code . The next thing is how do we inform the users what is a safe QR code ? The words "O its safe it's from iIT they used QR codes for wifi so this must be safe"
@Zachsnotboard
@Zachsnotboard Ай бұрын
Wow is this in the wild, Or did you come up with this ?
@Lightnang_
@Lightnang_ Ай бұрын
Ah the nice audio sync
@Zachsnotboard
@Zachsnotboard Ай бұрын
Isn’t there a cmd tool to make QR codes ?
@luketurner314
@luketurner314 Ай бұрын
2:48 I was expecting a "plz sub"
@carsonjamesiv2512
@carsonjamesiv2512 Ай бұрын
DING!😁
@barbar1an_
@barbar1an_ 19 күн бұрын
I never scan any qr codes to begin with or open links sent in email or by sms, I know some are propably safe but better safe than sorry
@RandomytchannelGD
@RandomytchannelGD Ай бұрын
Hi
@niranjanchoudhary3950
@niranjanchoudhary3950 Ай бұрын
Money and can't return me how to return this
@bluefire2505
@bluefire2505 Ай бұрын
Luckily for us, only 18k people saw it
@lukchem
@lukchem Ай бұрын
Couldn’t you use the Square Emojis as black and white, if they would have the perfect size. (⬜️⬛️)
@wennefer5426
@wennefer5426 Ай бұрын
how long the QR works ? ,forever whitout payment ?
@Lumina9306
@Lumina9306 Ай бұрын
a QR is just generated once and costs nothing, it works forever :)
@ChichaGad
@ChichaGad Ай бұрын
There are already npm packages specifically for this purpose Great video anyways
@silvncr
@silvncr 22 күн бұрын
"no-one matters and nothing cares" 💀
@niranjanchoudhary3950
@niranjanchoudhary3950 Ай бұрын
Sir some people cheat with my
@fimdy6530
@fimdy6530 Ай бұрын
i just pissed on my wall
@shivammittal657
@shivammittal657 Ай бұрын
nothing is freee dear sir there is a hiddden ajenda
@professional.hacker.
@professional.hacker. Ай бұрын
Hi have you heard of Occupy Theweb John? Just wondering if you do know him...
@wennefer5426
@wennefer5426 Ай бұрын
if not... he should
@matteovalentino4890
@matteovalentino4890 Ай бұрын
Brother what
@professional.hacker.
@professional.hacker. Ай бұрын
@@matteovalentino4890 what what???
@Safvanviber-xm3pn
@Safvanviber-xm3pn Ай бұрын
i found a bug in this video 😂
@ph4seon3
@ph4seon3 Ай бұрын
😈
@nixoncode
@nixoncode Ай бұрын
i don't think he offers bug bounty
@Safvanviber-xm3pn
@Safvanviber-xm3pn Ай бұрын
@@nixoncode its like self xss bro nit in the scope 🙂😹
@cheesiestmaster879
@cheesiestmaster879 Ай бұрын
U+3000
@Tallteenn
@Tallteenn Ай бұрын
ok am i pinned?
@masterluu8
@masterluu8 Ай бұрын
This was confusing. I thought I'd learn something about the inner workings of qr codes and how attackers use them for exploitation. Instead we built a janky qrcode image parser. Like why? Every Python qrcode library will give you the raw qrcode, no need for conversion or pixel scaling. Some even create UTF8 character arrays or ASCII art output, which would have achieved the exact same thing, ready to use. Instead of "Hackers Can Phish with PLAINTEXT QR Codes" this was mostly "How to read an image using PIL and look at each pixels color value".
@YoutubeWatcher264
@YoutubeWatcher264 Ай бұрын
Same here. Didn't get the point of the script. Was waiting for the hack thing.
@TheBBoyQ
@TheBBoyQ Ай бұрын
Thought I was the only one who noticed that...
@YoutubeWatcher264
@YoutubeWatcher264 Ай бұрын
@@TheBBoyQ Clickbait titles youtubers make.
@sabamalikvlog3879
@sabamalikvlog3879 Ай бұрын
Sir I have lost my 8 lack yesterday plz help me out plzzz
@madhavharikumar6423
@madhavharikumar6423 Ай бұрын
People can create say a phishing website and generate a qr code for that and scam the ppl right???🤔
@kerhabplays
@kerhabplays Ай бұрын
@madatch9947
@madatch9947 Ай бұрын
First🎉
@iamwitchergeraltofrivia9670
@iamwitchergeraltofrivia9670 Ай бұрын
More malware hahahahahahhaha
@scb8858
@scb8858 Ай бұрын
QR codes are not a threat at all. It's the embedded URL links like any other links that could lead to a page that has a threat on it. So QR codes themselves are not dangerous to scan. The title is misleading.
@LinuxJedi
@LinuxJedi Ай бұрын
you didn’t know this?? 😂
Don't Forget This One Hacking Trick
14:39
John Hammond
Рет қаралды 57 М.
How to Scan QR Code on WhatsApp | WhatsApp Guide
0:28
One Stop Solution
Рет қаралды 105 М.
ONE MORE SUBSCRIBER FOR 4 MILLION!
00:28
Horror Skunx
Рет қаралды 58 МЛН
船长被天使剪成光头了?#天使 #小丑 #超人不会飞
00:28
超人不会飞
Рет қаралды 19 МЛН
Do you like a chocolate surprise egg?🥚🍫🥰 #demariki
00:32
This Guy BUILT His Own Graphics Card!
6:21
Techquickie
Рет қаралды 127 М.
My OrangeStorm Giga is Dead
13:59
3D Printing Nerd
Рет қаралды 33 М.
Can a PDF File be Malware?
22:26
John Hammond
Рет қаралды 77 М.
14 inches of GREATNESS - HP OMEN Transcend 14
12:29
ShortCircuit
Рет қаралды 178 М.
How to Hire a Hacker on the Dark Web
4:13
Dark Web Hacker
Рет қаралды 38
How Are QR Codes Hacked? SQL Injections
12:31
Sumsub
Рет қаралды 57 М.
It's embarrassing how much I like this thing.
12:19
Linus Tech Tips
Рет қаралды 943 М.
pro hacker teaches you how to bypass this!
8:12
Loi Liang Yang
Рет қаралды 509 М.
Access Location, Camera  & Mic of any Device 🌎🎤📍📷
15:48
ONE MORE SUBSCRIBER FOR 4 MILLION!
00:28
Horror Skunx
Рет қаралды 58 МЛН