Normal view

There are new articles available, click to refresh the page.
Before yesterdayMain stream

Termux Commands list 2022

15 February 2022 at 04:06

Termux is an Android terminal emulator and Linux environment Android app that works directly with root and without root. A Terminal base ...

Read more

The post Termux Commands list 2022 appeared first on HackNos.

Shellphish Install in Termux

1 September 2021 at 13:28

In this article, we are going to Install Shellphish in Termux, ShellPhish is a Phishing page-making tool, Using this Shellphish tool we ...

Read more

The post Shellphish Install in Termux appeared first on HackNos.

Hiddeneye Install in Termux

31 August 2021 at 04:55

In this article, We are going Hiddeneye Install in Termux, Hidden eye is the Most advanced tool For Phishing Pages, Hidden eye ...

Read more

The post Hiddeneye Install in Termux appeared first on HackNos.

How to use Nmap in termux

By: Basudev
21 December 2022 at 21:33

NMAP (Network Mapper) is a free and open-source network scanning tool widely used by network administrators and cybersecurity professionals to discover and map devices on a network. It can scan a range of IP addresses or a single host to identify the services and operating systems running on it. In this article, we will discuss how to install and use NMAP in Termux.

nmap in termux


Installing NMAP in Termux

1. Open Termux on your Android device and update the package repository by running the following command:

pkg update && pkg upgrade -y

2. Install the Nmap package by running the following command:

pkg install nmap 

3. To verify the installation, you can run the nmap command with the --version option

nmap --version 

nmap in termux


Using NMAP in Termux

NMAP provides a wide range of options for scanning networks and hosts. Here are a few examples of how to use NMAP in Termux:


Scanning a range of IP addresses

To scan a range of IP addresses, you can use the -sL option followed by the range of IP addresses you want to scan. For example, to scan the range 192.168.1.1-255, you can use the following command:

 nmap -sL 192.168.1.1-255

This will list all the IP addresses within the specified range.

Scanning a single host

To scan a single host, you can use the -sV option followed by the hostname or IP address of the host you want to scan. For example, to scan the host www.example.com, you can use the following command:

nmap -sV http://scanme.nmap.org/

This will scan the specified host and report the services and operating system running on it.

Scanning a range of ports

NMAP can also be used to scan a range of ports on a host. To do this, you can use the -p option followed by the range of ports you want to scan. For example, to scan the range of ports 1-1000 on the host www.example.com, you can use the following command:

 nmap -p 1-1000 www.example.com

This will scan the specified host and report the status of the ports within the specified range.


Performing an OS detection scan

NMAP can also be used to detect the operating system of a host. To do this, you can use the -O option followed by the hostname or IP address of the host you want to scan. For example, to detect the operating system of the host www.example.com, you can use the following command:

nmap -O www.example.com


This will scan the specified host and attempt to detect the operating system running on it.

Also Read:


Conclusion

In this article, we have discussed how to install and use NMAP in Termux. NMAP is a powerful and versatile tool that can be used to scan networks and hosts to identify the services and operating systems running on them. By following the steps outlined in this article, you can easily install and use NMAP in Termux on your Android device. We have a comprehensive nmap tutorial

How to install and use the Nano text editor in Termux.

By: Basudev
20 December 2022 at 22:09

GNU nano is a simple terminal-based text editor, used in command line to edit, create small text files, its similar to VIM but not that powerful and it can be good for making small changes in text files through the command line

nano in termux


Today in this post, you will learn how to install and use nano text editor in termux

Follow these steps to get started

1. Download and install Termux from Fdroid

2. Open Termux and type the below commands

apt update && apt upgrade

3. Now install the nano package by typing

pkg install nano 

4. After that you can check its version by typing

nano --version

Nano in termux


5. Now you are ready to use nano

Creating a file with nano

Type below command to create a new text file

nano test.txt

Nano editor


it will create a new file test.txt if not exists


Now write there and to save and exit the nano press CTRL + X and Y then hit enter

This is the way you can use nano in termux and edit files

How to Install Golang in Termux

By: Basudev
16 December 2022 at 21:13

Goland or Go language is a popular open-source programming language developed by Google engineers, and it is one of the faster languages, 

In this tutorial, you will learn how to install glang in Termux step by step.

Before we begin, ensure that you have Termux installed on your Android device. You can download it from Fdroid. You should have some basic knowledge of termux commands

golang in termux

To install Golang in Termux, follow these steps:

