Virus.Win32.HLLP.Toadie

Поділитися
Вставка
  • Опубліковано 1 гру 2022
  • / danooct1
    sorry if I seem a little scatterbrained throughout this video - this virus threw tons of curveballs at me and by the time I got done recording it I was more than ready to be finished. the file I never ended up finding was a log file that the virus keeps of every file and its directory listing that it infects.
    This is also my first time using UA-cam's auto generated captions to form the basis of the subtitles - if you don't like the way it's structured, or the flow, or anything else, please let me know. I went through them all and added proper punctuation and my personal flare, but it might not be as good as some of the older videos. Feedback is appreciated.
  • Наука та технологія

КОМЕНТАРІ • 211

  • @itsthesola10
    @itsthesola10 Рік тому +376

    I believe the PE/COFF format is a superset of MZ-DOS, and does not contain any code that specifically checks for Windows.
    COFF executables start with an MZ-DOS stub, followed by a magic number then valid DOS code that prints "nope" then exits. When Windows opens a COFF executable, it reads the magic number and immediately skips ahead to the _real_ entry point. At no point does the program itself make any sort of "check" that it is running on Windows.
    This allows for hybrid executables such as REGEDIT to exist, where both the MZ and COFF sections contain a complete program, not unlike Universal (PPC/x86_64) and Universal 2 (x86_64/AArch64) programs under Darwin.
    In the case of Toadie, I'd love to load an infected executable through Cutter, but I'm pretty sure it overwrites the MZ section and the COFF magic number, with an MZ program that manually performs a protected call into the COFF entry point, presumably after running a malicious payload in MZ mode.
    In other words, Toadie is not really a Win32 virus. It is an MS-DOS virus capable of identifying and hooking into Win32 COFF executables non-destructively.

    • @danooct1
      @danooct1  Рік тому +181

      You're 100% correct - this is actually classified as a DOS virus by Kaspersky, but I figured with me running it on Windows the "true" name may be a bit too confusing. Your knowledge and powers of deduction are very impressive and frankly a little frightening. Great comment.

    • @cameronbosch1213
      @cameronbosch1213 Рік тому +37

      Wow. I have to agree with Dan here. This virus author must have been an above average programmer, as despite the issues, that would explain why the programs still worked on Windows, but in MS-DOS or DOS mode, they took forever to run.
      The parallels to Apple's Universal binaries are quite outstanding and frankly, quite freaky.

    • @PhirePhlame
      @PhirePhlame Рік тому +14

      Amazingly enough, that's still true even for the most modern games. I just tested it in DOSBox, and sure enough Sonic Frontiers spits out the old "DOS mode" message and terminates.

    • @TH-vo6hv
      @TH-vo6hv Рік тому +2

      Can someone ELI5?

    • @rm_steele
      @rm_steele Рік тому +8

      @@TH-vo6hv some exe files use the start of their code to tell Windows where the actual code is, but old DOS computers get different code that either works as DOS compatible code or tells the program to spit out a message and then exits
      The section concerning the virus went a bit over my head, but I beleive the poster was saying that they think the virus will overwrite this code that weeds out DOS computers with a way to make it go to the Windows code automatically, regardless of it being in code that DOS isn't made to handle

  • @Toxoid49b
    @Toxoid49b Рік тому +847

    One of the main things I've gathered from watching your videos over the years is that pointing a camera at your monitor seems to be a valid substitute for an antivirus considering how it seems to cause malware to stop working correctly

    • @malwaretestingfan
      @malwaretestingfan Рік тому +53

      Murphy's law, it seems.

    • @cameronbosch1213
      @cameronbosch1213 Рік тому +32

      We've seen that many times on Dan's channel! Good for most users, horrible for Dan! ☹️

    • @FriedNoodlee
      @FriedNoodlee Рік тому +2

      Ha! Nice

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

      selling my new solution based on this principle, QuantSafe(R) Anti-Virus, A Name You Can Trust(TM)

    • @sagebrushrepair
      @sagebrushrepair Рік тому +7

      I love how personal this comment is. Poor Danooct1. I like you just fine, even if malware does not.

  • @proletariandreams69
    @proletariandreams69 Рік тому +175

    "It only makes your PC miserable to use." This part resonates quite well with a buggy experience, for truly it is often worse to have a PC or OS that barely work making its use living hell. Sometimes, if it cannot work anymore, death is a better alternative, that way it doesn't frustrate you every time you have to use it.

    • @chupathingy5862
      @chupathingy5862 Рік тому +12

      Just had a flashback to my deeply broken windows xp computer where explorer would crash for like ten minutes at a time.

    • @proletariandreams69
      @proletariandreams69 Рік тому +7

      @@chupathingy5862 Heh, I can imagine the pain. I still remember my old days of using XP and Vista, they could be such a pain sometimes, the experience was so different a decade ago. It was also "fun" getting random viruses infecting core .dlls, causing all sorts of weird issues.

  • @spendle
    @spendle Рік тому +12

    8:07 "Fool me once, I'm mad. Fool me twice, how could you. Fool me three times, you're officially that guy..." - JonTron

  • @thishandle.wasnttaken
    @thishandle.wasnttaken Рік тому +114

    The video length and the virus' ability to throw you off its path for however long is honestly more reminiscent of meltingscreen.

    • @moelester7527
      @moelester7527 Рік тому +7

      Especially if he has to run a bunch of exe files for the virus to take effect.

    • @peachymunmagenta
      @peachymunmagenta Рік тому +23

      The struggle to get the virus to activate… classic Danooct1 video.

    • @Kurzov
      @Kurzov 6 місяців тому

      Memories

  • @R1PCH41N_FR3NZY
    @R1PCH41N_FR3NZY Рік тому +87

    "It's about this point that my eyes begin glazing over and my mind becomes one with the Toadie virus, rendering it useless"
    dan is clearly having fun with subtitles and I'm all here for it

  • @pvc988
    @pvc988 Рік тому +45

    Every Windows program is secretly a DOS program too, even today. Usually, it just prints a message and quits. But it doesn't have to be like that.

    • @cyberparrot
      @cyberparrot Рік тому +24

      Opened Photoshop 2022's EXE in a text editor for shits and giggles and the "This program cannot be run in DOS mode." message was present near the beginning of the file. Whack.

    • @malwaretestingfan
      @malwaretestingfan Рік тому +14

      The DOS stub is a separate program in it's own right, nevertheless it can be replaced with another stub through a special linker option.

  • @IrisGalaxis
    @IrisGalaxis Рік тому +65

    ARP and REGEDIT are valid EXEs for both Windows and DOS mode, so that's why it's not a problem for them, ARP just opens the DOS version of itself instead of the Windows one, just like REGEDIT

  • @ItzTerraYT
    @ItzTerraYT Рік тому +35

    Almost 20 minutes?!
    What did we do to deserve THIS prize!

  • @NotThatSalty
    @NotThatSalty Рік тому +23

    a new danooct1 video is the best birthday gift i could've ever asked for. thank you

  • @Povilaz
    @Povilaz Рік тому +24

    I can't believe that Toadie literally toasted the computer LMAO

  • @SpessWarlock
    @SpessWarlock Рік тому +13

    Seeing "REGEDIT - HUHIUEH" was so sudden and funny that i almost dropped my drink. It's just for a frame but that's suspicious, lol

    • @choppergunner8650
      @choppergunner8650 Рік тому +5

      Yeah. The virus outputs all of those weird garbled text on the title bar, but the first one really seems like the virus somehow became self-conscious and started laughing maniacally as it destroys your PC.

  • @justinhamilton8647
    @justinhamilton8647 Рік тому +6

    0:48 Cause I’m the Taskman, yeahhh I’m the taskman 🎶

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

      *I'm the task man! I check tasks!*

    • @VreyIsGrey
      @VreyIsGrey Рік тому +2

      Don't ask me what I want it for
      _Ha haaa, Mr. Bill Gates_
      If you don't want to pay some more
      _Ha haaa, Mr. Jobs_

  • @exaltedb
    @exaltedb Рік тому +44

    Always glad to have a 20-minute long danooct1 video

  • @letcreate123
    @letcreate123 Рік тому +7

    When the virus does it job so well it completely bricks the kernel, now that I've never seen happen in a danooct video before LOL

  • @glitchyglyphva
    @glitchyglyphva Рік тому +52

    This was a super weird virus! Definitely wasn't expecting it to get to the Kernel so quick!
    Thank you Dan for pushing through the setbacks, and thank you for the work you put into these!

    • @malwaretestingfan
      @malwaretestingfan Рік тому +3

      @@explorer9049 True, thanks for the informative comment.

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

      @@explorer9049 Thank you for the info! Truly doing great work out here :D

  • @WishMakers
    @WishMakers Рік тому +16

    This virus was...a trip, to say the least. Possibly one of the most weird set of payloads, intentional or otherwise, that have showed up in your videos

  • @Kilgamesh
    @Kilgamesh Рік тому +11

    Your videos have the most pleasant subtitles, your effort is greatly appreciated. Your voice is also very soothing.

  • @thedarkdragon89
    @thedarkdragon89 Рік тому +13

    I have been subscribed to you for a very long time. Every video is great and done in that old style that I enjoy. Thanks for the years of entertainment and here's to many more!
    Also, I've seen the kernel error before, it's so rare. I got it by randomly deleting registry entries.

  • @RabidOrphan
    @RabidOrphan Рік тому +8

    It's so nice to see you still continuing to make videos on viruses even now. I used to be so fascinated with all your videos many years ago. I remember watching you and some other guy with a Zapdos pfp for a lot of virus content back then (no idea what his channel was called anymore). You and other virus channels really made my childhood and figure out pretty young to avoid getting viruses, while also making me a bit scared of using computers lol

    • @GaomonAndLucario
      @GaomonAndLucario Рік тому +7

      The guy you're thinking of is rogueamp! You can always just search NavaShield if you forget his name, and he'll be the top result!

    • @RabidOrphan
      @RabidOrphan Рік тому +2

      @@GaomonAndLucario Thank you so much!

  • @maiyannah
    @maiyannah Рік тому +14

    Two Danooct1 videos! It really is the Christmas season!
    Always love the videos when they drop man.

  • @HowPettyful
    @HowPettyful Рік тому +5

    My mind is blown by the captions explaining each hardware and software sound. Thank you for doing this still after all these years

  • @cyberparrot
    @cyberparrot Рік тому +5

    I don't have any interesting technical insight to contribute, but I just wanna say that you and your videos are seriously appreciated. I've always been ecstatic whenever you upload.

  • @Aidy
    @Aidy Рік тому +3

    It's not a danooct video if the virus doesn't work on the first try. So glad to see you back, though!

  • @SLZeroArrow
    @SLZeroArrow Рік тому +7

    You're much more active again! I always love your humor in these videos, keep em coming!

  • @chris.8078
    @chris.8078 Рік тому +2

    I LOVE That you're still doing these things man, I remember you talking like 9 tears ago and showing off trojans and viruses. You're admirable.

  • @cameronbosch1213
    @cameronbosch1213 Рік тому +2

    2:25 The rush of nostalgia from that boot-up sound!

  • @sugarbydesign
    @sugarbydesign Рік тому +3

    your anger is immeasurable yet my day is fulfilled

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

    It's always a good Friday when danooct1 uploads!

  • @MarshalStirling
    @MarshalStirling Рік тому +2

    Welcome back, Dan. I'm so excited to listen to you again.

  • @Crazy-Games
    @Crazy-Games Рік тому +4

    If you think about why the kernel got infected so quick it makes sense
    He rebooted in MS-DOS which wasn’t a full reboot
    Therefore he booted into the KERNEL of windows which didn’t kill any other applications that can run in DOS and since the virus change’s applications from windows into dos applications the virus itself has dos code

  • @sanamasakodotxml
    @sanamasakodotxml Рік тому

    I was so excited to see an upload after 6 months, but two uploads definitely surprised me. I do expect a pause again sometime soon, but if a somewhat consistent upload schedule ends up going into play again (keyword *somewhat*, meaning frequent pauses) then... WOO!

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

    Another Danooct1 video this year?? Amazing gift.

  • @malwaretestingfan
    @malwaretestingfan Рік тому +2

    I did not expect this upload, how incredible.

  • @GarryStrait
    @GarryStrait Рік тому +2

    danooct's VMs in a nutshell:
    "Oh, what a beautiful day, fresh install and... Oh f***, not this shit again. Yet another round of viruses."

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

      This one isn't a VM though. This is the Gateway PC he used in some of his other videos, both recently and in the Magister & CIH revisited videos (the BIOS wasn't killed in either of those latter two videos).

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

    5:05 "It's always good to thoroughly infect your machine whenever possible"
    LMAO

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

    The unpredictability of these videos triggers the anxiety these viruses caused when you didn't know what was going on with your computer. Luckily you cannot get an infection via UA-cam video, so it's only a simulation.

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

    wake up babe new monthly danooct1 content drop

  • @bigcorgi
    @bigcorgi Рік тому

    Good to see you're still uploading, great stuff as always

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

    thank you danooct1 for another fantastic vid where the virus operates exactly as planned

  • @-GameHacKeR-
    @-GameHacKeR- Рік тому

    i'm glad to see your back, especially with a longer video

  • @scooynilo
    @scooynilo Рік тому

    missed ya man. keep up the great work

  • @Bigyarnball
    @Bigyarnball Рік тому

    Good to see you back Dan. Hope you’re alright

  • @crepechan
    @crepechan Рік тому +2

    BABE WAKE UP NEW DANOOCT1 VIDEO JUST DROPPED

  • @aurathedraak7909
    @aurathedraak7909 Рік тому +4

    Should start a new series of old anti viruses that can fight old malware and such.

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

    I like the extra flavour found in the closed captions.

  • @sudsy9011
    @sudsy9011 Рік тому +3

    I actually enjoy the dead-air moments, adds to the depth of the video, keep them more often if possible :P I'm sure it will make editing a bit more relaxing aswell

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

    Glad to see a new video! Welcome back! :)

  • @Flametix
    @Flametix Рік тому

    I think the pace of the auto generated subtitles is good. The big difference to me from the manual captions is that it usually splits up the sentences into 2 lines for each caption instead of being all on one line and spills over between sentences often as they're said out loud, but it's still fine to read. I want to mention 8:01 though for a specific instance where I personally feel like the quoted message should be all together instead of leaving the last word "mode" to the next set of captions.

  • @youtube.commentator
    @youtube.commentator Рік тому

    Love these, thanks for continuing to upload

  • @ryannorthup3148
    @ryannorthup3148 Рік тому +2

    I got disappointed to hear the Gateway seek test instead of the Packard Bell seek test. But oh well, still a cool video! Nice job, Dan!

  • @damonflavell
    @damonflavell Рік тому

    My comfort channel.

  • @CarBitGTSaxen
    @CarBitGTSaxen 4 місяці тому

    "It's always good to throughoutly infect your machine whenever possible"
    -Dan

  • @JohnSmith-xq1pz
    @JohnSmith-xq1pz Рік тому +2

    Yeah a new virus video!!
    That seek test never gets old 😍

  • @kernelbug2294
    @kernelbug2294 Рік тому +2

    Thank you for capturing the real PC rather than VM, its way more introducing!

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

    19 minutes of content, thank you

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

    good to have you back lol. loading the kernel

  • @supersonic-5138
    @supersonic-5138 9 місяців тому +3

    early parental controls

  • @andresbravo2003
    @andresbravo2003 Рік тому +2

    Pascal? Never heard of it. I still keep enjoying on your videos even this keeps going. Never give up Dan!

    • @malwaretestingfan
      @malwaretestingfan Рік тому +2

      It's an old programming language developed by Niklaus Wirth as a quite verbose alternative to ALGOL, it was later popularized by the Delphi IDE and it still goes strong thanks to the Free Pascal project.

    • @xirate7091
      @xirate7091 Рік тому

      Me, being 26, I started with some pascal programs when I was like 13-14, so 12 years ago it was somewhat relevant :v

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

      @@malwaretestingfan It was originally meant for teaching programming, but apart from Toadie, it really failed to be useful outside of that.

    • @malwaretestingfan
      @malwaretestingfan Рік тому

      @@cameronbosch1213 Failed to be useful? Pascal is still a useful language for developing software. The TIOBE Index ranks Delphi/Object Pascal at the 17th place by programming language popularity.

    • @cameronbosch1213
      @cameronbosch1213 Рік тому

      @@malwaretestingfan Still, I think Java, Python, C/C++, & Rust are still better to know than Pascal.

  • @1doobiedoo
    @1doobiedoo Рік тому

    These videos are better than ASMR to me.

  • @TheCRTProductions
    @TheCRTProductions Рік тому +2

    I like the George Bush reference especially considering I could see him getting his computer infected with something like this back in the day.

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

    big fan for a couple years glad you’re still doing these:)

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

    When a virus is so good that it kills Windows in a Dan video. It's amazing.

  • @DerpySwag
    @DerpySwag Рік тому

    another banger from danooct1 ty bro

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

    Weird. If the VXHeaven archive is correct, Toadie.6810 isn't just "corrupt", it's not even Toadie (or an MS-DOS executable, for that matter)! It's some part of a (mIRC?) script which tries to DCC a file from the Windows directory to everyone upon joining a channel. (I'd post it, but even though it's literally just some random script fragment I'd still feel kinda dirty, so yeah)
    You can also see this when you're looking at the 6810 ""binary"" at about 0:28 as the size is only 142 bytes, far from the claimed 6810.

  • @MisterPancake778
    @MisterPancake778 Рік тому

    BABE WAKE UP NEW DANOOCT JUST DROPPED

  • @crashcooper9144
    @crashcooper9144 Рік тому

    Return of the King

  • @fruitjuice_
    @fruitjuice_ Рік тому

    The auto-generated subtitles work pretty well 👍

  • @Angiekins
    @Angiekins 11 місяців тому

    sir, thank you for the malware knowledge over the years, but sir can i pls say that your voice is so calming

  • @midnight5142
    @midnight5142 Рік тому

    He has once again risen

  • @lunazhere
    @lunazhere Рік тому +3

    Danooct, your the best. Your the reason I became interested in cybersecurity and malware.
    If it werent for your videos peaking my interest, I wouldn't have the career path I have today. Thank you so much.

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

    8:07 nice impression of GWB there

  • @FoxerTails
    @FoxerTails Рік тому +3

    Would the original Toadie virus have that warning message when launching or was that added in by a software analyst?

  • @thecooldude9999
    @thecooldude9999 Рік тому

    Lol that dubya quote. Dan, you’re a true Texan.

  • @TeraunceFoaloke
    @TeraunceFoaloke Рік тому

    It must be Christmas! Dan released a second video!

  • @_-_--_
    @_-_--_ Рік тому +1

    awesome video, appreciate the captions :P

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

    2:25 Good old days :(

  • @viceroybolt3518
    @viceroybolt3518 Рік тому

    The W reference 8 minutes in was beautiful

  • @mudy951
    @mudy951 Рік тому +2

    Do you manually reinstall Windows everytime you make a video?
    Just take an image (a dump of all the partitions) of a fresh install, and when you want to reinstall, connect the drive into your computer using an external HDD enclosure and re-image it.

  • @Maks7594
    @Maks7594 Рік тому

    no way, bro's alive

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

    do you also play normal games on the machine's outside of doing a virus thing?

  • @joser7514
    @joser7514 4 місяці тому

    I tried running this one on a Windows XP 32 bit virtual machine a while ago, and it somehow worked, but barely. It seems to infect some files in the current directory and executing those shows the command prompt with the weird title and removes their icon, but seconds later they seem to get restored (they regain their icon and original size, and no longer launch the command prompt). Only one file got permanently infected (chrome.exe, yeah, Google Chrome), and the payloads shown in the video worked, but just for that file. Still it amazes me that it can run on a NT based system, because I believe most DOS/Windows 9x viruses like CIH don't work on NT versions of Windows.

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

    its back

  • @Amad3uz
    @Amad3uz Рік тому +2

    Seek test is like music to my ears. Good to have a new video, thank you!

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

    This man is like a santa

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

    Slightly weird the amount of steps you have to go through to get this into your system. What kind of person would infect their computer with this? IRC you said is a vector but I can't imagine many people back in the day would get this going unless a kid was playing around with the executables or something to that effect. I remember renaming Doom95.exe as a kid and I got a smack for that.

  • @Z2r
    @Z2r Рік тому +2

    new danooct (real)

  • @CaptainBullzAQW
    @CaptainBullzAQW Рік тому

    HE IS BACKKKKKKK

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

    Toadie: The virus SO powerful, it infects your UA-cam videos 20+ years after its creation!

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

    my oshi just posted omg

  • @cassandras8797
    @cassandras8797 11 місяців тому

    bushism a little past 8:00 is highly appreciated

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

    14 years later and he still doesn’t use a screen recorder

  • @Drbeckerproductions
    @Drbeckerproductions Рік тому +5

    Hey Danoct, just in case you didn't know, you can save a lot of time by installing Windows onto a CF Card instead of a traditional hard drive. That way you can clone the contents of a fresh Windows install and copy them over for each new video, that way you don't have to keep going through the windows setup process.

    • @lolman123401
      @lolman123401 8 місяців тому

      As if Norton ghost never existed

  • @tomrow32
    @tomrow32 Місяць тому

    I wonder what this might do on Wine or an NT system.

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

    Danooct1: Toadie
    Actuality: Poisonous.Toadie

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

    Year 2022 and Windows still hides file extensions by default.

  • @SoldiesBC
    @SoldiesBC Рік тому

    Surprised there's still viruses to be documented.

  • @alexanderlewis8351
    @alexanderlewis8351 Рік тому

    LOL I am sure many will not appreciate your Bush quote.

  • @liquidmobius
    @liquidmobius Рік тому

    I like that you often run these different malwares on original hardware, but I'm curious as to why you don't use a VM or Qubes?

    • @GaomonAndLucario
      @GaomonAndLucario 9 місяців тому

      Because most of these malware wouldn't really get anywhere today, especially those of the DOS caliber. They pose generally no harm to modern, NT systems.

  • @maw9406
    @maw9406 Рік тому

    thank you for another vid dan :)