@@ClutterTech Hey when i use codeshare, TRIVERTEX and GRADIENT_FILL both had errors, you could replace codeshare with that mediafire link, it's better.
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?
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 :)
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
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);
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!
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.
@@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
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 ^^
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?
@@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
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
All DLLImports you can find here: www.mediafire.com/file/6gstq1g9bqye7te/dllimports.txt/file
It took me 2 days to manually copy all the code from the vide just to find this here.
thanks, i needed this for some reason, but code on codeshare was some undone code with basic program preparation
does it make your computer unusable?
@@Orangeibe No it’s only gdi
@@ClutterTech Hey when i use codeshare, TRIVERTEX and GRADIENT_FILL both had errors, you could replace codeshare with that mediafire link, it's better.
This is one of the most if not THEE most helpful tutorial(s) about GDI Trojans on the platform of UA-cam.
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
real
I am watching this so I can make an program that has GDI effects without destroying the system.
@@trident35ro26same
This is really cool. I might use it for an new project I'm working on!
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?
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 :)
I agree.
These are gonna be cool for trojans such like new trojans
That's kinda interesting, you have skill bro, keep going!
Now I kinda know how to get that gdi working now thx you mite help with my shitty coding one day
Nice, now will prank my friend and they think thay had a virus lol
Cooool! Thank you very much for this tutorial!
Nice 👍.
I am trying to see if I can use the rgbquad pointer array in C#, but it is quite difficult to achieve.
It’s not that difficult, you can write me on discord ;)
@@ClutterTech thx but can't send direct message to your discord lmfao
@@mist.malware I will send friend request ;)
@@ClutterTech ok
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
Your Videos are amazing
yooo, i seen you on tiktok where you did discord remote
@@noxeng nice
I want to have multiple effects at the same time, how do i do that?
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);
Finaly, i go made MEMZ V2
wow, what a boss! thanks man
Amazing Video
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);
}
this will be used for XolontiumV3
what happened to your ransomware vid
Where do I find the reference manager? You skipped the part.
Question, if I restart will it stay the same or reset to normal?
It will reset to normal.
Nice, bro!👍👍👍👍
How do you bring up tabs menu at 1:19
can you make a video on how to corrupt registry in c#
I only use Visual Code but what button i click? the Start Debbuging or the Start without debugging?
Start Debugging i think
But you have to build solution first
have you ever made a program in cpp
Awesome vídeo 🤩👍
Can you do a tutorial on how to do alpha blend blur GDI EFFECT c++? Thank you im a big fan
Yeah probably soon
@@ClutterTech sounds great! I could really use the help :P
Bro thanks 👍
didnt work can you help
edit: made a mistake and fixed it and now it works :D
_XUP = 0x0100 is not working. _XUP has error IDE1007 and = has error CS1519 twice. Any way to fix this? Edit: No quick fix available.
i opened them all in once and it take 30min to disable them
Thank you!! :D
the radial blur effect is all black for me im on win11
what recorder do you use to capture the visuals? because obs isnt capturing them at all.
nvidia
@@ClutterTech I forgot to respond, lol. Thank you so much!
cyber how to do multpile things like rounded tunnel and gdi inverted colors like sulfoide and quantizer
Just make more threads
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!
i tried but when i restarted the pc it only shows a black screen :(
Bro what? Those are only graphical effects, they can't do anything to your system.
Can you explain what the Plgblt parameters are doing ? Or is there any good documentary to read about it .
On microsoft web pages
And these effects kill the system?
there is no SetBkColor
yo hello, can i use some codes from this tutorial pls?
Can you reply the rounded tunnel code pleaseeee
Can you tell me how to play bytebeat in c#?
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)
yes u can
how do you use the payloads for only 30 secs for this
Is this a non destructive version that I can run on real hardware?
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.
@@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
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 ^^
How can i get gdi?
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?
here is some c++ code for resetting the screen:
for (int num = 0; num < 10; num++)
{
InvalidateRect(0, 0, true);
Sleep(10);
}
@@Someoneyes-y7l thank you man!
@@Someoneyes-y7l just end the task in taskbar lmao
before doing the final virus can i test things like the inverted colors in visual studio 2019 without being infected??
Gdi is only for graphical effects. These don’t harm the system
@@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
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
No, it’s a completaly harmless, don’t worry
it say i have to use c# 8.0
Hey, you know program in c++?
Name PatBlt does not exist in curent conntent
it dos not vok
*People who want to create a virus entered the chat
*i entered the chat
how can i put all of these together so all of the gdi will start?
Make threads, start every thread and all GDI effects will happen at the same time
How to combine them so that after one effect there is another? I am a new coder
Just make a more thread for example gdi1 and gdi2 then create thread for both and that's it
like a class?@@ClutterTech
nvm figured it out
Is it harmless? I just want to make a prank thing like that gdis and send to my friend
Yes, these are just graphics effects
@@ClutterTech Thanks, now I can prank my friends😈
@@lukeejacobuilder I found my brother!I make "viruses" and I send it to my friends😈
@@CDev12 Lool
Argument 5: cannot convert from 'byte[]' to 'System.IntPtr'
Just change it in dllimport from intptr to byte[] lol
@@ClutterTech Read my newest comment
@@ClutterTech RESPOND
@@ClutterTech RESOPND
@@ClutterTech RESPOND
Where do i get C#
look the pinned comment also look visual studio
Cool
Pyth >>
dll import are broken the link is not valid
then search on pinvoke
@@ClutterTech is there the list of all the things?
@@ClutterTech what does i type
@@AurelOnYT yes
@@ClutterTech what does i type for getting it
thk bro )
can someone send me code?
how to do it in python??
Python is a shitty language, its based off of c anyways so just learn c# or c++.
@@Laugny 🤓🤓🤓🤓🤓🤓
isnt liek a virus right lmao
No
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);
i think the dll imports are gone. @ClutterTech
Great videos! #NAME? P r o m o s m.
i was wondering, how would i make it so it doesnt refresh when the screen updates?
Set the bool to false so it would be something along the lines of InvalidateRect(IntPtr.Zero,IntPtr.Zero,false);