How We Hacked a TP-Link Router and Took Home $55,000 in Pwn2Own

Поделиться
HTML-код
  • Опубликовано: 20 сен 2024

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

  • @coreyfournier3345
    @coreyfournier3345 Год назад +91

    As a software developer I would have liked to hear what could have been done to prevent this. Obviously not running everything as root to start with.

    • @FlashbackTeam
      @FlashbackTeam  Год назад +141

      Several mistakes were committed:
      - running everything as root
      - mounting the root file system as read-write
      - hardcoding the encryption key
      - enabling a network service when it's not necessary (we hadn't configured this feature, it is enabled by default)
      But most importantly, input wasn't sanitised. Notice that it expects a MAC address, which has a very strict and well known format: aa:bb:cc:dd:ee:ff
      After copying to an intermediate buffer with a limited size (as they did correctly), they should have validated the MAC address before proceeding. This could have easily been done with a regex, such as: ^[a-fA-F0-9]{2}(:[a-fA-F0-9]{2}){5}$
      In addition, they could have introduced additional security controls, such as a properly configured firewall, sandboxing, etc.

    • @supermaster2012
      @supermaster2012 Год назад +2

      @Ralph Reilly there's a reason for this, it saves manufacturing costs as they can just flash the same exact image over and over and let the device bootstrap when it's booted up for the first time.

    • @itzurabhi
      @itzurabhi Год назад +2

      for the C, C++ devs : -Wall -Wextra -Wconversion -Werror

    • @TonyLee_windsurf
      @TonyLee_windsurf Год назад +1

      @@supermaster2012 One can use public key encryption, at lease hide the private key. Harder for hacker to create diff encrypted pkt.

    • @thoriumbr
      @thoriumbr Год назад +7

      @@TonyLee_windsurf You can't "hide" the private key, as the software will need it to decrypt the packet. Hard coding the key is terrible because every single router using the same firmware uses the same key. If the key was saved on a file, and checked and generated if the file was missing, it would not be possible to hack every router without physical access to it first.

  • @HritikV
    @HritikV 3 года назад +137

    It wasn't rushed at all. A perfect explanation at a perfect pace.

    • @jaimedpcaus1
      @jaimedpcaus1 Год назад

      What was "connected pin to line" what was that? What did he say?

  • @logicalness
    @logicalness 3 года назад +154

    Great work guys! Pedro’s explanation of the team’s process of auditing system calls is exceptional. This kind of breakdown is something I rarely see covered in detail.

  • @TheGrimSniper14
    @TheGrimSniper14 3 года назад +27

    We absolutely love these kinds of detailed breakdown of your thought process while looking at a target. Definitely continue doing these types of videos

  • @ryanduke6784
    @ryanduke6784 4 месяца назад +3

    My god. I think this is the best channel ive seen so far. These dudes are legit

  • @ProfessorRainman
    @ProfessorRainman 3 месяца назад +1

    This is my new favorite RUclips channel full stop. Excellent work guys!

  • @Raintiger88
    @Raintiger88 2 года назад +3

    I just found your channel yesterday and I'm really enjoying your videos. The information and quality is unmatched!

  • @myname-mz3lo
    @myname-mz3lo Год назад +3

    the way you created a file one character at a time is so smart . i would have felt so stuck with the 13 characters .

  • @Barqi
    @Barqi 3 года назад +7

    You guys did an amazing job in explaining the exploitation process. For a next video I would love to see more on how you reverse engineer/decrypt the code and the process of analyzing it. Thanks for giving back to the community! You rock!

    • @FlashbackTeam
      @FlashbackTeam  3 года назад +4

      Thanks for the feedback!
      We will show that in detail in future videos. Bear in mind there was a serious reverse engineering effort behind all of this. Most functions in the binary were not even defined, and all symbols are our names (the binary had few symbols).

    • @Barqi
      @Barqi 3 года назад +4

      @@FlashbackTeam I understand. But what for me personally would be super interesting to see, is how to start turning that binary code into code. I think that there are not that many videos on hardware > code > recognising exploitable functions.
      Again, thanks for giving back to the community!

    • @RafaelKarosuo
      @RafaelKarosuo Год назад +1

      @@FlashbackTeam I was thinking "how on earth you got all those symbols if the code wasn't compiled for debugging", thanks for the clarification, a lot of effort indeed.

  • @danielmonzon7396
    @danielmonzon7396 3 года назад +21

    Wow, impressive work guys, learnt so much in a single video. As feedback I would say that it would be cool to have a quick look on the exploiting writing process ;)

    • @FlashbackTeam
      @FlashbackTeam  3 года назад +8

      Thank you for your feedback! We will go into depth on that in the next videos!

    • @danielmonzon7396
      @danielmonzon7396 3 года назад +2

      @@FlashbackTeam u are welcome, can't wait to watch them :P

    • @KaleshwarVhKaleshwarVh
      @KaleshwarVhKaleshwarVh 3 года назад +3

      @@FlashbackTeam yes, I guess, the length of the video doesn't matter for people who will wanna learn. So go for it.

  • @paramatus3531
    @paramatus3531 2 года назад +1

    I like what you have done there. Very straight forward explenation, and I have to slightly disagree with you saying it was rushed. It was perfect. Longer videos are harder to follow and the amount you put in and the little backstories like being in Laos spiced it up a little. I am looking forward to more of your exploits.

  • @tehnics-optics4560
    @tehnics-optics4560 3 месяца назад +1

    Hi ,
    Great work guys!!!!!! I just found your channel yesterday and I'm really enjoying your videos !!!!!!!! Everything I wanted to say like 'this is awesome' !!!!!!! Please make longer video about setup your environment and witch program use for exploit for router !

  • @kshitijnalawade8554
    @kshitijnalawade8554 3 года назад +3

    idk what I should comment now.. Everything I wanted to say like 'this is awesome' and stuff has been said by everyone.. But I'm still commenting to let you guys know that we really need more of this great content from you guys!! Really appreciate it!!

  • @prox5784
    @prox5784 3 года назад +7

    That was fantastic and very well put together. Very educational. So excited to see more of this!

  • @kltr007
    @kltr007 Год назад +1

    Thank for sharing this. I like the no-nonsense style. For your first video this is a great piece of work. Like your graphics - a picture says more than thousand words. Must have been a lot of work but it pays back.

  • @JK-pb3vj
    @JK-pb3vj 3 года назад +2

    Blyat, this is the best router exploit video on RUclips by a long way! More of this guys ✌️

  • @jacoblpeterson
    @jacoblpeterson 2 года назад +3

    Excellent video. I couldn't stop laughing at the `echo urmom>d` hahaha

  • @ninoivanov
    @ninoivanov 2 года назад +1

    ... fiiiiinally an actually GOOD channel on such topics...

  • @surferbum618
    @surferbum618 3 года назад +6

    This was awesome, and thanks for showing your thought process when discovering this vuln. Hope to learn more from you guys in the future

  • @Harshitshukla88
    @Harshitshukla88 Год назад +2

    You guys rocked🔥 lot of learning in a single video from hardware to binary, reverse engineering to maintaining access .....😃

  • @thebrotherhood1675
    @thebrotherhood1675 3 года назад +5

    brilliant waiting for more!

  • @sombramurk793
    @sombramurk793 2 года назад +3

    Awesome guys! What a video... very clear and objective. The exploit sending one char at a time was really dope

  • @thefastjojo
    @thefastjojo 3 года назад +1

    explanation in the state of art! Brilliant, and waiting for more, congratulations!

  • @wowimoldaf
    @wowimoldaf Год назад +1

    This is very, very well graphiced exploit explanation. Huge thanks, there are million exploit explanations but i never seen like this one.

  • @gauravhksharma5760
    @gauravhksharma5760 3 года назад +2

    Congratulations guys. Looking forward to learning more. Thank you for starting this channel 👍🏼👌🏽

  • @flinkiklug6666
    @flinkiklug6666 Год назад +2

    Verry nice job. I don’t understand what you exactly does but it is so a nice idea. I want to learn this. Sooo nice

  • @DursunX
    @DursunX 2 года назад +1

    non-programmer here
    i love this breakdown. i get to witness the mindset of successfully exploiting a vulnerability (within a 13 character limitation).
    i actually got it. most of it made sense even to an 'illiterate' bystander like myself.
    pwn bounty well deserved!

  • @anitsh
    @anitsh 3 года назад +6

    Loved the experience watching the video. As a n00b, I'm thankful for the details presented and would request that even more videos with even more details would be much appreciated. And wish both of you the very best.Cheers,

  • @brotatobrosaurus5411
    @brotatobrosaurus5411 Год назад +1

    Nice exploit, even better explanation! Great work.

  • @HK-sw3vi
    @HK-sw3vi 3 года назад +4

    mad respect for you guys, what's better than learning from the bests.

  • @rdarkmind
    @rdarkmind 2 года назад +4

    Money well deserved! This was just beautiful. Thanks for sharing guys. I'd have to re-watch the reverse engineering part of the system calls a few times to understand what's happening though 😅

  • @EJohnson688
    @EJohnson688 3 года назад +3

    Nice work, thanks for the great deep dive! Keep up the great work on developing that specialty education platform :)

  • @NetworkITguy
    @NetworkITguy Год назад +1

    I never get tired of your voice ;)

  • @neroux712
    @neroux712 Год назад +2

    From a developer sight of view, it makes me now think twice about validation of strings from not trust able sources, as the exploit would break if any function in the call chain would check the input values fully also for injection. Very interesting how "easy" it is to gain access when you reach a specific level of knowledge, very nice video and remote Injection method of the remote shell!

  • @outsiderlost
    @outsiderlost 2 года назад +2

    Someone help me with a little "slap" on how to get the online interface login once I'm in it. 🤔 (I know the basics and the location of the hash required for encryption. But it has nothing to do with the online superficial passw)
    I had a lot of fun with the video anyway! Anyway, I had a great time with the video, let there be more of these tplink stuff..! ✔ 😎

  • @localman9341
    @localman9341 3 года назад +2

    Amazing content guys. Waiting for more🙃

  • @0xbitbybit
    @0xbitbybit 2 года назад +1

    Loved it, great explanation with the reversing, thanks guys!

  • @kevinnyawakira4600
    @kevinnyawakira4600 3 года назад +1

    That was pretty cool. I will like to see more videos like this one. Also a video of how someone can get started in hardware hacking, tools required will be appreciated

  • @iikon69
    @iikon69 Год назад +3

    Great work, love the thought behind constructing the final final in chunks due to the character limitation.

  • @th3p1tbulll
    @th3p1tbulll 2 года назад +2

    Very nice job! Congratulations boys!!!

  • @sven5666
    @sven5666 Год назад +1

    Thank you guys. Absolutely awesome video! Really well structured and presented.

  • @13DarkWolf
    @13DarkWolf 3 года назад +1

    Really nice and clear breakdown guys and congrats on the bounty!

  • @1337BR3AK
    @1337BR3AK 2 года назад +2

    Great video and explanation!

  • @ui4lh
    @ui4lh 2 года назад +2

    Pure genius the writing to a shell script and then executing lol

  • @davidbristoll195
    @davidbristoll195 2 года назад +2

    Very cleverly done. I really enjoyed watching 👍

  • @somsiri9319
    @somsiri9319 3 года назад +1

    Great work! Looking forward to the next video.

  • @murrij
    @murrij 2 года назад +1

    Wow! Thank you so much for your work on this video. Explanations are great for someone starting out like me.

  • @pincombe
    @pincombe 2 года назад +1

    Great video, first time I've been aware of a reverse shell before really interesting stuff!

  • @markooo4429
    @markooo4429 3 года назад +1

    Amazing, cant wait for next video

  • @casalido6639
    @casalido6639 3 года назад +2

    "D is there and there is urmum" lmaoo you funny dudes

  • @jesseopjescherm
    @jesseopjescherm 2 года назад

    Awesome video! Great pace and explanation. The file buildup within the 13 char limit is genius haha. Well done!

  • @MagicPlants
    @MagicPlants 2 года назад +3

    Printing one char at a time to a file due to the charlimit then executing the file was genius!

  • @0x80O0oOverfl0w
    @0x80O0oOverfl0w 2 года назад +2

    Nice video guys! Would it be possible to do a follow up video that talks about your danger.sh script? Not necessarily a line by line review, but maybe big picture "here's some of the ghidra api calls we use." I'd like to make a similar script for IDA.

  • @nsknyc
    @nsknyc 3 года назад +1

    ah so late for this, but absolutely worth the watch. Congrats guys on this fantastic job. "Looks juicy" my new favorite phrase :p

  • @karolinajoachimczyk3168
    @karolinajoachimczyk3168 Год назад +1

    Panowie, super robota, jako początkujący embeddeddev bardzo dziękuję za content!

  • @orenishay4175
    @orenishay4175 3 года назад +2

    This video was amazing! Right to the point and I understood everything! thank you!

  • @thatguyinelnorte
    @thatguyinelnorte 3 года назад +1

    Well done Flashback Team!

  • @geraldamasi1559
    @geraldamasi1559 3 года назад +1

    The explanation is quite good and making it seem easy. Good guys

  • @alanavella8640
    @alanavella8640 2 года назад +1

    Great job guys! Does that mean that us, the users, are vulnerable through the network just by having one of these at home?. Or would I be in trouble just if I invite you for a cup of coffee?🤣🤣🤣 Keep it up!

    • @FlashbackTeam
      @FlashbackTeam  2 года назад

      If you use it at home, you would only be vulnerable if you invited us for a cup of coffee... but it's not that simple, let us explain!
      Routers like these are used in small businesses to provide Internet service to the business' customers, which would be connected to the LAN interfaces (Wi-Fi or Ethernet).
      As a small business customer (let's say in a cafe, hotel or hospital), you could abuse this vulnerability, take control of the router, and attack the other customers.
      LAN style attacks are also relevant in large businesses, where for example you connect to a segregated Wi-Fi network, but are still connected to the LAN-side of a router, and could then execute similar attacks.
      In the same competition we actually hacked the same router over the WAN interface (where the router connects to the Internet), we will put a video up describing the attack in the future.
      This last phrase means that if you use this router, you are still vulnerable from the outside of your local network (outside of the coffee cup zone), NOT due to this specific vulnerability, but due to others we found in the same competition :D

  • @JBarszczu
    @JBarszczu 2 года назад +2

    This is the best hardware hacking video I have seen in my life. Thank you!

  • @saketsrv9068
    @saketsrv9068 2 года назад +1

    You guy's are insane, please release nore videos. Highly appreciated

  • @neuronwave
    @neuronwave Год назад +1

    Absolutely fantastic explanation. Really enjoyed it and understood it!

  • @JoshDavidLevy
    @JoshDavidLevy 3 года назад +1

    Really enjoyed this explanation. Great job guys

  • @ogiogi2714
    @ogiogi2714 3 года назад +1

    Got damn it congrats flashback team !!!!

  • @cq_YT
    @cq_YT 3 года назад +1

    Awesome work! Wait for more and learn from you.

  • @NCMilVet
    @NCMilVet Год назад +1

    Great job guys. And great video.

  • @davidraber-radakovits1572
    @davidraber-radakovits1572 Год назад

    GND pins are usually easy to find by eye since they're most often connected to a GND plane instead of a line.

  • @DefconUnicorn
    @DefconUnicorn 2 года назад +1

    Really nice work dudes, love the idea of building it one char at a time.

  • @MysterPotato70
    @MysterPotato70 Год назад +1

    does this still work if the router was flashed with something like openwrt? or is this specific to the stock os? Anyways great job explaining!

  • @depth5322
    @depth5322 Год назад +1

    It’s awesome guys. It’s very interesting. Thank you for explanation

  • @aracystic28
    @aracystic28 3 года назад +1

    This is amazing. Good job guys!

  • @hanshansli2238
    @hanshansli2238 Год назад +1

    thank you guys, great video!

  • @rizkvn
    @rizkvn Год назад +1

    even this video is more than 10 minutes, I'm take a break from my workload to watch this video
    nice education video bro, from me who interest on vulnerability hardware

  • @AtreidaeChibiko
    @AtreidaeChibiko 2 года назад +1

    Didn't expect to see Dashie in this video. But I'll take it!

  • @corneliusb2695
    @corneliusb2695 3 года назад +1

    Great vid can't wait to see more! Which plugins are you using on Ghidra?

    • @FlashbackTeam
      @FlashbackTeam  3 года назад +1

      We only use the Ghidra Hues plugin to have a dark theme. The original author deleted it, but here is a copy in Pedro's github repo:
      github.com/pedrib/ghidra.hues

  • @teslastellar
    @teslastellar 2 года назад +1

    Thank you so much for explaining the process.

  • @loocatme6779
    @loocatme6779 Год назад +1

    You, Sir, are a scholar and a certified badass.

  • @shibbyshaggy
    @shibbyshaggy 3 года назад +2

    Really good video guys. But this only worked because you were on the same network as the router. How to exploit it if you are not on the LAN?

    • @FlashbackTeam
      @FlashbackTeam  3 года назад

      The vulnerabilities demonstrated in this video are only exploitable over the LAN. It is impossible to exploit them over the WAN in the default router configuration.
      We used it to win the Pwn2Own Tokyo 2019 TP-Link LAN category.

  • @MarKac9090
    @MarKac9090 3 года назад +1

    awesome video! very interesting to watch because you explain it VERY well

  • @aaryanbhagat4852
    @aaryanbhagat4852 3 года назад +1

    Excellent explanation, super cool method of exploit!

  • @ruslanshuster9124
    @ruslanshuster9124 2 года назад +1

    Great video, enjoyed a lot! Clever exploit:)

  • @marcos251
    @marcos251 3 года назад +1

    This is amazing! Great work

  • @leonvolq6179
    @leonvolq6179 2 года назад +1

    Perfect explanation, I'm going to copy the part where you go in motorcycles 😄

  • @Ragekillen
    @Ragekillen Год назад +1

    Your getting a sub from me I love how you go into full detail although I wish you told us what disassembler you used

  • @bonk1463
    @bonk1463 2 года назад +2

    "urmom" LOL, love how they the used the word in every part of the exploit

  • @electrowizard2658
    @electrowizard2658 4 месяца назад +1

    great video loved it !!

  • @jamesrussell-ui6gd
    @jamesrussell-ui6gd Год назад +1

    great breakdown!

  • @recepyoldas9894
    @recepyoldas9894 3 года назад +1

    was perfect exploit and explaning

  • @saidinesh5
    @saidinesh5 2 года назад +1

    Really enjoyed the video.. especially the 13 character limit part..
    Out of curiosity, is there any reason tp link left the uart open or was it something they just overlooked?
    P.S extra kudos to the subtle humor you injected into this video.

    • @FlashbackTeam
      @FlashbackTeam  2 года назад +1

      I think they assumed physically removing a Rx line would be enough. We see a lot of devices with enabled UART.

    • @saidinesh5
      @saidinesh5 2 года назад

      @@FlashbackTeam I see.. Yeah it was odd to see the uart still being there because it seemed like such an obvious security hole. Good job still!

    • @grayfox2600
      @grayfox2600 2 года назад

      @@FlashbackTeam is that why you bridged it with a paperclip?

    • @runed0s86
      @runed0s86 Год назад +1

      UART can usually be used to recover softbricked systems.

  • @DrewMarold
    @DrewMarold Год назад +1

    Very cool, nice job, guys.

  • @zillogical
    @zillogical 3 года назад +1

    Excellent walkthrough thank you!!

  • @seiv-
    @seiv- 3 года назад +1

    This is a fucking masterpiece ! Great job guys ! You totally worth it !

  • @helmutzollner5496
    @helmutzollner5496 2 года назад +1

    Great stuff! Thank you for sharing.

  • @alreadyputitup
    @alreadyputitup Год назад +1

    great presentation, very clearly communicated

  • @MisterWallopy
    @MisterWallopy Год назад +3

    I already didn't buy TP-Link for other reasons. This is just the final nail in the coffin. Sadly, alot of even reputable brands do similar things. Would love to see if Asus, Netgear, Eero and others have the same flaws. Makes you understand why Cyclops Blink was so effective in spreading.

  • @i93sme
    @i93sme Год назад +1

    The true star of this video is ‘d’, the hiding place of ‘urmom’ 😂

  • @florianmaetschke9054
    @florianmaetschke9054 2 года назад +1

    Great Job! Super good video! keep on

  • @EdwardGrubb3rd
    @EdwardGrubb3rd 2 года назад +2

    What software are you using to view the code when reverse-engineering the firmware in this video? Also, I am teaching myself hardware pen-testing. What multi-purpose hardware do you recommend for connecting and reading/writing JTAG and UART? Is it Ghidra you're using to read the code? What is Pedro and where can I find it?

    • @FlashbackTeam
      @FlashbackTeam  2 года назад

      Hi. Yes, it's Ghidra that we use in the video for reverse engineering.
      Take a look at our video about UART to get some inspiration for a hardware: ruclips.net/video/01mw0oTHwxg/видео.html

  • @crazyhacker2437
    @crazyhacker2437 2 года назад +1

    you guys are awesome. Love from India 😍🙏🏻

  • @machazard009
    @machazard009 2 года назад

    Nice work guys. Congratulations on the win. Have you always come across routers with root? What about routers with embedded microcontrollers.