1. Open Termux and update the package repository by running the following command:

pkg update && pkg upgrade -y

2. Install the Golang package by running the following command:

pkg install golang

3. Once the installation is complete, verify that Golang is installed correctly by running the following command:

go version

go version


You should see the version number of Golang displayed in the output.


4. To set the environment variables required for Golang to work properly, run the following commands:

export GOPATH=$HOME/go

export PATH=$PATH:$GOPATH/bin

These commands will set the GOPATH variable to the go directory in your home directory and add the bin directory to the PATH variable.


5. You can now create a new Golang project by creating a directory for your project and running the following command:

go mod init <project name>

This will create a new Go module in the directory you specified.

6. You can start writing your Golang code in the project directory.

That's it! You have successfully installed Golang in Termux and can start building your applications.


Conclusion

Installing Golang in Termux is a simple and straightforward process. By following the steps outlined in this article, you can easily set up a development environment and start writing your Golang code on your Android device. Happy coding!

How to install and use Git in Termux

By: Basudev
15 December 2022 at 03:03

Git is a popular version control system that allows developers to track changes and collaborate on their code. This article will show you how to install Git in Termux So that you can use git on Android with a Linux-like terminal.

how to install git in termux


Before we begin, ensure that you have Termux installed on your Android device. 


To install Git in Termux, follow these steps:


1. Open Termux and update the package repository by running the following command:

pkg update && apk upgrade -y


2.  Install the Git package by running the following command:

pkg install git

3. Once the installation is complete, verify that Git is installed correctly by running the following command:

git --version

 

Git version

You should see the version number of Git displayed in the output.

4. To configure Git with your name and email address, run the following commands:

git config --global user.name "<Your Name>"

git config --global user.email "<Your Email>"


This will ensure that your commits are correctly attributed to you.

5. You can now create a new Git repository by running the following commands:

mkdir <repository name>

cd <repository name>

git init 

This will create a new directory for your repository and initialize it as a Git repository. 

6. You can add files to the repository and commit changes using the usual Git commands.

That's it! You have successfully installed Git in Termux and can now use it to manage your code repositories.


Conclusion

Installing Git in Termux is not that hard. You can configure your remote repository according to your git platform

How to install php in termux

By: Basudev
12 December 2022 at 22:07

 Php is a popular scripting language for web development; Php is easy to use and has a simple syntax. In this article, we will show you how to install PHP in termux

Install php in termux


To install PHP in termux, follow the below steps carefully

1. Install Termux from F-Droid

2. Type the Below command to update the termux packages

pkg update && apk upgrade -y

3.  type the below command to install PHP

pkg install php

4. After successful installation, you can check the PHP version by typing 

php --version

php version

5. Install nano, a text editor for terminal

pkg install nano

 6. Now Create a file test.php using nano and execute

nano test.php
Using nano

Save the file by CTRL +X , Then execute it,

php test.php
php output

You will see the output. 

hope you guys learnt how to install and use PHP in termux. Also, read termux commands

How to Install nodejs in termux

By: Basudev
11 December 2022 at 21:54

Node.js is a powerful JavaScript runtime built on Chrome's V8 JavaScript engine. It allows you to run JavaScript on the server side, which can be used to create many applications, from simple command-line tools to complex web applications. This blog post will show you how to install Node.js on your Android device using Termux.

NodeJs in termux

You can install nodejs and npm in termux and build javascript applications. You can install express js, build web applications, build telegram bots and so on.

Install node js termux

To install Node.js on Termux, follow these steps:

1. First, open the Termux app on your Android device and update the package manager with the following command:

pkg update && pkg upgrade -y

2. Type the below command to install nodejs

 pkg install nodejs

3. After successful installation, you confirm and can check its version by typing the below command

node -v
Nodejs

4. To run Node.js files/scripts, you can follow 

node script.js

where the script is the starting point of the app or a js file

npm will be automatically installed with node.js, you can use the node package manager by typing npm in termux 

How to install python in termux

By: Basudev
8 December 2022 at 21:33

In this tutorial, you will learn how to install python in termux and use python files on your android

What is Python?

Python is a programming language used to build software, websites, data analysis and so on. and it is one of the favourite programming languages for hackers.

python in termux

Install python on termux


Follow these steps to install python in termux. We will use nano to edit python files.

1. Download and install Termux from F-Droid

2. in termux type apt update && apt upgrade -y

3. Now type pkg install python

