@@youcannothackme pitblt shapes #!/usr/bin/env python import sys from win32con import PATINVERT from win32gui import GetDC, PatBlt def draw_rects(dc, x, y, w, h, count, dx, dy): for i in range(count): PatBlt(dc, x + i * dx, y + i * dy, w - 2 * i * dx, h - 2 * i * dy, PATINVERT) def main(*argv): dc = GetDC(0) draw_rects(dc, 100, 100, 250, 250, 13, 10, 10) if __name__ == "__main__": print("Python {:s} {:03d}bit on {:s} ".format(" ".join(elem.strip() for elem in sys.version.split(" ")), 64 if sys.maxsize > 0x100000000 else 32, sys.platform)) rc = main(*sys.argv[1:]) print(" Done.") sys.exit(rc)
Imfao, but you should'nt have offended him like that, he also make good gdi malwares
Very nice video (i'm actually joined with you)
Atleast he gives warnings
So does he still other peoples’ scripts to make his own malware?
Can someone explain to me why malware is made in the first place? Xp i mean... can't this 'talent' be used for the good?😅
wait does he know what is return 0
bro thinks everyone is a furry when they say "UwU" like it could be a joke or something
Imagine taking the time to install IDA Pro to de-obfuscate code just to skid pan koza is irrelevant.
Team pankoza
👇👇👇
Doxbin time :)
BRO IVE BEEN ASKING WHAT DO YOU RECORD WITH OBS SAYS ENCODING OVERLOADED ON ANY COMPUTER I USE
@winuserxp10036 i got it working now! i just had to downscale it
LMAFO
We hate person that bullying pankoza
@@chaloappsgamechannelandminecrai don't bully it bru
Lmfao
lamo
EEE HIHIHEEEE LAMO
" hes a furry", furry is big L lmao
Ultra big L
STOP BULLYING PANKOZA
HE NOT SKIDDER!
wtf is that grammar 😭🙏
Ага поверил (нет)
DON'T YOU LECTURE ME WITH YOUR THIRTY DOLLAR HAVE CUT- *destroying youcannothackme...*
lol destroy me with a malware
@@thatkid101-v2v Lol is just a meme
bro u skid as well lol tell me what this code does lol :
import win32gui
import win32api
import win32con
import random
import ctypes
user32 = ctypes.windll.user32
user32.SetProcessDPIAware()
[sw, sh] = [user32.GetSystemMetrics(0), user32.GetSystemMetrics(1)]
while True:
hdc = win32gui.GetDC(0)
color = (random.randint(0, 122), random.randint(0, 430), random.randint(0, 310))
brush = win32gui.CreateSolidBrush(win32api.RGB(*color))
win32gui.SelectObject(hdc, brush)
win32gui.BitBlt(hdc, random.randint(-10, 10), random.randint(-10, 10), sw, sh, hdc, 0, 0, win32con.SRCCOPY)
win32gui.BitBlt(hdc, random.randint(-10, 10), random.randint(-10, 10), sw, sh, hdc, 0, 0, win32con.PATINVERT)
hehe, good thing i experimented with making gdi using python. oh and also why are you using patinvert in bitblt 💀
@@youcannothackme cause why not
so what does the code do Mr nerd
@@thatkid101-v2v make gdi effects using bitblt
@@youcannothackme pitblt shapes
#!/usr/bin/env python
import sys
from win32con import PATINVERT
from win32gui import GetDC, PatBlt
def draw_rects(dc, x, y, w, h, count, dx, dy):
for i in range(count):
PatBlt(dc, x + i * dx, y + i * dy, w - 2 * i * dx, h - 2 * i * dy, PATINVERT)
def main(*argv):
dc = GetDC(0)
draw_rects(dc, 100, 100, 250, 250, 13, 10, 10)
if __name__ == "__main__":
print("Python {:s} {:03d}bit on {:s}
".format(" ".join(elem.strip() for elem in sys.version.split("
")),
64 if sys.maxsize > 0x100000000 else 32, sys.platform))
rc = main(*sys.argv[1:])
print("
Done.")
sys.exit(rc)