October 14, 2020

How to root any android device using Magisk manager


Rooting is a very common topic of Android. Rooting is a process where user can gain admin-level access aka root access in Android OS. With the help of root, User can do anything with his/her phone.


  • Advantages of Rooting -

1) Can remove bloatware

2) Can install incompatible apps

3) Can flash custom ROM and kernel

4) Ads blocking

5) Full control on device

6) Can overclock/underclock


Before some years ago, Android rooting was a very difficult process. But nowadays in latest phones,

Rooting process is become more easy. In this post, I am gonna demonstrate how to root your android

device using Magisk.


  • Features of Magisk -

1) Hide root access from certain apps like Banking apps.

2) User can unroot device at any time

3) User can install third party modules


So let's start the rooting process


  • What you need?

1) Device with unlocked bootloader

2) A custom recovery (TWRP, CWM, OrangeFox, etc.)

3) Magisk Manager App


*Note - To unlock bootloader, search on google for unlocking process for your device.*


  • Steps -


1) Download Magisk Manager from below link


    Magisk Manager - Download Here


2) Install Magisk Manager.



3) Open Magisk Manager and go to 'Magisk' section and select 'Install'.



4) Click on 'Next' (Put that options default)



5) Now select 'Download zip only' and click on 'Next'.



6) Magisk zip will start downloading.



7) After downloading zip, Reboot your device into recovery mode.

8) After entering into Recovery mode, click on 'Install'.

(Here I'm using OrangeFox recovery. You can use TWRP and many other custom recovery)



9) Browse downloaded Magisk zip (Magisk-XX.X.zip) and select 'Install Image'.



10) Now swipe to install Magisk zip.



11) After successful flashing, Reboot your device.



12) Congrats! Now your device is successfully rooted!



If you have any doubts, Leave a comment!


October 8, 2020

How to install GUI (Graphical User Interface) on Termux


Termux is the perfect application for Android users to learn Linux easily. Termux provides a command line interface (CLI) for executing Linux commands and more. However, if you want to use Termux in GUI mode, you need to install other operating systems such as Kali Nethunter, Parrot, and Ubuntu to perform the operation in GUI mode. To overcome this problem, there is a solution that installs the GUI on Termux without installing an additional operating system. Therefore, follow these installation steps -

  • Installation -

1) Open Termux and update packages

        $ apt update && apt upgrade


2) After updating packages, Install following packages

        $ apt install git python3

3) After this, run these command one by one

        $ git clone https://github.com/Deadpool2000/Termux-GUI.git


        $ cd Termux-GUI


        $ pip3 install -r requirements.txt


        $ python3 gui.py


 

4) Installation process will start. It will take 4-5 minutes

5) After successful installation, You need to download VNC Viewer to use GUI. Use below link to download VNC Viewer


        Download VNC ViewerClick Here



  • How to start Termux-GUI

1) First, Run following command on termux

        $ vncserver

2) Enter new password for vnc server

3) You will get IP Address like this –

        $ localhost:1 

Here, ‘1’ is a session number. Don’t forget this session number.


4) After above steps, type following command –

        $ DISPLAY=:1 startxfce4 &



Note that ‘1’ is a session number which I said to remember

 

5) Now open ‘VNC Viewer’ App



6) Add an IP Address. In our case, It is localhost:1 and add some name



7) Click on ‘Connect’


8) Now enter password which you used while vncserver setup (Step 2)


9) Succeed! Now you can use GUI on Termux


  • How to stop GUI

 

Open Termux and enter following command –

        $ vncserver -kill :<session_number>

        e.g. vncserver -kill :1



That’s it! If you have any problem regarding this, comment below!


October 7, 2020

How to install Metasploit in Windows 10



Metasploit is a Ruby-based widely used penetration testing tool for executing exploit against target machine.
If you want to use Metasploit,you need a linux machine or a virtual machine.So here is a method that you can install Metasploit
on your Windows computer.So follow these steps to install Metasploit -

Step 1 - Download Metasploit for Windows

Download Metasploit for Windows using this link - Download Here


Step 2 - Disable your Antivirus/WinDefender

This is mandatory step. If you miss this step,Metasploit will not run properly
because AV/WinDefender deletes some files of Metasploit. So Disable your AV/WinDefender
before installation.

Note - Do this at your own risk!


Step 3 - Install Metasploit

Now you can install Metasploit.It will take some time



Step 4 - Launch Metasploit

To launch Metasploit,you need to follow these steps -

1) Open Command Prompt (CMD)



2) Type 'msfconsole.bat'



Now you can use Metasploit on your Windows computer.


For more information, watch this Youtube video -



If you have any problem,leave a comment below.