4. Then type pkg install nano

5. type python --version to check the version of python

install python in termux


How to run python in termux

Create a file with .py extension, then execute python file.py

we will use nano to create a file

in the termux type

nano test.py

then write in the editor

print("Hello World")

Nano



Now Save the file by CTRL + X or Volume down + X

Now Run the file by typing

python test.py

Run python



Now you will notice Hello World is printed.

How to use sqlmap in termux

By: Basudev
7 December 2022 at 21:40

Hello there, In this tutorial, we will be discussing how to install and use Sqlmap in termux

What is Sqlmap?

Sqlmap is an automatic SQL Injection scanner and exploitation tool written in Python. We use this tool to detect SQL injection vulnerabilities in websites and exploit

sqlmap in termux


how to use sqlmap in termux


Follow the below steps to use sqlmap in Termux.

After Installing Termux, You have to install the following packages, so type the commands in termux

apt update


then 

apt upgrade 

then 

pkg install python 

then 

pkg install git 


Now type the below command.



git clone https://github.com/sqlmapproject/sqlmap.git

After that, now type the below commands to use sqlmap

cd sqlmap
then

python sqlmap.py


sqlmap




to test your own website



python sqlmap.py -u "htttp://127.0.0.1/page.php?id=1" --batch


Disclaimer 

This tutorial is only for educational purposes. We are not responsible for any misuse

What is Chat GPT, The Viral AI Chatbot

By: Basudev
5 December 2022 at 21:58
ChatGPT is an AI-powered chatbot that can generate natural-sounding conversations in real-time. By leveraging advanced natural language processing and deep learning, ChatGPT is capable of understanding and responding to human input, allowing it to create engaging conversations with people.

The technology behind ChatGPT is based on the OpenAI GPT-3 model, which has been trained on massive amounts of text data to learn how to generate human-like conversation. This has allowed ChatGPT to become a powerful tool for businesses and developers alike.

In this article, we’ll be exploring how to get started with ChatGPT and how you can use it for your own projects.

Chat GPT


Getting Started


The first step in getting started with ChatGPT is signing up for an account. Simply go to their website https://chat.openai.com/ and fill out the registration form. Once your account is set up, you’ll be able to start creating conversations with ChatGPT.

Creating Conversations


Once you have an account set up, the next step is creating conversations with ChatGPT. To do this, simply type in a question or statement into the chat window and press enter. ChatGPT will then respond with a conversation based on your input. It’s important to note that ChatGPT is designed to converse like a human, so if you give it too much information at once or ask it complex questions it may take some time before it responds.

Using the API


In addition to the chat window, ChatGPT also provides an API that can be used by developers to integrate its capabilities into their own applications or services. The API allows developers to send input text to the chatbot and get back responses in real-time. This makes it easy for developers to create applications that can interact with users through natural language conversation.

Using Advanced Features


ChatGPT also offers several advanced features such as custom intents and entities that developers can use when creating conversations with the chatbot. Custom intents allow developers to define specific conversational goals they want their users to achieve while talking with the chatbot. Entities are words or phrases that are used by the chatbot when creating conversations and can help create more natural-sounding responses from the chatbot by allowing it recognize specific terms within a conversation.

Conclusion


ChatGPT is an incredibly powerful tool for businesses and developers alike that can be used for everything from customer support services to virtual assistants. By leveraging advanced natural language processing and deep learning, ChatGPT is capable of understanding and responding to human input in order to create engaging conversations with people. With its API integration capabilities, custom intents, entities, and more, there are endless possibilities when it comes to what you can do with this technology!

Disclaimer


This Article is Generated by Chat GPT, and is not recommended for Generating Content as AI generated content is against Google Webmaster Guidelines

Termux Commands List 2023

By: Basudev
2 December 2022 at 22:04

 


What are Termux Commands?

in simple words, Termux Commands are the terminal commands, which is executed to perform a particular task. These commands are similar to Linux Commands.

Termux Commands List :


Important Termux Commands
 
Command Purpose, Usage
termux-setup-storage Will setup the storage system
apt update will update the available packages
apt upgrade will upgrade the available packages
pkg install will install new packages, eg: pkg install php
pkg uninstall will uninstall packages, eg: pkg uninstall php
pkg list will show installed packages
pkg search will search packages, eg: pkg search php
pkg-list-installed will show the list of installed packages


Important System Level Commands
 
