[TUTORIAL] How to make INSANE GDI (Graphics Visual Effects) for any DESTRUCTIVE TROJAN in C# !!!

Поділитися
Вставка
  • Опубліковано 14 лис 2024

КОМЕНТАРІ • 153

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

    All DLLImports you can find here: www.mediafire.com/file/6gstq1g9bqye7te/dllimports.txt/file

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

      It took me 2 days to manually copy all the code from the vide just to find this here.

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

      thanks, i needed this for some reason, but code on codeshare was some undone code with basic program preparation

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

      does it make your computer unusable?

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

      @@Orangeibe No it’s only gdi

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

      ​@@ClutterTech Hey when i use codeshare, TRIVERTEX and GRADIENT_FILL both had errors, you could replace codeshare with that mediafire link, it's better.

  • @plashplash-fg6hd
    @plashplash-fg6hd 2 роки тому +8

    This is one of the most if not THEE most helpful tutorial(s) about GDI Trojans on the platform of UA-cam.

  • @gl1tchygreml1n
    @gl1tchygreml1n Рік тому +28

    Who else is watching this just because they're interested in knowing how the GDI effects work, not because they wanna make a system destroyer lol

  • @signaller
    @signaller 2 роки тому +3

    This is really cool. I might use it for an new project I'm working on!

  • @malwaretestingfan
    @malwaretestingfan 2 роки тому +7

    You should definitely make more tutorials about coding and GDI, you're skilled. From my part, i've learned a lot. Other than C#, how much programming languages do you know?

    • @ClutterTech
      @ClutterTech  2 роки тому +4

      Thank you. I'm primarily focusing on csharp, but I've also tried c++. There is no time for the others, because I have a lot of responsibilities at school, when there will be more time, I will learn more :)

    • @plashplash-fg6hd
      @plashplash-fg6hd 2 роки тому +3

      I agree.

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

    These are gonna be cool for trojans such like new trojans

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

    That's kinda interesting, you have skill bro, keep going!

  • @Redstonedust-rc9nr
    @Redstonedust-rc9nr Рік тому

    Now I kinda know how to get that gdi working now thx you mite help with my shitty coding one day

  • @RikGamingMc
    @RikGamingMc 4 місяці тому +1

    Nice, now will prank my friend and they think thay had a virus lol

  • @В-Т-И-Н-Т
    @В-Т-И-Н-Т 2 роки тому +1

    Cooool! Thank you very much for this tutorial!

  • @mist.malware
    @mist.malware 2 роки тому +4

    Nice 👍.
    I am trying to see if I can use the rgbquad pointer array in C#, but it is quite difficult to achieve.

    • @ClutterTech
      @ClutterTech  2 роки тому +1

      It’s not that difficult, you can write me on discord ;)

    • @mist.malware
      @mist.malware 2 роки тому +1

      @@ClutterTech thx but can't send direct message to your discord lmfao

    • @ClutterTech
      @ClutterTech  2 роки тому

      @@mist.malware I will send friend request ;)

    • @mist.malware
      @mist.malware 2 роки тому +1

      @@ClutterTech ok

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

    I love this video, I can finally create screen effects comparable to those shown on UA-cam!
    But I have two problems:
    Problem 1 is Screen.PrimaryScreen.Bounds is not getting the whole screen, it leaves off part of it.
    Problem 2 is the blur effect doesn't work, it just darkens the screen

  • @weykn
    @weykn 2 роки тому +2

    Your Videos are amazing

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

      yooo, i seen you on tiktok where you did discord remote

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

      @@noxeng nice

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

    I want to have multiple effects at the same time, how do i do that?

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

    i did it right
    public static void Main()
    {
    int x = Screen.PrimaryScreen.Bounds.Width, y = Screen.PrimaryScreen.Bounds.Height;
    while(true)
    {
    IntPtr hdc = GetDC(IntPtr.Zero);
    IntPtr Brush = CreateSolidBrush(0xF0FFFFFF);
    SelectObject (hdc, Brush);
    PatBlt(hdc, 0, 0, x, y, TernaryRasterOperations.PATINVERT);
    DeleteObject(Brush);
    DeleteDC(hdc);
    Thread.Sleep(1000);

  • @EzioAuditore-dd9cv
    @EzioAuditore-dd9cv 2 місяці тому

    Finaly, i go made MEMZ V2

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

    wow, what a boss! thanks man

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

    Amazing Video

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

    I found a fade effect, here is the code (UA-cam don't delete this, I'm not a bot):
    Random r = new();
    while (true)
    {
    int x = Screen.PrimaryScreen.Bounds.Width, y = Screen.PrimaryScreen.Bounds.Height;
    IntPtr hdc = GetDC(IntPtr.Zero);
    IntPtr mhdc = CreateCompatibleDC(hdc);
    IntPtr hbmp = CreateCompatibleBitmap(hdc, x, y);
    IntPtr hbit = hbmp;
    IntPtr holdbit = SelectObject(mhdc, hbit);
    BitBlt(mhdc, 0, 0, x, y, hdc, 0, 0, TernaryRasterOperations.SRCAND);
    AlphaBlend(hdc,r.Next(-4,4), r.Next(-4, 4),x,y,mhdc,0,0,x,y,new BLENDFUNCTION(0, 0, 70, 0));
    SelectObject(mhdc, holdbit);
    DeleteObject(holdbit);
    DeleteObject(hbit);
    DeleteObject(hbmp);
    DeleteDC(mhdc);
    DeleteDC(hdc);
    Thread.Sleep(10);
    }

  • @Minecraft_killer
    @Minecraft_killer 2 роки тому +1

    what happened to your ransomware vid

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

    Where do I find the reference manager? You skipped the part.

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

    Question, if I restart will it stay the same or reset to normal?

    • @noxwp
      @noxwp 3 місяці тому

      It will reset to normal.

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

    Nice, bro!👍👍👍👍

  • @vandalismgt
    @vandalismgt 11 місяців тому +1

    How do you bring up tabs menu at 1:19

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

    can you make a video on how to corrupt registry in c#

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

    I only use Visual Code but what button i click? the Start Debbuging or the Start without debugging?

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

      Start Debugging i think

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

      But you have to build solution first

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

    have you ever made a program in cpp

  • @41m_5k1ll
    @41m_5k1ll 2 роки тому

    Awesome vídeo 🤩👍

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

    Can you do a tutorial on how to do alpha blend blur GDI EFFECT c++? Thank you im a big fan

  • @mikaxp461
    @mikaxp461 2 роки тому +1

    Bro thanks 👍

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

    didnt work can you help
    edit: made a mistake and fixed it and now it works :D

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

    _XUP = 0x0100 is not working. _XUP has error IDE1007 and = has error CS1519 twice. Any way to fix this? Edit: No quick fix available.

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

    i opened them all in once and it take 30min to disable them

  • @fr4ctalz638
    @fr4ctalz638 2 роки тому

    Thank you!! :D

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

    the radial blur effect is all black for me im on win11

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

    what recorder do you use to capture the visuals? because obs isnt capturing them at all.

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

    cyber how to do multpile things like rounded tunnel and gdi inverted colors like sulfoide and quantizer

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

      Just make more threads

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

      sorry to annoy you but i dont know coding but making malwares is fun but how u make a thread cuz im confused and dont know like csharp and that stuff just making sure how you make one also keep the videos up!

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

    i tried but when i restarted the pc it only shows a black screen :(

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

      Bro what? Those are only graphical effects, they can't do anything to your system.

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

    Can you explain what the Plgblt parameters are doing ? Or is there any good documentary to read about it .

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

    And these effects kill the system?

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

    there is no SetBkColor

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

    yo hello, can i use some codes from this tutorial pls?

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

    Can you reply the rounded tunnel code pleaseeee

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

    Can you tell me how to play bytebeat in c#?

  • @grubrescueroblox
    @grubrescueroblox 7 місяців тому

    can i use gdi32.dll and these gdi in windows forms? (not in net.framework, in windows form like you do this in previous videos)

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

    how do you use the payloads for only 30 secs for this

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

    Is this a non destructive version that I can run on real hardware?

    • @random-user-s
      @random-user-s Рік тому +1

      I know, i'm late, but yes you can run it on real hardware, if it was destructive there should be a MBR overwriter o something like that, this is just GDI effects, not harmfull, in fact, Microsoft him self uses GDI effect for windows.

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

      @@random-user-s I know that it doesn't contain an mbr overwriter or something else malicious but I just wanted to be sure. Thanks for the information. I didn't actually know that Microsoft used gdi effects in their programs

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

      Oh nice!! I didn't know GDI animations/effects were harmless. I thought the process itself involved destroying system files. This is great information! I'm planning on using GDI effects in my vocal synth music videos ^^

  • @Tyleryourdude
    @Tyleryourdude 3 місяці тому

    How can i get gdi?

  • @hidey5324
    @hidey5324 7 місяців тому

    How to reset the gdi effects tho? I am making win form add and on button reset i want the default gdi settings be back to normal. What properties do i need to save or change?

    • @Someoneyes-y7l
      @Someoneyes-y7l 3 місяці тому +1

      here is some c++ code for resetting the screen:
      for (int num = 0; num < 10; num++)
      {
      InvalidateRect(0, 0, true);
      Sleep(10);
      }

    • @hidey5324
      @hidey5324 3 місяці тому

      @@Someoneyes-y7l thank you man!

    • @KyloPlaysYT
      @KyloPlaysYT 3 місяці тому

      @@Someoneyes-y7l just end the task in taskbar lmao

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

    before doing the final virus can i test things like the inverted colors in visual studio 2019 without being infected??

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

      Gdi is only for graphical effects. These don’t harm the system

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

      @@ClutterTech also when i create the main() it says i already hav another entry point and to compile it with /main. How do i fix i posted a picture on ur discord btw

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

    Hi! I wanna make a prank virus for my friend, does any of this damage the computer cause I don’t want to destroy his computer and delete system 32 or something I just wanna prank him

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

      No, it’s a completaly harmless, don’t worry

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

    it say i have to use c# 8.0

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

    Hey, you know program in c++?

  • @GejGei
    @GejGei 10 місяців тому

    Name PatBlt does not exist in curent conntent

  • @Uzayminecraft
    @Uzayminecraft 11 днів тому

    it dos not vok

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

    *People who want to create a virus entered the chat

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

    how can i put all of these together so all of the gdi will start?

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

      Make threads, start every thread and all GDI effects will happen at the same time

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

    How to combine them so that after one effect there is another? I am a new coder

  • @lukeejacobuilder
    @lukeejacobuilder 2 роки тому

    Is it harmless? I just want to make a prank thing like that gdis and send to my friend

    • @ClutterTech
      @ClutterTech  2 роки тому +1

      Yes, these are just graphics effects

    • @lukeejacobuilder
      @lukeejacobuilder 2 роки тому +1

      @@ClutterTech Thanks, now I can prank my friends😈

    • @CDev12
      @CDev12 2 роки тому

      @@lukeejacobuilder I found my brother!I make "viruses" and I send it to my friends😈

    • @lukeejacobuilder
      @lukeejacobuilder 2 роки тому

      @@CDev12 Lool

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

    Argument 5: cannot convert from 'byte[]' to 'System.IntPtr'

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

    Where do i get C#

  • @CyberWord
    @CyberWord 2 роки тому

    Cool

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

    Pyth >>

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

    dll import are broken the link is not valid

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

      then search on pinvoke

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

      @@ClutterTech is there the list of all the things?

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

      @@ClutterTech what does i type

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

      @@AurelOnYT yes

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

      @@ClutterTech what does i type for getting it

  • @user-of-99
    @user-of-99 8 місяців тому

    thk bro )

  • @PecokaArasio
    @PecokaArasio 2 місяці тому

    can someone send me code?

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

    how to do it in python??

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

      Python is a shitty language, its based off of c anyways so just learn c# or c++.

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

      @@Laugny 🤓🤓🤓🤓🤓🤓

  • @num4ersur
    @num4ersur 2 роки тому +1

    isnt liek a virus right lmao

  • @kristheredpanda
    @kristheredpanda 6 днів тому

    made a version that has a couple of these mixed up if anyone wants to try it out
    uint[] rndclr = { 0xFF0000, 0xFF00BC, 0x00FF33, 0xFFF700, 0x00FFEF };
    POINT[] lppoint = new POINT[3];
    Random r = new Random();
    int x = Screen.PrimaryScreen.Bounds.Width, y = Screen.PrimaryScreen.Bounds.Height;
    int left = Screen.PrimaryScreen.Bounds.Left, right = Screen.PrimaryScreen.Bounds.Right, top = Screen.PrimaryScreen.Bounds.Top, bottom = Screen.PrimaryScreen.Bounds.Bottom;
    IntPtr hdc = GetDC(IntPtr.Zero);
    IntPtr mhdc = CreateCompatibleDC(hdc);
    IntPtr hbit = CreateCompatibleBitmap(hdc, x, y);
    IntPtr holdbit = SelectObject(mhdc, hbit);
    IntPtr Brush = CreateSolidBrush(rndclr[r.Next(rndclr.Length)]);
    if (r.Next(2) == 1)
    {
    lppoint[0].X = (left + 10) + 0;
    lppoint[0].Y = (top - 10) + 0;
    lppoint[1].X = (right + 10) + 0;
    lppoint[1].Y = (top + 10) + 0;
    lppoint[2].X = (left - 10) + 0;
    lppoint[2].Y = (bottom - 10) + 0;
    }
    else
    {
    lppoint[0].X = (left - 10) + 0;
    lppoint[0].Y = (top + 10) + 0;
    lppoint[1].X = (right - 10) + 0;
    lppoint[1].Y = (top - 10) + 0;
    lppoint[2].X = (left + 10) + 0;
    lppoint[2].Y = (bottom + 10) + 0;
    }
    PlgBlt(mhdc, lppoint, hdc, left, top, (right - left), (bottom - top), IntPtr.Zero, 0, 0);
    PatBlt(hdc, r.Next(-4, 4), r.Next(-4, 4), x, y, TernaryRasterOperations.PATINVERT);
    AlphaBlend(hdc, 0, 0, x, y, mhdc, 0, 0, x, y, new BLENDFUNCTION(0, 0, 20, 0));
    SelectObject(mhdc, holdbit);
    SelectObject(hdc, Brush);
    DeleteObject(holdbit);
    DeleteObject(hbit);
    DeleteObject(Brush);
    DeleteDC(mhdc);
    DeleteDC(hdc);
    Thread.Sleep(100);

  • @cee-jay0900
    @cee-jay0900 9 місяців тому

    i think the dll imports are gone. @ClutterTech

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

    Great videos! #NAME? P r o m o s m.

  • @boowoompp
    @boowoompp 10 місяців тому

    i was wondering, how would i make it so it doesnt refresh when the screen updates?

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

      Set the bool to false so it would be something along the lines of InvalidateRect(IntPtr.Zero,IntPtr.Zero,false);