UNDERCODE COMMUNITY pinned ยซโโโโโUNDERCODEโโโโโ- DANGEROUS TRICK BY UNDERCODE โ ๏ธ # TESTED AS MANY ACCOUNTS (instagram.com/UndercodeTestingCompany) ๐ทExplanation disable any WhatsApp account, whether Egyptian or foreign 1) go to record the number who want to disrupt it 2) code hasโฆยป
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆ TOP Types of Attacks :
(Twitter.com/UnderCodeTC)
๐ฆDenial of Service
Denial of service attacks leverage a vulnerability to create a loss of service, often by crashing the vulnerable process. The Stress Testing category of the Kali Linux menu contains a number of tools for this purpose.
When many people hear the term โdenial of service attackโ, they immediately think of resource consumption attacks that are sent out from multiple sources at once against a single target. These would be a distributed denial of services attack, or DDoS. These sorts of attacks are rarely part of a professional security assessment.
๐ฆMemory Corruption
A memory corruption happens when a location within the memory space of a process is accidentally modified due to programming mistakes. Memory corruption bugs usually lead to unpredictable program behavior, however in many cases, these bugs allow process memory manipulation in such a way that the program execution flow can be controlled, allowing attacker-defined activity.
These attacks are typically referred to as buffer overflows, although this term is an over-simplification. The most common types of memory corruption are vastly different from one another and have their own tactics and techniques required for successful exploitation.
๐ฆ Web Vulnerabilities
Due to the fact that modern web sites are no longer static pages, but instead dynamically generated for the user, the average website is quite complex. Web vulnerabilities take advantage of this complexity in an effort to attack either the back end page generation logic or the presentation to the visitor of the site.
These sorts of attacks are extremely common, as many organizations have reached the point where they have very few externally facing services. Two of the most prevalent web application attack types are SQL injection and cross-site scripting (XSS).
๐ฆ Password Attacks
Password attacks are attacks against the authentication system of a service. These attacks are often broken into online password attacks and offline password attacks, which you will find reflected in the Password Attacks menu category. In an online password attack, multiple passwords are attempted against a running system. In an offline password attack, the hashed or encrypted values of the passwords are obtained and the attacker attempts to obtain the clear text values. The protection against this sort of attack is the fact that it is computationally expensive to work through this process, limiting the number of attempts per second you can generate. However, workarounds for this do exist, such as using graphic processor units (GPUs) to accelerate the number of attempts that can be made. The kali-linux-gpu metapackage contains a number of tools that tap into this power.
๐ฆ Client-Side Attacks
Most attacks are conducted against servers, but as services have become harder to attack, easier targets have been selected. Client-side attacks are a result of this, where an attacker will target the various applications installed on the workstation of an employee within a target organization. The Social Engineering Tools menu category has a number of excellent applications that can help conduct these types of attacks.
@ Steave(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆ TOP Types of Attacks :
(Twitter.com/UnderCodeTC)
๐ฆDenial of Service
Denial of service attacks leverage a vulnerability to create a loss of service, often by crashing the vulnerable process. The Stress Testing category of the Kali Linux menu contains a number of tools for this purpose.
When many people hear the term โdenial of service attackโ, they immediately think of resource consumption attacks that are sent out from multiple sources at once against a single target. These would be a distributed denial of services attack, or DDoS. These sorts of attacks are rarely part of a professional security assessment.
๐ฆMemory Corruption
A memory corruption happens when a location within the memory space of a process is accidentally modified due to programming mistakes. Memory corruption bugs usually lead to unpredictable program behavior, however in many cases, these bugs allow process memory manipulation in such a way that the program execution flow can be controlled, allowing attacker-defined activity.
These attacks are typically referred to as buffer overflows, although this term is an over-simplification. The most common types of memory corruption are vastly different from one another and have their own tactics and techniques required for successful exploitation.
๐ฆ Web Vulnerabilities
Due to the fact that modern web sites are no longer static pages, but instead dynamically generated for the user, the average website is quite complex. Web vulnerabilities take advantage of this complexity in an effort to attack either the back end page generation logic or the presentation to the visitor of the site.
These sorts of attacks are extremely common, as many organizations have reached the point where they have very few externally facing services. Two of the most prevalent web application attack types are SQL injection and cross-site scripting (XSS).
๐ฆ Password Attacks
Password attacks are attacks against the authentication system of a service. These attacks are often broken into online password attacks and offline password attacks, which you will find reflected in the Password Attacks menu category. In an online password attack, multiple passwords are attempted against a running system. In an offline password attack, the hashed or encrypted values of the passwords are obtained and the attacker attempts to obtain the clear text values. The protection against this sort of attack is the fact that it is computationally expensive to work through this process, limiting the number of attempts per second you can generate. However, workarounds for this do exist, such as using graphic processor units (GPUs) to accelerate the number of attempts that can be made. The kali-linux-gpu metapackage contains a number of tools that tap into this power.
๐ฆ Client-Side Attacks
Most attacks are conducted against servers, but as services have become harder to attack, easier targets have been selected. Client-side attacks are a result of this, where an attacker will target the various applications installed on the workstation of an employee within a target organization. The Social Engineering Tools menu category has a number of excellent applications that can help conduct these types of attacks.
@ Steave(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆEXPLOITE ON KALI BU undercOde: 2019
(t.me/UnderCodeTestingOfficial)
๐ฆINSTALLISATION & RUN:
How to Install SearchSploit
2) open terminal & type:
apt update && apt -y install exploitdb
3) for update:
> searchsploit -u
> apt update && apt -y full-upgrade
4) > searchsploit -h
it show like this:
Usage: searchsploit [options] term1 [term2] ... [termN]
5) OTHER EXAMPLES COMMANDS:
>searchsploit afd windows local
> searchsploit -t oracle windows
>searchsploit -p 39446
>searchsploit linux kernel 3.2 --exclude="(PoC)|/dos/"
6) for basic search in database:
> searchsploit afd windows local
7) for exploite title:
> searchsploit -t oracle windows
8) Removing Unwanted Results:
We can remove unwanted results by using the --exclude option. We are also able to remove multiple terms by separating the value with a | (pipe). This can be demonstrated by the following:
> searchsploit linux kernel 3.2 --exclude="(PoC)|/dos/"
9) Piping Output (Alternative Method of Removing Unwanted Results)
The output from searchsploit can be piped into any other program, which is especially useful when outputting the results in JSON format (using the -j option). With this, it is possible to remove any unwanted exploits by using grep. In the following example, we use grep to filter out any "Denial of Service (DoS)" results.
> searchsploit XnView | grep -v '/dos/'
10) Copy To Clipboard
So now that we have found the exploit we are looking for, there are various ways to access it quickly.
By using -p, we are able to get some more information about the exploit, as well as copy the complete path to the exploit onto the clipboard:
example:
> searchsploit 39446
11) Copy To Folder
We recommend that you do not alter the exploits in your local copy of the database. Instead, make a copy of ones that are of interest and use them from a working directory. By using the -m option, we are able to select as many exploits we like to be copied into the same folder that we are currently in:
> searchsploit MS14-040
12 ) Exploit-DB Online
The Exploit Database repository is the main core of Exploit-DB, making SearchSploit efficient and easy to use. However, some of the exploit metadata (such as screenshots, setup files, tags, and vulnerability mappings) are not included. To access them, you will need to check the website.
You can quickly generate the links to exploits of interest by using the -w option:
> searchsploit WarFTP 1.65 -w
enjoy
Written By Mr. BotNet(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆEXPLOITE ON KALI BU undercOde: 2019
(t.me/UnderCodeTestingOfficial)
๐ฆINSTALLISATION & RUN:
How to Install SearchSploit
2) open terminal & type:
apt update && apt -y install exploitdb
3) for update:
> searchsploit -u
> apt update && apt -y full-upgrade
4) > searchsploit -h
it show like this:
Usage: searchsploit [options] term1 [term2] ... [termN]
5) OTHER EXAMPLES COMMANDS:
>searchsploit afd windows local
> searchsploit -t oracle windows
>searchsploit -p 39446
>searchsploit linux kernel 3.2 --exclude="(PoC)|/dos/"
6) for basic search in database:
> searchsploit afd windows local
7) for exploite title:
> searchsploit -t oracle windows
8) Removing Unwanted Results:
We can remove unwanted results by using the --exclude option. We are also able to remove multiple terms by separating the value with a | (pipe). This can be demonstrated by the following:
> searchsploit linux kernel 3.2 --exclude="(PoC)|/dos/"
9) Piping Output (Alternative Method of Removing Unwanted Results)
The output from searchsploit can be piped into any other program, which is especially useful when outputting the results in JSON format (using the -j option). With this, it is possible to remove any unwanted exploits by using grep. In the following example, we use grep to filter out any "Denial of Service (DoS)" results.
> searchsploit XnView | grep -v '/dos/'
10) Copy To Clipboard
So now that we have found the exploit we are looking for, there are various ways to access it quickly.
By using -p, we are able to get some more information about the exploit, as well as copy the complete path to the exploit onto the clipboard:
example:
> searchsploit 39446
11) Copy To Folder
We recommend that you do not alter the exploits in your local copy of the database. Instead, make a copy of ones that are of interest and use them from a working directory. By using the -m option, we are able to select as many exploits we like to be copied into the same folder that we are currently in:
> searchsploit MS14-040
12 ) Exploit-DB Online
The Exploit Database repository is the main core of Exploit-DB, making SearchSploit efficient and easy to use. However, some of the exploit metadata (such as screenshots, setup files, tags, and vulnerability mappings) are not included. To access them, you will need to check the website.
You can quickly generate the links to exploits of interest by using the -w option:
> searchsploit WarFTP 1.65 -w
enjoy
Written By Mr. BotNet(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
โโโโ-๐๐D๐๐๐ฎ๐D๐โโโโโ-
๐ฆCOMMUMNS ports, such as TCP port 80 (HTTP), may be locked down โ but other ports may get overlooked and be vulnerable to hackers.
(T.me/UnderCodeTestingOfficial)
๐ฆIn your security tests, be sure to check these commonly hacked TCP and UDP ports:
1) TCP port 21 โ FTP (File Transfer Protocol)
2)TCP port 22 โ SSH (Secure Shell)
3)TCP port 23 โ Telnet
4)TCP port 25 โ SMTP (Simple Mail Transfer Protocol)
5)TCP and UDP port 53 โ DNS (Domain Name System)
6)TCP port 443 โ HTTP (Hypertext Transport Protocol) and HTTPS (HTTP over SSL)
7)TCP port 110 โ POP3 (Post Office Protocol version 3)
8)TCP and UDP port 135 โ Windows RPC
9)TCP and UDP ports 137โ139 โ Windows NetBIOS over TCP/IP
10)TCP port 1433 and UDP port 1434 โ Microsoft SQL Server
@ Mr. BOTNET(t.m)
โโโโโ๐๐D๐๐๐ฎ๐D๐โโโโ-
๐ฆCOMMUMNS ports, such as TCP port 80 (HTTP), may be locked down โ but other ports may get overlooked and be vulnerable to hackers.
(T.me/UnderCodeTestingOfficial)
๐ฆIn your security tests, be sure to check these commonly hacked TCP and UDP ports:
1) TCP port 21 โ FTP (File Transfer Protocol)
2)TCP port 22 โ SSH (Secure Shell)
3)TCP port 23 โ Telnet
4)TCP port 25 โ SMTP (Simple Mail Transfer Protocol)
5)TCP and UDP port 53 โ DNS (Domain Name System)
6)TCP port 443 โ HTTP (Hypertext Transport Protocol) and HTTPS (HTTP over SSL)
7)TCP port 110 โ POP3 (Post Office Protocol version 3)
8)TCP and UDP port 135 โ Windows RPC
9)TCP and UDP ports 137โ139 โ Windows NetBIOS over TCP/IP
10)TCP port 1433 and UDP port 1434 โ Microsoft SQL Server
@ Mr. BOTNET(t.m)
โโโโโ๐๐D๐๐๐ฎ๐D๐โโโโ-
โโโโโ๐๐D๐๐๐ฎ๐D๐โโโโ-
๐ฆSMTP ANALYSIS Extracting and analyzing URLs from Emails for phishing events TUTORIAL:
(T.ME/UnderCodeTestingOfficial)
๐ฆINSTALLISATION & RUN:
1) OPEN TERMINAL & Type:
> bro-pkg install initconf/smtp-url-analysis or @load smtp-url-analysis/scripts
2) fOR Upgrade
> bro-pkg upgrade bro/initconf/smtp-url-analysis.git The following packages will be UPGRADED:
3) SO OUTPUT WILL BE:
> bro/initconf/smtp-url-analysis.git (master)
Proceed? [Y/n] y Running unit tests for "bro/initconf/smtp-url-analysis.git" all 7 tests successful Upgraded "bro/initconf/smtp-url-analysis.git" (master)
๐ฆFEATURES:
1) Works in a cluster and standalone mode
2) extracts URLs from Emails and logs them to smtpurl_links.log
3) Tracks these SMTP urls in http analyzer and logs if any of these SMTP URL has been clicked into a file smtp_clicked_urls.log
4) Reads a file for malicious indicators and generates an alert of any of those inddicators have a HIT in smtp traffic (see below for more details)
5) Generates alerts if suspicious strings are seen in URL (see below for details)
6) Generates alerts if a SMTP URL is clicked resulting in a file download
Written By Mr. BotNet(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆSMTP ANALYSIS Extracting and analyzing URLs from Emails for phishing events TUTORIAL:
(T.ME/UnderCodeTestingOfficial)
๐ฆINSTALLISATION & RUN:
1) OPEN TERMINAL & Type:
> bro-pkg install initconf/smtp-url-analysis or @load smtp-url-analysis/scripts
2) fOR Upgrade
> bro-pkg upgrade bro/initconf/smtp-url-analysis.git The following packages will be UPGRADED:
3) SO OUTPUT WILL BE:
> bro/initconf/smtp-url-analysis.git (master)
Proceed? [Y/n] y Running unit tests for "bro/initconf/smtp-url-analysis.git" all 7 tests successful Upgraded "bro/initconf/smtp-url-analysis.git" (master)
๐ฆFEATURES:
1) Works in a cluster and standalone mode
2) extracts URLs from Emails and logs them to smtpurl_links.log
3) Tracks these SMTP urls in http analyzer and logs if any of these SMTP URL has been clicked into a file smtp_clicked_urls.log
4) Reads a file for malicious indicators and generates an alert of any of those inddicators have a HIT in smtp traffic (see below for more details)
5) Generates alerts if suspicious strings are seen in URL (see below for details)
6) Generates alerts if a SMTP URL is clicked resulting in a file download
Written By Mr. BotNet(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆAWESOME SCRIPT FOR A testing system for catching visual regressions in Web applications.
(instagram.com/UnderCodeTestingCompany)
๐ฆINSTALLISATION & RUN:
1) git clone https://github.com/facebookarchive/huxley
2)(( pip install huxley))
3) python setup.py
๐ฆHOW USE :
1) host your app somewhere
For our example, simply cd to examples/webroot and run python -m SimpleHTTPServer to start a basic server for our demo. In your app you may need to start up whatever framework you're using.
2) create a Huxleyfile
A Huxleyfile describes your test. Create one that looks like this:
[toggle]
url=http://localhost:8000/toggle.html
3) record the test
Huxley makes writing tests easy because it simply records your browser session -- specifically mouse clicks and key presses on a single page -- and can replay them in an automated way. To do this you need to install Selenium Server and start it. It's as easy as java -jar selenium-server-standalone-XXX.jar.
4) playback
Simply run the huxley command in the same directory as the Huxleyfile to be sure that your app still works.
5) update the test with new screen shots
You'll likely update the UI of the component a lot without changing its core functionality. Huxley can take new screen shots for you when this happens. Tweak the UI of the component in toggle.html somehow (maybe change the button color or something) and re-run huxley. It will warn you that the UI has changed and will automatically
6) run in CI mode
If you're using a continuous integration solution like Jenkins you probably don't want to automatically rerecord screen shots on failure. Simply run huxley --playback-only to do this.
Additionally, you may find that you're dissatisfied with Huxley replaying your browsing session in real-time. You can speed it up (or slow it down) by editing your Huxleyfile to read:
[toggle]
url=http://localhost:8000/toggle.html
sleepfactor=0.5
@ Mr. BotNet(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆAWESOME SCRIPT FOR A testing system for catching visual regressions in Web applications.
(instagram.com/UnderCodeTestingCompany)
๐ฆINSTALLISATION & RUN:
1) git clone https://github.com/facebookarchive/huxley
2)(( pip install huxley))
3) python setup.py
๐ฆHOW USE :
1) host your app somewhere
For our example, simply cd to examples/webroot and run python -m SimpleHTTPServer to start a basic server for our demo. In your app you may need to start up whatever framework you're using.
2) create a Huxleyfile
A Huxleyfile describes your test. Create one that looks like this:
[toggle]
url=http://localhost:8000/toggle.html
3) record the test
Huxley makes writing tests easy because it simply records your browser session -- specifically mouse clicks and key presses on a single page -- and can replay them in an automated way. To do this you need to install Selenium Server and start it. It's as easy as java -jar selenium-server-standalone-XXX.jar.
4) playback
Simply run the huxley command in the same directory as the Huxleyfile to be sure that your app still works.
5) update the test with new screen shots
You'll likely update the UI of the component a lot without changing its core functionality. Huxley can take new screen shots for you when this happens. Tweak the UI of the component in toggle.html somehow (maybe change the button color or something) and re-run huxley. It will warn you that the UI has changed and will automatically
6) run in CI mode
If you're using a continuous integration solution like Jenkins you probably don't want to automatically rerecord screen shots on failure. Simply run huxley --playback-only to do this.
Additionally, you may find that you're dissatisfied with Huxley replaying your browsing session in real-time. You can speed it up (or slow it down) by editing your Huxleyfile to read:
[toggle]
url=http://localhost:8000/toggle.html
sleepfactor=0.5
@ Mr. BotNet(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
Instagram
Login โข Instagram
Welcome back to Instagram. Sign in to check out what your friends, family & interests have been capturing & sharing around the world.
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆWHAT IS RASPERY PI 4 & WHAT IS THERI USE
(t.me/UndercOdeTestingOfficial)
1) The Raspberry Pi 4 uses a Broadcom BCM2711 SoC with a 1.5 GHz 64-bit quad-core ARM Cortex-A72 processor, with 1MB shared L2 cache.
2) The Raspberry Pi Zero and Zero W use the same Broadcom BCM2835 SoC as the first generation Raspberry Pi, although now running at 1 GHz CPU clock speed.
3) CPU: 1.5 GHz 64/32-bit quad-core ARM Corte...
4) Release date: 24 February 2012; 7 years ago ...
5) Operating system: FreeBSD; Linux; NetBSD; O...
๐ฆUSE OF RASPRY PI :
1) Replace Your Desktop PC With a Raspberry Pi
> Along with the Pi itself, the microSD card, and power supply, youโll need a HDMI cable and a suitable display. As with a traditional computer, youโll also need a USB keyboard and mouse.
The Raspberry Pi 3 and later has Wi-Fi and Bluetooth built in. If youโre using an older model, youโll need compatible USB dongles (check compatibility at elinux.orgโs Raspberry Pi Hub). If you prefer to use Ethernet, however, all Raspberry Pi models (except the Pi Zero) are equipped with Ethernet ports.
2) Print With Your Raspberry Pi
> Have an old printer that you really like using, but which cannot be connected to wirelessly? Youโre probably inclined to dispose of it safely, but you really donโt need to. All you need is a Raspberry Pi connected to your home network, and some print server software.
This is done by installing the Samba file sharing software, followed by CUPS. The Common Unix Printing System provides drivers for your printer and provides an administration console.
3) Add AirPrint Support to Your Pi Print Server
The above project only takes things so far. Itโs ideal for printing from a Windows, Mac or Linux computer, but what about tablets and phones? For that, youโll need Air Print support, which can be added via a single script.
4) Cut the Cord With Kodi: A Raspberry Pi Media Center
Itโs likely that the main use for a Raspberry Pi is as a Kodi media center. Available as disk images, several Kodi builds have been released, with OSMC and OpenElec among the most popular.
5) Set Up a Retro Gaming Machine
Two main options are available for retro gaming, Recalbox and RetroPie. Others can be used, but all will need a suitable controller that will need some initial configuration. Many platforms can be emulated, from classic MS-DOS PC gaming to the Commodore 64. Many popular 16-bit games consoles can also be revived on the Raspberry Pi.
6) Build a Minecraft Game Server
Most effectively, your Pi makes an excellent game server for Minecraft, letting you play from anywhere on your home network. If you have multiple Raspberry Pis, having one as dedicated server will give you a great gaming experience. This works particularly well if you have plenty of Minecraft fans to play with.
7) Control a Robot
There are so many robot-controller Raspberry Pi projects that itโs difficult to settle on a single example. You might, for instance, rely on a dedicated robotics package for your Pi, with the device battery powered and used to communicate and control your robot.
@ Mr. BotNet(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
๐ฆWHAT IS RASPERY PI 4 & WHAT IS THERI USE
(t.me/UndercOdeTestingOfficial)
1) The Raspberry Pi 4 uses a Broadcom BCM2711 SoC with a 1.5 GHz 64-bit quad-core ARM Cortex-A72 processor, with 1MB shared L2 cache.
2) The Raspberry Pi Zero and Zero W use the same Broadcom BCM2835 SoC as the first generation Raspberry Pi, although now running at 1 GHz CPU clock speed.
3) CPU: 1.5 GHz 64/32-bit quad-core ARM Corte...
4) Release date: 24 February 2012; 7 years ago ...
5) Operating system: FreeBSD; Linux; NetBSD; O...
๐ฆUSE OF RASPRY PI :
1) Replace Your Desktop PC With a Raspberry Pi
> Along with the Pi itself, the microSD card, and power supply, youโll need a HDMI cable and a suitable display. As with a traditional computer, youโll also need a USB keyboard and mouse.
The Raspberry Pi 3 and later has Wi-Fi and Bluetooth built in. If youโre using an older model, youโll need compatible USB dongles (check compatibility at elinux.orgโs Raspberry Pi Hub). If you prefer to use Ethernet, however, all Raspberry Pi models (except the Pi Zero) are equipped with Ethernet ports.
2) Print With Your Raspberry Pi
> Have an old printer that you really like using, but which cannot be connected to wirelessly? Youโre probably inclined to dispose of it safely, but you really donโt need to. All you need is a Raspberry Pi connected to your home network, and some print server software.
This is done by installing the Samba file sharing software, followed by CUPS. The Common Unix Printing System provides drivers for your printer and provides an administration console.
3) Add AirPrint Support to Your Pi Print Server
The above project only takes things so far. Itโs ideal for printing from a Windows, Mac or Linux computer, but what about tablets and phones? For that, youโll need Air Print support, which can be added via a single script.
4) Cut the Cord With Kodi: A Raspberry Pi Media Center
Itโs likely that the main use for a Raspberry Pi is as a Kodi media center. Available as disk images, several Kodi builds have been released, with OSMC and OpenElec among the most popular.
5) Set Up a Retro Gaming Machine
Two main options are available for retro gaming, Recalbox and RetroPie. Others can be used, but all will need a suitable controller that will need some initial configuration. Many platforms can be emulated, from classic MS-DOS PC gaming to the Commodore 64. Many popular 16-bit games consoles can also be revived on the Raspberry Pi.
6) Build a Minecraft Game Server
Most effectively, your Pi makes an excellent game server for Minecraft, letting you play from anywhere on your home network. If you have multiple Raspberry Pis, having one as dedicated server will give you a great gaming experience. This works particularly well if you have plenty of Minecraft fans to play with.
7) Control a Robot
There are so many robot-controller Raspberry Pi projects that itโs difficult to settle on a single example. You might, for instance, rely on a dedicated robotics package for your Pi, with the device battery powered and used to communicate and control your robot.
@ Mr. BotNet(tm)
- - - - - UาNาDาEาRาCาOาDาEา- - - - -
โโโโโ-๐๐D๐๐๐ฎ๐D๐โโโโโโ
๐ฆHOW REMOVE ICLOUD FULL GUIDE BY UNDERCODE TESTED ON IOS 12.2
(T.me/UnderCodeRepoUpdates)
๐ฆLETS START:
1) Install Filza from Cydia or using cydia impactor from your computer
2) Install filzajailed ipa into your iphone
Go to general > device management >
3) acept the certificate
4) Open filzaescaped and go to : /var/mobile/library/accounts and
๐ฆDelete: Accounts3.sqlite, Accounts3.sqlite.shm, Accounts3.sqlite.wal
> Go to /var/mobile/library/ConfigurationProfiles and Delete :
> ClientTruth.plist and
> CloudConfigurationDetails.plist
In some devices, (ios12.2) you need to go UserConfigurationProfiles and delete all files inside this folder
5) Reboot
6) add new apple ID
7) You can now upgrade or reset your ios well done
โโโโโ-๐๐D๐๐๐ฎ๐D๐โโโโโโ-
๐ฆHOW REMOVE ICLOUD FULL GUIDE BY UNDERCODE TESTED ON IOS 12.2
(T.me/UnderCodeRepoUpdates)
๐ฆLETS START:
1) Install Filza from Cydia or using cydia impactor from your computer
2) Install filzajailed ipa into your iphone
Go to general > device management >
3) acept the certificate
4) Open filzaescaped and go to : /var/mobile/library/accounts and
๐ฆDelete: Accounts3.sqlite, Accounts3.sqlite.shm, Accounts3.sqlite.wal
> Go to /var/mobile/library/ConfigurationProfiles and Delete :
> ClientTruth.plist and
> CloudConfigurationDetails.plist
In some devices, (ios12.2) you need to go UserConfigurationProfiles and delete all files inside this folder
5) Reboot
6) add new apple ID
7) You can now upgrade or reset your ios well done
โโโโโ-๐๐D๐๐๐ฎ๐D๐โโโโโโ-