Command Purpose, Usage
uname -a Will Display the system information
whoami Will Display the current user information
history Will Display the list of perviously typed commands
clear Will clear the teminal
pwd Will print the present working directory
ls will list the directories, files in that directory
cd you can open a folder/directory using cd command, usage cd test
mv mv command is used to rename a file, folder, also used to move a file from one directory to another
cp cp is used to copy files from directory to another
rm will remove the file, folder, usage rm test.txt
touch will create a new file, touch test.txt
mkdir will create a new directories, usage mkdir test

Before we dive deep, let's start with some cool commands.
Let's Learn How To Use Cmatrix effects on Termux

For That Type Below Command

pkg install cmatrix
After that type

cmatrix

Ctmatrix effects will be displayed on termux

Another Cool Command is Sl
Type

pkg install sl

After that type sl
That's all a small Train will Start Running On Termux



Now let's see what the background running tasks through termux are
just type the below command

Top

Now let's find the factor of any number for that install below package by typing

pkg install coreutils

After that to find the factor of any number, then type the factor number
eg: factor 100



Let's play with text on termux
we can write text in different styles, firstly try with the figlet
Type

pkg install figlet

After that type figlet and type the text you want to write in the figlet style



For Colourful text, you have to install toilet package for that, type below command

pkg install toilet

After that type toilet "your text"
You can also try color combination eg
toilet -f mono12 -F gay "Your Text"




Calendar in termux, if you can't to see the calendar in termux then type

cal

To see the calendar
To see the time and date just type date in termux



Now let's talk about some helpful commands

apt update

This command used to update the termux built-in busybox and other packages

apt upgrade
This command is used to upgrade the packages to the latest

Accessing and managing files in termux


To manage and access files in termux then you must type below command

termux-setup-storage

To access a directory cd command is used
The termux default directory is located at /data/data/com.termux/
You can access it anytime by typing cd $home



ls Command is used to see the list of sub directories


To access your internal sdcard you have to type cd /sdcard && ls

To Access your External Sdcard the same command is used cd /sdcard0/ && ls

To Remove/delete an empty Directory or a file, use this command: rm -rf filename
Where filename belongs to the name of the file or directory
Similarly, you can use rm -r filename

To Make a Directory mkdir Command is used
Eg: mkdir Hello
Where Hello Belongs to a Directory Name

For Copying files from one directory to another, cp Command is used
eg: cp /path/file /path
Similarly for moving files mv Command is used

Termux also Supports zipping and Unzipping of Zip files
For that zip , unzip Commands are used



Let's talk about Networking
ifconfig Command is used to get all the information regarding your Network IP Address
To check a particular website is accessible or not in your ISP then you can check that through termux by typing

ping website
Eg: ping google.com

The Interesting thing is you can access the internet through termux, directly in the command line

Firstly you have to install the w3m package by typing

pkg install w3m
After that, type the below command to access any website

w3m website
eg: w3m google.com
Lynx is similar to w3m
To install lynx, type pkg install lynx
After that, type lynx google.com

How to use L3mon Rat [Tutorial]

By: Basudev
15 September 2022 at 22:09

Hello guys. In this tutorial, we will be discussing how to use the L3MON Rat. If you are entirely new to this RAT, then follow this tutorial carefully so that you should not face any issues while using the L3MON Rat.

L3MON


Before getting into the tutorial, here are a few things you have to know

What is L3MON?

L3MON vs Xploitspy?

Why not XploitSpy?

L3MON mod by Techncyber


What is L3MON?

L3MON is a cloud based remote android management suite, powered by NodeJS, and its features

  • GPS Logging
  • Microphone Recording
  • View Contacts
  • SMS Logs
  • Send SMS
  • Call Logs
  • View Installed Apps
  • View Stub Permissions
  • Live Clipboard Logging
  • Live Notification Logging
  • View WiFi Networks (logs previously seen)
  • File Explorer & Downloader
  • Command Queuing
  • Built In APK Builder

L3MON vs Xploitspy

L3mon can only be used on the local machine every time you have to start the server on your local machine. Also, you have to use ngrok or similar port forwarding solutions to attack devices outside of your network,

Where Xploitspy is the Copy of L3mon, it can be used on your local machine and any cloud hosting solution. Thus, you don't have to start your local machine each time.

What's Wrong with L3mon and Xploitspy?


Due to the breaking changes and dependency vulnerabilities, you may face many issues regarding the Javascript ejs error. Also, the Xploitspy has been backdoored and steals the username and passwords, even after changing the password.

