β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Best Paste bin alternatives :
t.me/undercodeTesting
> In case you wonder why someone is interested in sites like Pastebin, let's quickly look at what Pastebin does.
Pastebin appeared in the late 1990s and early 2000s as a way to easily share code blocks in the right format and not interrupt the flow of conversation. IRC chat rooms (Internet Relay Chat) at that time were much more rudimentary than modern chat applications like Slack or WhatsApp.
1) ControlC.com
2) Hastebin.com
3) Justpaste.me
4) PrivateBin.net
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Best Paste bin alternatives :
t.me/undercodeTesting
> In case you wonder why someone is interested in sites like Pastebin, let's quickly look at what Pastebin does.
Pastebin appeared in the late 1990s and early 2000s as a way to easily share code blocks in the right format and not interrupt the flow of conversation. IRC chat rooms (Internet Relay Chat) at that time were much more rudimentary than modern chat applications like Slack or WhatsApp.
1) ControlC.com
2) Hastebin.com
3) Justpaste.me
4) PrivateBin.net
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ How to recover MYSQL ROOT password :
instagram.com/undercodeTesting
> If you have forgotten your MYSQL root password, you can recover it through the following procedure.
1) Send a kill command to mysqld server to turn off mysqld server (not kill -9). The file storing the process ID is usually in the directory where the MYSQL database is located.
kill
You must be the root user of UNIX or the equivalent user on the server you are running to perform this operation.
2) Use the '--skip-grant-tables' parameter to start mysqld.
3)Use the 'mysql -h hostname mysql' command to log in to the mysqld server, and use the grant command to change the password. You can also do this: 'mysqladmin -h hostname -u user password' new password ''.
(In fact, you can also use use mysql; update user set password = password ('yourpass') where user =' root '.)
4) Load the permission table: `mysqladmin -h hostname flush-privileges', or use SQL Command `FLUSH PRIVILEGES '. (Of course, here, you can also restart mysqld.)
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ How to recover MYSQL ROOT password :
instagram.com/undercodeTesting
> If you have forgotten your MYSQL root password, you can recover it through the following procedure.
1) Send a kill command to mysqld server to turn off mysqld server (not kill -9). The file storing the process ID is usually in the directory where the MYSQL database is located.
kill
cat / mysql-data-directory / hostname.pidYou must be the root user of UNIX or the equivalent user on the server you are running to perform this operation.
2) Use the '--skip-grant-tables' parameter to start mysqld.
3)Use the 'mysql -h hostname mysql' command to log in to the mysqld server, and use the grant command to change the password. You can also do this: 'mysqladmin -h hostname -u user password' new password ''.
(In fact, you can also use use mysql; update user set password = password ('yourpass') where user =' root '.)
4) Load the permission table: `mysqladmin -h hostname flush-privileges', or use SQL Command `FLUSH PRIVILEGES '. (Of course, here, you can also restart mysqld.)
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ How to import ACCESS data into Mysql ?
twitter.com/undercodenews
π¦ ππΌππ πππΈβπ :
In the process of building a website, it is often necessary to deal with the import and export of some data. In the Mysql database, there are two ways to deal with the export of data (general).
1) INTO table_name from outfile * SELECT "file_name";
2) Use mysqldump utility
Let us illustrate:
Suppose that we have a database of library samp_db, a table samp_table. Now we need to export the data of samp_table. Then we can use the following method to achieve: type
in select * from samp_table into outfile βfile_nameβ at the Mysql prompt; type
mysqldump βu root samp_db samp_table> samp.sql at the system command prompt
(of course mysqldump has many options οΌFor example, -d means only export table structure; -t means only import table data)
How to deal with data import: Generally we enter mysqlimport βu root samp_db samp_table.txt at the system command prompt (note: this TXT file name Must be named after the table). For the data exported by mysqldump, we can also use mysql βu root samp_db <file_name to import. At the Mysql prompt, we use Load data infile βfile_nameβ into table samp_table.
3) In addition to the above methods, under the premise that the database system after the move is the same as the original system, we can import and export data by copying files. First we use mysqladmin -u root variables (at the system command prompt) or show variables; (at the Mysql prompt) to find the datadir. As in my environment, this directory is in c: mysqldata. Then copy some of the files. Everything is ok!
With the above knowledge, we enter the topic: how to import ACCESS data into Mysql.
4) so > we export the data from ACCESS to a text file. During the export process, pay attention to choose the field separator and text identifier, and check the text file to determine whether a record is on the same line. : samp_table.txt. Which reads as follows:
..
5) Next we mysqlimport -u root -fields-terminated-by = "," samp_db samp_table.txt
or use load data infile "c: \ samp_table.txt " into table samp_table fields terminated by ",";
try it (note the escape character), is everything ok! If it still doesn't work, please take a closer look at the help of specific commands. Some options are listed below:
-
-fields-enclosed-by = char indicates that the column value should be included in the specified character. Usually use quotation marks. By default, it is assumed that the column value is not included in any characters.
--fields-escaped-by = char represents the escape character used to escape special characters. By default, it means no escape character
--fields-terminated-by = char specifies the character that separates the columns. By default, column values ββare assumed to be separated by tabs.
--lines-terminated-by = str Specifies the end of the input line string (can be multi-character). By default, the line is assumed to be terminated by a newline
Written by Undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ How to import ACCESS data into Mysql ?
twitter.com/undercodenews
π¦ ππΌππ πππΈβπ :
In the process of building a website, it is often necessary to deal with the import and export of some data. In the Mysql database, there are two ways to deal with the export of data (general).
1) INTO table_name from outfile * SELECT "file_name";
2) Use mysqldump utility
Let us illustrate:
Suppose that we have a database of library samp_db, a table samp_table. Now we need to export the data of samp_table. Then we can use the following method to achieve: type
in select * from samp_table into outfile βfile_nameβ at the Mysql prompt; type
mysqldump βu root samp_db samp_table> samp.sql at the system command prompt
(of course mysqldump has many options οΌFor example, -d means only export table structure; -t means only import table data)
How to deal with data import: Generally we enter mysqlimport βu root samp_db samp_table.txt at the system command prompt (note: this TXT file name Must be named after the table). For the data exported by mysqldump, we can also use mysql βu root samp_db <file_name to import. At the Mysql prompt, we use Load data infile βfile_nameβ into table samp_table.
3) In addition to the above methods, under the premise that the database system after the move is the same as the original system, we can import and export data by copying files. First we use mysqladmin -u root variables (at the system command prompt) or show variables; (at the Mysql prompt) to find the datadir. As in my environment, this directory is in c: mysqldata. Then copy some of the files. Everything is ok!
With the above knowledge, we enter the topic: how to import ACCESS data into Mysql.
4) so > we export the data from ACCESS to a text file. During the export process, pay attention to choose the field separator and text identifier, and check the text file to determine whether a record is on the same line. : samp_table.txt. Which reads as follows:
..
5) Next we mysqlimport -u root -fields-terminated-by = "," samp_db samp_table.txt
or use load data infile "c: \ samp_table.txt " into table samp_table fields terminated by ",";
try it (note the escape character), is everything ok! If it still doesn't work, please take a closer look at the help of specific commands. Some options are listed below:
-
-fields-enclosed-by = char indicates that the column value should be included in the specified character. Usually use quotation marks. By default, it is assumed that the column value is not included in any characters.
--fields-escaped-by = char represents the escape character used to escape special characters. By default, it means no escape character
--fields-terminated-by = char specifies the character that separates the columns. By default, column values ββare assumed to be separated by tabs.
--lines-terminated-by = str Specifies the end of the input line string (can be multi-character). By default, the line is assumed to be terminated by a newline
Written by Undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Wiki trick- How to get youtube premium
T.me/undercodeTesting
1) Login first to your google account Then Connect the VPN to IP: India
2) Go to https://pay.google.com/ 508 CC Gen: https://namso-gen.com/ 544 (No Lives CC needed)**
3) After that go to youtube.com/premium 279
4) Click try it free
5) It will auto add the card just add the cvc 4 digits pin which is on namso-gen.com 275
6) Youβre Done. Bins
β¦ 37479000124xxxx
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Wiki trick- How to get youtube premium
T.me/undercodeTesting
1) Login first to your google account Then Connect the VPN to IP: India
2) Go to https://pay.google.com/ 508 CC Gen: https://namso-gen.com/ 544 (No Lives CC needed)**
3) After that go to youtube.com/premium 279
4) Click try it free
5) It will auto add the card just add the cvc 4 digits pin which is on namso-gen.com 275
6) Youβre Done. Bins
β¦ 37479000124xxxx
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ How to completely change the status bar on Android without root :
t.me/undercodeTesting
π¦ ππΌππ πππΈβπ :
1) Download Super Status Bar
The app is called Super Status Bar and is available for free on the Google Play Store. All features of the program can be obtained in the paid version at a price of $ 1.99.
2) Give Permissions
When you first launch the application, the initial setup window appears. After that, click on the βStartβ button in the main menu. On the new page, you will see two radio buttons for accessing permissions. Click on each of them and you will be taken to the corresponding settings page. Find the Super Status Bar app there and give permission.
3) Change the status bar
On the applicationβs main screen, select the status bar. For more significant changes, you need to purchase the Pro version, but without this you can change something.
simple trick
4) If you want to leave the standard status bar, go to the βChangeβ tab in the settings. Here you can see a list of icons that can be turned off. You can also activate hidden icons, such as "Network Speed", and expand the clock to show seconds. Available options vary by device model.
Return to the βCustomβ tab by enabling the βAllow custom status panelsβ option. Here you can make even more changes, most of which require the Pro version. If you are not going to buy it, you can turn off the icons by selecting the system icons. Activating a custom status panel will change the color for this application, that is, to green.
5)You can always force the custom status bar to be activated, as sometimes Android automatically reverts to its original state. In this case, some applications may lose access to full-screen mode.
written bu undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ How to completely change the status bar on Android without root :
t.me/undercodeTesting
π¦ ππΌππ πππΈβπ :
1) Download Super Status Bar
The app is called Super Status Bar and is available for free on the Google Play Store. All features of the program can be obtained in the paid version at a price of $ 1.99.
2) Give Permissions
When you first launch the application, the initial setup window appears. After that, click on the βStartβ button in the main menu. On the new page, you will see two radio buttons for accessing permissions. Click on each of them and you will be taken to the corresponding settings page. Find the Super Status Bar app there and give permission.
3) Change the status bar
On the applicationβs main screen, select the status bar. For more significant changes, you need to purchase the Pro version, but without this you can change something.
simple trick
4) If you want to leave the standard status bar, go to the βChangeβ tab in the settings. Here you can see a list of icons that can be turned off. You can also activate hidden icons, such as "Network Speed", and expand the clock to show seconds. Available options vary by device model.
Return to the βCustomβ tab by enabling the βAllow custom status panelsβ option. Here you can make even more changes, most of which require the Pro version. If you are not going to buy it, you can turn off the icons by selecting the system icons. Activating a custom status panel will change the color for this application, that is, to green.
5)You can always force the custom status bar to be activated, as sometimes Android automatically reverts to its original state. In this case, some applications may lose access to full-screen mode.
written bu undercode
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Malicious Macro Generator lastest :
instagram.com/undercodeTesting
π¦ ππΌππ πππΈβπ :
1) git clone https://github.com/Mr-Un1k0d3r/MaliciousMacroGenerator
2) cd MaliciousMacroGenerator
3) MMG.Malicious Macro Generator v2.0 - RingZer0 Team
Author: Mr.Un1k0d3r mr.un1k0d3r@gmail.com
Usage: MMG.py [config] [output] (optional parameters)
[config] Config file that contain generator information
[output] Output filename for the macro
-l --list List of all available payloads and evasion techniques
-s --split_strings Randomly split strings at parts
-x --strings_to_hex Encode strings to hex
python MMG.py configs/generic-cmd.json malicious.vba
π¦ Evasion techniques
Domain check
The macro is fetching the USERDOMAIN environment variable and compare the value with a predefined one. If they match the final payload is executed.
Disk check
The macro is looking for the total disk space. VMs and test machines use small disk most of the time.
Memory check
The macro is looking for the total memory size. Vms and test machines use less resources.
Uptime check
The macro is looking for the system uptime. Sandboxes will return a short uptime.
Process check
The macro is checking if a specific process is running (example outlook.exe)
Obfuscation
The python script will also generate obfuscated code to avoid heuristic detection
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Malicious Macro Generator lastest :
instagram.com/undercodeTesting
π¦ ππΌππ πππΈβπ :
1) git clone https://github.com/Mr-Un1k0d3r/MaliciousMacroGenerator
2) cd MaliciousMacroGenerator
3) MMG.Malicious Macro Generator v2.0 - RingZer0 Team
Author: Mr.Un1k0d3r mr.un1k0d3r@gmail.com
Usage: MMG.py [config] [output] (optional parameters)
[config] Config file that contain generator information
[output] Output filename for the macro
-l --list List of all available payloads and evasion techniques
-s --split_strings Randomly split strings at parts
-x --strings_to_hex Encode strings to hex
python MMG.py configs/generic-cmd.json malicious.vba
π¦ Evasion techniques
Domain check
The macro is fetching the USERDOMAIN environment variable and compare the value with a predefined one. If they match the final payload is executed.
Disk check
The macro is looking for the total disk space. VMs and test machines use small disk most of the time.
Memory check
The macro is looking for the total memory size. Vms and test machines use less resources.
Uptime check
The macro is looking for the system uptime. Sandboxes will return a short uptime.
Process check
The macro is checking if a specific process is running (example outlook.exe)
Obfuscation
The python script will also generate obfuscated code to avoid heuristic detection
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - Mr-Un1k0d3r/MaliciousMacroGenerator: Malicious Macro Generator
Malicious Macro Generator. Contribute to Mr-Un1k0d3r/MaliciousMacroGenerator development by creating an account on GitHub.
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Original Resolution (size) Compressed Resolution (size)
by whastsapp @undercode
1280x720 (421 KB) 800x450 (45 KB)
1280x1024 (153 KB) 800x640 (84 KB)
1024x768 (137 KB) 800x600 (64 KB)
3264x2448 (3 MB) 800x600 (69 KB)
800x600 (226 KB) 800x600 (68 KB)
480x360 (30 KB) 480x360 (21 KB)
400x300 (24 KB) 400x300 (22 KB)
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Original Resolution (size) Compressed Resolution (size)
by whastsapp @undercode
1280x720 (421 KB) 800x450 (45 KB)
1280x1024 (153 KB) 800x640 (84 KB)
1024x768 (137 KB) 800x600 (64 KB)
3264x2448 (3 MB) 800x600 (69 KB)
800x600 (226 KB) 800x600 (68 KB)
480x360 (30 KB) 480x360 (21 KB)
400x300 (24 KB) 400x300 (22 KB)
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ LEAKED TOOLS UPLOADED FROM DEEP WEB TO GITHUB :
Alina Spark (Point of Sales Trojan)
Betabot, Neurevt (Trojan)
Bleeding Life 2 (Exploit Pack)
Carberp (Botnet)
Carberp (Banking Trojan)
Crimepack 3.1.3 (Exploit Pack)
Dendroid (Android Trojan)
Dexter v2 (Point of Sales Trojan)
Eda2, Stolich, Win32.Stolich (Ransom)
Sednit, Fancy Bear, APT28, Sofacy, Strontium (Gmail C2C)
FlexiSpy (Spyware)
Fuzzbunch (Exploit Framework)
GMBot (Android Trojan)
Gozi-ISFB - (Banking Trojan)
Grum (Spam Bot)
Hacking Team RCS (Remote Control System)
Hidden Tear (Ransom)
KINS (Banking Trojan)
Mazar (Android Trojan)
Mirai (IoT Botnet)
Pony 2.0 (Stealer)
Poshspy (APT29 backdoor)
PowerLoader (Botnet)
RIG Front-end (Exploit Kit)
Rovnix (Bootkit)
Tinba (Tiny ASM Banking Trojan)
TinyNuke, Nuclear Bot, Micro Banking Trojan, NukeBot (Banking Trojan)
Trochilus, RedLeaves (RAT)
ZeroAccess (Toolkit for ZeroAccess/Sirefef v3)
Zeus (Banking Trojan)
> get clone before ban
https://github.com/m0n0ph1/malware-1
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ LEAKED TOOLS UPLOADED FROM DEEP WEB TO GITHUB :
Alina Spark (Point of Sales Trojan)
Betabot, Neurevt (Trojan)
Bleeding Life 2 (Exploit Pack)
Carberp (Botnet)
Carberp (Banking Trojan)
Crimepack 3.1.3 (Exploit Pack)
Dendroid (Android Trojan)
Dexter v2 (Point of Sales Trojan)
Eda2, Stolich, Win32.Stolich (Ransom)
Sednit, Fancy Bear, APT28, Sofacy, Strontium (Gmail C2C)
FlexiSpy (Spyware)
Fuzzbunch (Exploit Framework)
GMBot (Android Trojan)
Gozi-ISFB - (Banking Trojan)
Grum (Spam Bot)
Hacking Team RCS (Remote Control System)
Hidden Tear (Ransom)
KINS (Banking Trojan)
Mazar (Android Trojan)
Mirai (IoT Botnet)
Pony 2.0 (Stealer)
Poshspy (APT29 backdoor)
PowerLoader (Botnet)
RIG Front-end (Exploit Kit)
Rovnix (Bootkit)
Tinba (Tiny ASM Banking Trojan)
TinyNuke, Nuclear Bot, Micro Banking Trojan, NukeBot (Banking Trojan)
Trochilus, RedLeaves (RAT)
ZeroAccess (Toolkit for ZeroAccess/Sirefef v3)
Zeus (Banking Trojan)
> get clone before ban
https://github.com/m0n0ph1/malware-1
@UndercodeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
GitHub
GitHub - m0n0ph1/malware-1: Malware source code samples leaked online uploaded to GitHub for those who want to analyze the code.
Malware source code samples leaked online uploaded to GitHub for those who want to analyze the code. - m0n0ph1/malware-1
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ x127 Cuentas NordVPN Cuentas: ===== ( ( 1 ) ) ===== Correo : lewis.w.94@hotmail.co.uk Contra : arsenal5 Correo: lewis.w.94@hotmail.co.uk:arsenal5 Expira en (Dias) : 10 Dias Expira en (Fecha) : 2020/03/19 ====((Checker by The Venom))==== ===== ( ( 2 ) ) ===== Correo : thomas@ambrosenet.com Contra : Florence0 Correo/Contra: thomas@ambrosenet.com:Florence0 Expira en (Dias) : 602 Dias Expira en (Fecha) : 2021/11/01 ====((Checker by The Venom))==== ===== ( ( 3 ) ) ===== Correo : cupra66@hotmail.fr Contra : evann1910 Correo/Contra: cupra66@hotmail.fr:evann1910 Expira en (Dias) : 8 Dias Expira en (Fecha) : 2020/03/17 ====((Checker by The Venom))==== ===== ( ( 4 ) ) ===== Correo : danyp950@gmail.com Contra : dany1995 Correo/Contra: danyp950@gmail.com:dany1995 Expira en (Dias) : 18 Dias Expira en (Fecha) : 2020/03/27 ====((Checker by The Venom))==== ===== ( ( 5 ) ) ===== Correo : ellissafincken@hotmail.com Contra : Liliana1 Correo/Contra: ellissafincken@hotmail.com:Liliana1 Expira en (Dias) : 3 Dias Expira en (Fecha) : 2020/03/12 ====((Checker by The Venom))==== ===== ( ( 6 ) ) ===== Correo : nerissa_naidu@yahoo.com Contra : Faolan123 Correo/Contra: nerissa_naidu@yahoo.com:Faolan123 Expira en (Dias) : 1086 Dias Expira en (Fecha) : 2023/02/28 ====((Checker by The Venom))==== ===== ( ( 7 ) ) ===== Correo : darkpaladin1989@gmail.com Contra : alex1989 Correo/Contra: darkpaladin1989@gmail.com:alex1989 Expira en (Dias) : 3 Dias Expira en (Fecha) : 2020/03/12 ====((Checker by The Venom))==== ===== ( ( 8 ) ) ===== Correo : kyegee@hotmail.com Contra : sexual78 Correo/Contra: kyegee@hotmail.com:sexual78 Expira en (Dias) : 417 Dias Expira en (Fecha) : 2021/04/30 ====((Checker by The Venom))==== ===== ( ( 9 ) ) ===== Correo : rune.reiersen@hotmail.com Contra : yd83rokk Correo/Contra: rune.reiersen@hotmail.com:yd83rokk Expira en (Dias) : 67 Dias Expira en (Fecha) : 2020/05/15 ====((Checker by The Venom))==== ===== ( ( 10 ) ) ===== Correo : browz_101@yahoo.com Contra : harrison1126 Correo/Contra: browz_101@yahoo.com:harrison1126 Expira en (Dias) : 798 Dias Expira en (Fecha) : 2022/05/16 ====((Checker by The Venom))==== ===== ( ( 11 ) ) ===== Correo : teflonaudi@gmail.com Contra : Thesoup1 Correo/Contra: teflonaudi@gmail.com:Thesoup1 Expira en (Dias) : 124 Dias Expira en (Fecha) : 2020/07/11 ====((Checker by The Venom))==== ===== ( ( 12 ) ) ===== Correo : seth.ritter2@gmail.com Contra : CVFootball63 Correo/Contra: seth.ritter2@gmail.com:CVFootball63 Expira en (Dias) : 1581 Dias Expira en (Fecha) : 2024/07/07 ====((Checker by The Venom))==== ===== ( ( 13 ) ) ===== Correo : sawel.williams@yahoo.co.uk Contra : Fudge2004 Correo/Contra: sawel.williams@yahoo.co.uk:Fudge2004 Expira en (Dias) : 359 Dias Expira en (Fecha) : 2021/03/03 ====((Checker by The Venom))==== ===== ( ( 14 ) ) ===== Correo : cfarrell1980@gmail.com Contra : atha7FUt Correo/Contra: cfarrell1980@gmail.com:atha7FUt Expira en (Dias) : 817 Dias Expira en (Fecha) : 2022/06/04 ====((Checker by The Venom))==== ===== ( ( 15 ) ) ===== Correo : mod_jarrod@hotmail.com Contra : Oddjob12 Correo/Contra: mod_jarrod@hotmail.com:Oddjob12 Expira en (Dias) : 2 Dias Expira en (Fecha) : 2020/03/11 ====((Checker by The Venom))==== ===== ( ( 16 ) ) ===== Correo : warmunkey@outlook.com Contra : Gamer1234 Correo/Contra: warmunkey@outlook.com:Gamer1234 Expira en (Dias) : 5 Dias Expira en (Fecha) : 2020/03/14 ====((Checker by The Venom))==== ===== ( ( 17 ) ) ===== Correo : pandaboy626@gmail.com Contra : frost626 Correo/Contra: pandaboy626@gmail.com:frost626 Expira en (Dias) : 14 Dias Expira en (Fecha) : 2020/03/23 ====((Checker by The Venom))==== ===== ( ( 18 ) ) ===== Correo : jkpenn89@outlook.com Contra : marlee05 Correo/Contra: jkpenn89@outlook.com:marlee05 Expira en (Dias) : 5 Dias Expira en (Fecha) : 2020/03/14 ====((Checker by The Venom))==== ===== ( ( 19 ) ) ===== Correo : cb112012@hotmail.com Contra : Gutter11 Correo/Contra: cb112012@hotmail.
π¦ x127 Cuentas NordVPN Cuentas: ===== ( ( 1 ) ) ===== Correo : lewis.w.94@hotmail.co.uk Contra : arsenal5 Correo: lewis.w.94@hotmail.co.uk:arsenal5 Expira en (Dias) : 10 Dias Expira en (Fecha) : 2020/03/19 ====((Checker by The Venom))==== ===== ( ( 2 ) ) ===== Correo : thomas@ambrosenet.com Contra : Florence0 Correo/Contra: thomas@ambrosenet.com:Florence0 Expira en (Dias) : 602 Dias Expira en (Fecha) : 2021/11/01 ====((Checker by The Venom))==== ===== ( ( 3 ) ) ===== Correo : cupra66@hotmail.fr Contra : evann1910 Correo/Contra: cupra66@hotmail.fr:evann1910 Expira en (Dias) : 8 Dias Expira en (Fecha) : 2020/03/17 ====((Checker by The Venom))==== ===== ( ( 4 ) ) ===== Correo : danyp950@gmail.com Contra : dany1995 Correo/Contra: danyp950@gmail.com:dany1995 Expira en (Dias) : 18 Dias Expira en (Fecha) : 2020/03/27 ====((Checker by The Venom))==== ===== ( ( 5 ) ) ===== Correo : ellissafincken@hotmail.com Contra : Liliana1 Correo/Contra: ellissafincken@hotmail.com:Liliana1 Expira en (Dias) : 3 Dias Expira en (Fecha) : 2020/03/12 ====((Checker by The Venom))==== ===== ( ( 6 ) ) ===== Correo : nerissa_naidu@yahoo.com Contra : Faolan123 Correo/Contra: nerissa_naidu@yahoo.com:Faolan123 Expira en (Dias) : 1086 Dias Expira en (Fecha) : 2023/02/28 ====((Checker by The Venom))==== ===== ( ( 7 ) ) ===== Correo : darkpaladin1989@gmail.com Contra : alex1989 Correo/Contra: darkpaladin1989@gmail.com:alex1989 Expira en (Dias) : 3 Dias Expira en (Fecha) : 2020/03/12 ====((Checker by The Venom))==== ===== ( ( 8 ) ) ===== Correo : kyegee@hotmail.com Contra : sexual78 Correo/Contra: kyegee@hotmail.com:sexual78 Expira en (Dias) : 417 Dias Expira en (Fecha) : 2021/04/30 ====((Checker by The Venom))==== ===== ( ( 9 ) ) ===== Correo : rune.reiersen@hotmail.com Contra : yd83rokk Correo/Contra: rune.reiersen@hotmail.com:yd83rokk Expira en (Dias) : 67 Dias Expira en (Fecha) : 2020/05/15 ====((Checker by The Venom))==== ===== ( ( 10 ) ) ===== Correo : browz_101@yahoo.com Contra : harrison1126 Correo/Contra: browz_101@yahoo.com:harrison1126 Expira en (Dias) : 798 Dias Expira en (Fecha) : 2022/05/16 ====((Checker by The Venom))==== ===== ( ( 11 ) ) ===== Correo : teflonaudi@gmail.com Contra : Thesoup1 Correo/Contra: teflonaudi@gmail.com:Thesoup1 Expira en (Dias) : 124 Dias Expira en (Fecha) : 2020/07/11 ====((Checker by The Venom))==== ===== ( ( 12 ) ) ===== Correo : seth.ritter2@gmail.com Contra : CVFootball63 Correo/Contra: seth.ritter2@gmail.com:CVFootball63 Expira en (Dias) : 1581 Dias Expira en (Fecha) : 2024/07/07 ====((Checker by The Venom))==== ===== ( ( 13 ) ) ===== Correo : sawel.williams@yahoo.co.uk Contra : Fudge2004 Correo/Contra: sawel.williams@yahoo.co.uk:Fudge2004 Expira en (Dias) : 359 Dias Expira en (Fecha) : 2021/03/03 ====((Checker by The Venom))==== ===== ( ( 14 ) ) ===== Correo : cfarrell1980@gmail.com Contra : atha7FUt Correo/Contra: cfarrell1980@gmail.com:atha7FUt Expira en (Dias) : 817 Dias Expira en (Fecha) : 2022/06/04 ====((Checker by The Venom))==== ===== ( ( 15 ) ) ===== Correo : mod_jarrod@hotmail.com Contra : Oddjob12 Correo/Contra: mod_jarrod@hotmail.com:Oddjob12 Expira en (Dias) : 2 Dias Expira en (Fecha) : 2020/03/11 ====((Checker by The Venom))==== ===== ( ( 16 ) ) ===== Correo : warmunkey@outlook.com Contra : Gamer1234 Correo/Contra: warmunkey@outlook.com:Gamer1234 Expira en (Dias) : 5 Dias Expira en (Fecha) : 2020/03/14 ====((Checker by The Venom))==== ===== ( ( 17 ) ) ===== Correo : pandaboy626@gmail.com Contra : frost626 Correo/Contra: pandaboy626@gmail.com:frost626 Expira en (Dias) : 14 Dias Expira en (Fecha) : 2020/03/23 ====((Checker by The Venom))==== ===== ( ( 18 ) ) ===== Correo : jkpenn89@outlook.com Contra : marlee05 Correo/Contra: jkpenn89@outlook.com:marlee05 Expira en (Dias) : 5 Dias Expira en (Fecha) : 2020/03/14 ====((Checker by The Venom))==== ===== ( ( 19 ) ) ===== Correo : cb112012@hotmail.com Contra : Gutter11 Correo/Contra: cb112012@hotmail.
com:Gutter11 Expira en (Dias) : 750 Dias Expira en (Fecha) : 2022/03/29 ====((Checker by The Venom))==== ===== ( ( 20 ) ) ===== Correo : zachoni2@gmail.com Contra : NotSoFast7 Correo/Contra: zachoni2@gmail.com:NotSoFast7 Expira en (Dias) : 1 Dias Expira en (Fecha) : 2020/03/10 ====((Checker by The Venom))==== ===== ( ( 21 ) ) ===== Correo : ggnikole@gmail.com Contra : Giabella2012 Correo/Contra: ggnikole@gmail.com:Giabella2012 Expira en (Dias) : 174 Dias Expira en (Fecha) : 2020/08/30 ====((Checker by The Venom))==== ===== ( ( 22 ) ) ===== Correo : marciobehle@gmail.com Contra : md11a380 Correo/Contra: marciobehle@gmail.com:md11a380 Expira en (Dias) : 2 Dias Expira en (Fecha) : 2020/03/11 ====((Checker by The Venom))==== ===== ( ( 23 ) ) ===== Correo : ritchea95@yahoo.com Contra : Jakobritchea95 Correo/Contra: ritchea95@yahoo.com:Jakobritchea95 Expira en (Dias) : 706 Dias Expira en (Fecha) : 2022/02/13 ====((Checker by The Venom))==== ===== ( ( 24 ) ) ===== Correo : raul.palomo@gmail.com Contra : ijam5690 Correo/Contra: raul.palomo@gmail.com:ijam5690 Expira en (Dias) : 440 Dias Expira en (Fecha) : 2021/05/23 ====((Checker by The Venom))==== ===== ( ( 25 ) ) ===== Correo : dragon/yohan@live.fr Contra : 91780yoyo Correo/Contra: dragon/yohan@live.fr:91780yoyo Expira en (Dias) : 902 Dias Expira en (Fecha) : 2022/08/28 ====((Checker by The Venom))==== ===== ( ( 26 ) ) ===== Correo : pauleros2@gmail.com Contra : Good4you Correo/Contra: pauleros2@gmail.com:Good4you Expira en (Dias) : 371 Dias Expira en (Fecha) : 2021/03/15 ====((Checker by The Venom))==== ===== ( ( 27 ) ) ===== Correo : m_odonnell_08@hotmail.co.uk Contra : 2588buff Correo/Contra: m_odonnell_08@hotmail.co.uk:2588buff Expira en (Dias) : 2 Dias Expira en (Fecha) : 2020/03/11 ====((Checker by The Venom))==== ===== ( ( 28 ) ) ===== Correo : brnrdroda@gmail.com Contra : Hockey666 Correo/Contra: brnrdroda@gmail.com:Hockey666 Expira en (Dias) : 168 Dias Expira en (Fecha) : 2020/08/24 ====((Checker by The Venom))==== ===== ( ( 29 ) ) ===== Correo : alawoeu@yahoo.fr Contra : ua250555 Correo/Contra: alawoeu@yahoo.fr:ua250555 Expira en (Dias) : 4 Dias Expira en (Fecha) : 2020/03/13 ====((Checker by The Venom))==== ===== ( ( 30 ) ) ===== Correo : madianne22@outlook.com Contra : Roxybuster09 Correo/Contra: madianne22@outlook.com:Roxybuster09 Expira en (Dias) : 147 Dias Expira en (Fecha) : 2020/08/03 ====((Checker by The Venom))==== ===== ( ( 31 ) ) ===== Correo : eric@dajackson.com Contra : TheEnd05 Correo/Contra: eric@dajackson.com:TheEnd05 Expira en (Dias) : 906 Dias Expira en (Fecha) : 2022/09/01 ====((Checker by The Venom))==== ===== ( ( 32 ) ) ===== Correo : brad.kiefer25@gmail.com Contra : foxracing25 Correo/Contra: brad.kiefer25@gmail.com:foxracing25 Expira en (Dias) : 113 Dias Expira en (Fecha) : 2020/06/30 ====((Checker by The Venom))==== ===== ( ( 33 ) ) ===== Correo : chasekennard@yahoo.com Contra : Burton123 Correo/Contra: chasekennard@yahoo.com:Burton123 Expira en (Dias) : 4 Dias Expira en (Fecha) : 2020/03/13 ====((Checker by The Venom))==== ===== ( ( 34 ) ) ===== Correo : stapledpaper@live.com Contra : Claytonwcar1 Correo/Contra: stapledpaper@live.com:Claytonwcar1 Expira en (Dias) : 5 Dias Expira en (Fecha) : 2020/03/14 ====((Checker by The Venom))==== ===== ( ( 35 ) ) ===== Correo : aneesh_v@hotmail.com Contra : namita1974 Correo/Contra: aneesh_v@hotmail.com:namita1974 Expira en (Dias) : 106 Dias Expira en (Fecha) : 2020/06/23 ====((Checker by The Venom))==== ===== ( ( 36 ) ) ===== Correo : stengel.aaron@gmail.com Contra : hoopla123 Correo/Contra: stengel.aaron@gmail.com:hoopla123 Expira en (Dias) : 29 Dias Expira en (Fecha) : 2020/04/07 ====((Checker by The Venom))==== ===== ( ( 37 ) ) ===== Correo : mark@rychel.com Contra : jackie10 Correo/Contra: mark@rychel.com:jackie10 Expira en (Dias) : 810 Dias Expira en (Fecha) : 2022/05/28 ====((Checker by The Venom))==== ===== ( ( 38 ) ) ===== Correo : dyingtolive68@hotmail.com Contra : Contraword6 Correo/Contra: dyingtolive68@hotmail.
@Kadrinho
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
@Kadrinho
β β β ο½ππ»βΊπ«Δπ¬πβ β β β