Hackers Can Phish with PLAINTEXT QR Codes

Поделиться
HTML-код
  • Опубликовано: 25 мар 2024
  • 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
    🔥RUclips ALGORITHM ➡ Like, Comment, & Subscribe!

Комментарии • 137

  • @_JohnHammond
    @_JohnHammond  2 месяца назад +36

    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 RUclips Short 🤪

    • @darkshoxx
      @darkshoxx 2 месяца назад +4

      There's always someone in the comments who has a faster/shorter solution 😆 This way round is the better story though 👍

    • @MrPrzescieradlo
      @MrPrzescieradlo 2 месяца назад +1

      ​@@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 2 месяца назад +2

      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 2 месяца назад

      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 2 месяца назад +13

    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

  • @ChrisWiley77
    @ChrisWiley77 2 месяца назад +78

    I like how your Hello World QR code looks like someone dancing and removing their hat right in the middle

    • @Linuxfy
      @Linuxfy 2 месяца назад +2

      lol you right

    • @jamess3159
      @jamess3159 2 месяца назад +1

      Everyone's looks like that. Aren't you coding along?

    • @ZeroAlpha1173
      @ZeroAlpha1173 2 месяца назад

      I rewound the video to see this and it’s amazing. Thanks for your comment! 😊

    • @vaibhav3852
      @vaibhav3852 2 месяца назад

      Ha n1

  • @xliquidflames
    @xliquidflames 2 месяца назад +41

    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 2 месяца назад +1

      And on iOS you also have QR code scanning in the camera app.

    • @sodiboo
      @sodiboo 2 месяца назад +1

      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 2 месяца назад +3

      There's also Binary Eye, which is a FOSS app that can scan all sorts of barcode types, not just QR codes

  • @joshmalik5582
    @joshmalik5582 2 месяца назад +18

    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 2 месяца назад +1

    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 2 месяца назад +12

    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 2 месяца назад +2

      Yes, the qrencode tool does exactly this with it's utf8 output format

    • @JohnDlugosz
      @JohnDlugosz 2 месяца назад

      No, the non-breaking space is exactly the same size as the normal ' ' character.

    • @TheTrainWatch
      @TheTrainWatch 2 месяца назад

      I was thinking the same on using the half blocks.

    • @IlliaZhdanov
      @IlliaZhdanov 2 месяца назад

      why not the zero width non-joiner?

    • @IlliaZhdanov
      @IlliaZhdanov 2 месяца назад

      \u200c

  • @jmr
    @jmr 2 месяца назад +1

    I was not getting the concept of "plaintext QR" at first. AWESOME idea! 😆

  • @jamess3159
    @jamess3159 2 месяца назад +1

    This code is brilliant. You rock man, did you come up with this algorithm yourself? Good stuff!

  • @fiercethundr_
    @fiercethundr_ 2 месяца назад +13

    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 2 месяца назад

      my thoughts exactly

    • @TheRealMangoDev
      @TheRealMangoDev 2 месяца назад

      ye that “invisible” one

    • @aidan7913
      @aidan7913 2 месяца назад

      or since its an email, literally just changing the font color to white and use the same character, just in white

    • @darkshoxx
      @darkshoxx 2 месяца назад +1

      @@aidan7913 Nof if the recipient uses dark mode

    • @aidan7913
      @aidan7913 2 месяца назад

      @@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 2 месяца назад +2

    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 2 месяца назад

      Cool

  • @Supstone8519
    @Supstone8519 2 месяца назад

    That really isn't a bad idea for a phishing campaign at all John. Nice job man.

  • @luketurner314
    @luketurner314 2 месяца назад

    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

  • @jondoe-xk6jw
    @jondoe-xk6jw 2 месяца назад

    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.

  • @babayaga5225
    @babayaga5225 Месяц назад

    That was awesome,
    Loved the video!

  • @Chiberia
    @Chiberia 2 месяца назад +6

    Shoot, even the ASCII table has block characters. I used them regularly in the '90s to create DOS UIs.

    • @icantcomeupwithnames469
      @icantcomeupwithnames469 2 месяца назад +1

      ASCII does not, you're probably thinking of CP437.

    • @DerMarkus1982
      @DerMarkus1982 2 месяца назад

      @@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?)

  • @unknownlordd
    @unknownlordd 2 месяца назад

    Beautiful t-shirt John

  • @tutacat
    @tutacat 2 месяца назад +1

    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 Месяц назад +1

    That's Qr code so cute i like this video thank you SM ❤😂

  • @trif169
    @trif169 2 месяца назад +3

    I like the sound of this one !

  • @ShinobuFX
    @ShinobuFX 2 месяца назад

    This is actually really smart!

  • @tinolm6202
    @tinolm6202 2 месяца назад +10

    Audio slightly off?

    • @MrJasonDEX
      @MrJasonDEX 2 месяца назад

      I generally thought it was cos I had earphones on but less it not me 😅

    • @ak0904
      @ak0904 2 месяца назад

      seems like it

  • @Crysal
    @Crysal 2 месяца назад

    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

  • @RandomytchannelGD
    @RandomytchannelGD 2 месяца назад +5

    11:56 that’s when you know you program in js too much

    • @Jelte_Dijkmans
      @Jelte_Dijkmans 2 месяца назад +3

      or C or C++ or C# or quite literally most programming languages

  • @Gordin508
    @Gordin508 2 месяца назад +4

    Since you mentioned qrencode, is the python script any different from what "qrencode -t utf8" does?

    • @shamringo7438
      @shamringo7438 2 месяца назад +1

      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 2 месяца назад

      @@shamringo7438 He didn't RFM

  • @Frensissz
    @Frensissz 2 месяца назад

    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 2 месяца назад

    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 2 месяца назад

    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.

  • @chriseddisford1834
    @chriseddisford1834 2 месяца назад

    Great video

  • @6g8j5f9k2d
    @6g8j5f9k2d 2 месяца назад +1

    you could've used a blank braille pattern (u2800) as a replacement for the spaces

  • @anthirian
    @anthirian 2 месяца назад +2

    You probably could have saved yourself a lot of time with qrencode’s -t flag that allows outputting to various text-based formats 😉

  • @Ridful
    @Ridful Месяц назад

    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

  • @XSpImmaLion
    @XSpImmaLion 2 месяца назад

    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?

  • @ParrotParrot
    @ParrotParrot 2 месяца назад

    You have uniform white space baked into the quadrants/halves in the very unicode table you've shown in the video.

  • @Lampe2020
    @Lampe2020 2 месяца назад +1

    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.

  • @johnlockie
    @johnlockie 2 месяца назад

    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 2 месяца назад

      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 2 месяца назад

      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 2 месяца назад

      Corporate environments often just block all images by default from external senders. You can enable them on a per-sender basis.

    • @johnlockie
      @johnlockie 2 месяца назад

      @@capability-snob you’re trolling right? LOL

    • @capability-snob
      @capability-snob 2 месяца назад

      ​@@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.

  • @CodeMonkeyNinja
    @CodeMonkeyNinja 2 месяца назад

    Just curious, why not just do `$ qrencode -t UTF8 --casesensitive --8bit "$URL"` (replace var URL or string such as "hello world") from BASH?

  • @zwatotem
    @zwatotem 2 месяца назад

    I think you could use the quadrant characters to make the code 4 times smaller and better fit on screens.

  • @vaibhav3852
    @vaibhav3852 2 месяца назад

    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

  • @MikeyMacc
    @MikeyMacc Месяц назад

    Wouldn't the "em space" work or would plain text render it as a normal space

  • @logiciananimal
    @logiciananimal 2 месяца назад

    Isn't UTF (anything) encoded email against the RFC for the various email protocols?

    • @mollthecoder
      @mollthecoder 2 месяца назад +1

      Doubt it, because that would mean you'd only be able to email in English.

  • @Alfred-Neuman
    @Alfred-Neuman 2 месяца назад +1

    That's genius

  • @lancemarchetti8673
    @lancemarchetti8673 2 месяца назад +1

    What a time to be alive

    • @darkshoxx
      @darkshoxx 2 месяца назад

      I spot a dear fellow scholar 😄

  • @elnutsio
    @elnutsio 2 месяца назад

    Cool!

  • @ghostbr9136
    @ghostbr9136 2 месяца назад

    Menus at restaurants are mostly phising 😊😊😊

  • @JohnDlugosz
    @JohnDlugosz 2 месяца назад

    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.

  • @luketurner314
    @luketurner314 2 месяца назад

    2:48 I was expecting a "plz sub"

  • @user-dc5bf5lv7j0
    @user-dc5bf5lv7j0 2 месяца назад

    Estaria bueno algo de android reverse tcp. 😂😂 exelente video

  • @motbus3
    @motbus3 2 месяца назад

    The reason for the black boxes us for you not check the whole image

  • @tutacat
    @tutacat 2 месяца назад

    Python supports UTF8 in strings...

  • @Zachsnotboard
    @Zachsnotboard 2 месяца назад

    Wow is this in the wild, Or did you come up with this ?

  • @bluefire2505
    @bluefire2505 2 месяца назад

    Luckily for us, only 18k people saw it

  • @Lightnang_
    @Lightnang_ 2 месяца назад

    Ah the nice audio sync

  • @Zachsnotboard
    @Zachsnotboard 2 месяца назад

    Isn’t there a cmd tool to make QR codes ?

  • @SolitaryElite
    @SolitaryElite 2 месяца назад

    damn thats crazy

  • @perlind393
    @perlind393 2 месяца назад

    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"

  • @silvncr
    @silvncr Месяц назад

    "no-one matters and nothing cares" 💀

  • @RandomytchannelGD
    @RandomytchannelGD 2 месяца назад

    Hi

  • @lukchem
    @lukchem 2 месяца назад

    Couldn’t you use the Square Emojis as black and white, if they would have the perfect size. (⬜️⬛️)

  • @wennefer5426
    @wennefer5426 2 месяца назад +2

    how long the QR works ? ,forever whitout payment ?

    • @Lumina9306
      @Lumina9306 2 месяца назад

      a QR is just generated once and costs nothing, it works forever :)

  • @niranjanchoudhary3950
    @niranjanchoudhary3950 2 месяца назад

    Money and can't return me how to return this

  • @carsonjamesiv2512
    @carsonjamesiv2512 2 месяца назад

    DING!😁

  • @barbar1an_
    @barbar1an_ Месяц назад

    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

  • @Safvanviber-xm3pn
    @Safvanviber-xm3pn 2 месяца назад +2

    i found a bug in this video 😂

    • @GratuityMedia
      @GratuityMedia 2 месяца назад

      😈

    • @nixoncode
      @nixoncode 2 месяца назад

      i don't think he offers bug bounty

    • @Safvanviber-xm3pn
      @Safvanviber-xm3pn 2 месяца назад

      @@nixoncode its like self xss bro nit in the scope 🙂😹

  • @fimdy6530
    @fimdy6530 2 месяца назад

    i just pissed on my wall

  • @professional.hacker.
    @professional.hacker. 2 месяца назад +1

    Hi have you heard of Occupy Theweb John? Just wondering if you do know him...

  • @cheesiestmaster879
    @cheesiestmaster879 2 месяца назад

    U+3000

  • @niranjanchoudhary3950
    @niranjanchoudhary3950 2 месяца назад

    Sir some people cheat with my

  • @sabamalikvlog3879
    @sabamalikvlog3879 2 месяца назад

    Sir I have lost my 8 lack yesterday plz help me out plzzz

  • @shivammittal657
    @shivammittal657 2 месяца назад

    nothing is freee dear sir there is a hiddden ajenda

  • @masterluu8
    @masterluu8 2 месяца назад +1

    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 2 месяца назад

      Same here. Didn't get the point of the script. Was waiting for the hack thing.

    • @TheBBoyQ
      @TheBBoyQ 2 месяца назад

      Thought I was the only one who noticed that...

    • @YoutubeWatcher264
      @YoutubeWatcher264 2 месяца назад +1

      @@TheBBoyQ Clickbait titles youtubers make.

  • @kerhabplays
    @kerhabplays 2 месяца назад

  • @Tallteenn
    @Tallteenn 2 месяца назад

    ok am i pinned?

  • @iamwitchergeraltofrivia9670
    @iamwitchergeraltofrivia9670 2 месяца назад

    More malware hahahahahahhaha

  • @madhavharikumar6423
    @madhavharikumar6423 2 месяца назад

    People can create say a phishing website and generate a qr code for that and scam the ppl right???🤔

  • @madatch9947
    @madatch9947 2 месяца назад +3

    First🎉

  • @scb8858
    @scb8858 2 месяца назад

    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 2 месяца назад

    you didn’t know this?? 😂