L3mon Mod by Techncyber


While we tried to contribute to the l3mon project, it's archived. That's why we modded it for personal use, 
In this mod, we removed the Built-in APK Builder. Instead, we have given the client project so that you can plug into the android studio or edit the apk using any apk editor tool.

Also, all the EJS errors are fixed in this mod. The exciting thing is you can use this tool in any distro without any issues.

You can use it with your local machine or deploy it to any cloud hosting service.  

Install L3mon-mod in Kali Linux, Windows, Termux


The procedure is the same for all operating systems. You can use this l3mon-mod tool in any operating system. All you need is nodejs installed in your system.

Installing in Windows


First, download Nodejs on your system.

Then git clone or Download the repo. 

https://github.com/Basudev1/L3MON-MOD

And we need to install the node modules. For that, go to the L3MON-MOD folder and type below the command.

npm install


It will take a few minutes to install the required node modules. After that, type the below command to start the server.

npm start

.

or


node index.js


Now your server is ready, open http://127.0.0.1 in your browser, and you will see the login panel of L3MON.


The default username and password is


username: admin

password: password


Installing L3mon-mod on Kali Linux 


L3mon-mod can be used in Kali Linux without any issue,

You need git, nodejs

Type the below commands to get started

Install git if not installed

sudo apt install git


Install nodejs if not installed

sudo apt install nodejs 


Now clone the repo


git clone https://github.com/Basudev1/L3MON-MOD.git 


After that got the repo


cd L3MON-MOD

Now install node modules.

npm install


now start the server by typing

npm start 

or

node index.js 


Now open http://127.0.0.1 in your browser, and you will see the login interface. 

Installing L3MON-MOD in Termux

Most of you guys ask for termux spy tools, here is one for you, to use this l3mon-mod 

You need Git, Nodejs

Install git if not installed

pkg install git 


Install nodejs

pkg install nodejs 

Now clone the repo

git clone https://github.com/Basudev1/L3MON-MOD.git 

, then go to the L3MON-MOD directory, then node index.js


cd    L3MON-MOD

then 

 node index.js


Now open http://127.0.0.1 in any browser, and you will see the login panel. 


Setting up the Client part.


Now your server is ready, we need the client for our android, I have given you two ways to use it, either you can plug into the android studio, or you can use any apk editor tool to modify the apk

Use this repo


All you have to do is search and replace the URL http://192.168.x.x

Note that you have to replace the URL with your machine's IP. You can quickly get it by typing the below command on the Terminal. 

ifconfig 
Look for the inet, starting with 192.x.x.x

On Windows, you can type 

ipconfig

The URL does not require the port.

Now Compile the APK, and Install it on your victim's Phone. You will see the device in your panel.

Conclusion

This tutorial is only for educational purposes, and we are not responsible for your actions. If you face any issues, then feel free to ask your questions.

Secure Phone and Hack Phone Android Intensive

By: seo_spec
7 January 2023 at 14:57
Download now!

“SECURE PHONE”

  • Let’s create a phone using ANDROID OS as an example
  • With protection against network traffic interception;
  • With notification about substitution of the base station (BS);
  • By choosing open source firmware or removing built-in backdoors (yes, yes, they’re present in almost every firmware!);
  • By encrypting it and making it resistant to forensics;
  • Discuss backup and recovery methods, as well as encryption for secure storage;
  • Talking about antiviruses for Android: are they useful and which one to choose?
  • We will highlight services of automatic caller’s number detection, as well as services of automatic call recording of GSM standard and messengers;
  • Figuring out the safest messengers of the 3 dominant types (federated, centralized, and p2p);
  • Protecting sim cards, types of root and frameworks to change OS function on the fly;
  • Using VPN for smartphone;
  • Protecting the phone’s DNS from spoofing;
  • Using firewalls for Android;
  • By protecting your smartphone from being tapped by third-party applications;
  • Safely deleting files, with a clear understanding of why you can’t give your phone to repair or sell it without first scrubbing it.

“HACK PHONE”

  • Phone as a pentester tool that is always on hand
  • Phone as a bootable flash drive for hacking and administering Windows;
  • Phone as a BAD UASB tool to deliver a payload;
  • Net Hunter and its installation types, directly on the phone, or as an element of Smartphone firmware;

Testing router security via Smartphone;

Setting up and optimizing Termux to work with root rights and pentester frameworks for “underhand” testing

❌
❌