Skip to main content

NGrok : How to Install NGrok in Termux-Android

Install NGrok on Termux

NOTE: This article is only for an Educational purpose. Any actions or activities related to the material contained on this Website is solely your responsibility.  Misuse of the information in this website can result in criminal charges brought against the persons in question. The Authors and www.androidUNKNOWN.blogspot.com will not be held responsible in the event any criminal charges be brought against any individuals misusing the information in this website to break the law.

Requirements:

  • Termux from play store.
  • Mobile data / wifi connection.

Now ;

1. Access this website : https://ngrok.com

2. Then sign up for a Gmail or GitHub account.


3. Then click [Download for linux (ARM)] to download the ngrok file and it will appear on your dashboard.


4. Now open termux and use the following command to move the ngrok zip file from the sdcard to your termux home folder.

  • This command helps to go to the Android download directory : ' cd /sdcard/Download'
  • This command will help move the ngrok files to your termux home folder : ' mv ngrok $HOME'

5. After that, unzip the ngrok zip file and give it permission to do it using the following command :

  • unzip /path/to/ngrok.zip
  • chmod +x ngrok

6. Then you need to use the command to connect your account to the ngrok database using the authtoken.

  • ./ngrok authtoken yourauthtoken

7. You are now ready to use ngrok for port forwarding. You can get help using this command:

  • ./ngrok help

8. You can get help by reading the ngrok documentation using the following URL: https://ngrok.com/docs


9. You can use the following command to forward http requests on port 8080 or the desired port.

  • ./ngrok http 8080

10. Tcp network using the following command :

  • ./ngrok tcp 4444

(Or any other required port)

#Don't forget to open the hotspot before using ngrok. Otherwise, the connection is not enabled!

3NJOY😄

Comments

Popular posts from this blog

Figure It out : How Running Game with (Termux+Ubuntu+box86)

This is a general overview of how he did it NOTE:   This article is only for an Educational purpose. Any actions or activities related to the material contained on this Website is solely your responsibility.  Misuse of the information in this website can result in criminal charges brought against the persons in question. The Authors and  www.androidUNKNOWN.blogspot.com  will not be held responsible in the event any criminal charges be brought against any individuals misusing the information in this website to break the law. * Requirements: Install Termux  . Internet / wifi connection. * This is a general overview of how he did it.   With the Termux (terminal emulator for Android) you can't run x86 applications (including almost all games) because it's Linux for ARM processors that allows your phone to run full-fledged Linux.  * The  box86  is a translation layer that allows you to run ARM Linux x86 based applications, but it must be 32-bit , not 64-bit (I tried the 64-bit vers

How to install Ubuntu on Qemu in Termux?

Install Ubuntu on Qemu in Termux NOTE: This article is only for an Educational purpose. Any actions or activities related to the material contained on this Website is solely your responsibility.  Misuse of the information in this website can result in criminal charges brought against the persons in question. The Authors and www.androidUNKNOWN.blogspot.com will not be held responsible in the event any criminal charges be brought against any individuals misusing the information in this website to break the law. * The installation procedure is the same as installing Ubuntu on a typical computer. The only difference here is that the hardware is emulated. * Requirements: Packages: qemu-utils qemu-system-x86-64-headless (you can use a non-headless variant from x11-repo) Ubuntu iso file. Device with good amount of RAM, >= 4 GB. Enough storage space. VNC Viewer (if headless) * Create an hdd image : '  qemu-img create -f qcow2 hdd.img 8G ' *  Boot QEMU system : ' qemu-system-x86

Xerxes: Several Screenshot's Showing the Installation and use powerful DOS tool in termux-android.

  Install  and use Xerxes in termux NOTE:   This article is only for an Educational purpose. Any actions or activities related to the material contained on this Website is solely your responsibility.  Misuse of the information in this website can result in criminal charges brought against the persons in question. The  Authors  and  www.androidUNKNOWN.blogspot.com  will not be held responsible in the event any criminal charges be brought against any individuals misusing the information in this website to break the law. Requirements: Termux from play store. Mobile data / wifi connection. Before getting started with installation make sure that clang is installed in termux which can be done by typing ' pkg install clang '.  Open termux and type ' git clone https://github.com/XCHADXFAQ77X/XERXES '. Now type ' cd xerxes ' to enter the cloned directory and the type ' ls ' to view files. Now to complie it with GNU GCC complier type ' gcc xerxes.c -o xerxes &