Posts

Showing posts from May, 2019

Tool-x in termux

Image
After we discussed how to install termux and setup our environment (apt update, apt upgrade) now it is time to use it for penetration testing. The termux app is a Linux emulater, can be used almost the same way as any Linux distribution even like the famous one kali linux. How to transform termux into pentest tool without root?  We need to understand that termux is not made especially for hacking  but we can use it to install hacking optemised tool for it or even to install the famous kali nethunter all thus with just a simple way using  Txtool.  Before we download Txtool on termux let's first understand why we should download it.  We said that we can use termux for different purposes depend on your need, (C programming, C++ programming, python programming,network scanning, web scanning, exploring exploit in different os... ),all this based on the tools that you download so all what you have to do is to look on the internet for needed tool then download it ...

Linux command you need to know

Image
Some Linux command that you can use it in termux emulater this command can be used for every Linux distribution. cd command Cd [directory name] use this command to move from local directory to next/previous directory For examples : if you are in a directory called "local _directory" contain  other directories one of them named "next_directory", to move from "local_directory " to " next_directory" just type : cd next_directory then hit enter, if next_directory contain an other directory jus type cd directory_name , in case you want to return to previous folder in this case you don't have to know the name of the file just type cd ..  (cd space then 2 point) then hit enter. Linux command are very sensitive when it came to the syntaxe, you must be careful in spelling of every letter you write and specially big and small one for example "Cd" is not the same as "cd" and not the same as "CD", otherwise you will have e...