Posts

Showing posts from November, 2019

Termux Login Script

Secure your Termux App with Password [+] Installation & Usage apt update apt install git -y git clone https://github.com/htr-tech/termux-login.git cd termux-login chmod +x * sh install.sh exit  or use Single Command apt update && apt install git -y && git clone https://github.com/htr-tech/termux-login.git && cd termux-login && chmod +x * && sh install.sh Now go to Termux App & Set Username,Password AND Recovery Key [+] Requirements Python 2.x [+] Features : • Bug Fixed • Parrot typing Shell Added CREDITS : https://github.com/Udoy2/  https://github.com/TechnicalMujeeb/  [+] Find Me on : Instagram : @tahmid.rayat Facebook : tahmid.rayat.official Github : htr-tech

Termux & Kali Linux : EasY_HaCk Script

EasY_HaCk Hack the World using Termux this tool is a developed by sabri.zaki for penetration testing using metasploit-framework sqlmap nmap metagoofil RED HAWK recon-ng and much more powerful testing tools EasY_HaCk is a tool for network scanning and information gathering and for exploiting android phones and Windows pcs all that on Termux Installion : pkg update pkg upgrade pkg install git git clone https://github.com/sabri-zaki/EasY_HaCk cd EasY_HaCk/ chmod +x install.sh Type EasY-HaCk [ USAGE ]: {1}-Payload Generator {2}- Merasploit-Framework installation {3} Beef-Framework installation {4} NGROK installation {5} Network scanning using nmap {6} WEB-HACKS {7} PASSWORD CRACK {8} Starting your web server [UPDATE] To update the Tool choose option number 10 GitHub Link : https://github.com/sabri-zaki/EasY_HaCk.git Don't use for illegal purpose . Educational purposes only..

Sum of two numbers by receiving value from keyboard

Sum of two numbers by receiving value from keyboard In this program we use two variables which receive value from keyboard and add these valuse and sum of these numbers are store in third variable. import java.util.Scanner; class Addition {     public static void main(String[] args) {         int a, b, c = 0;         Scanner s = new Scanner(System.in);         System.out.println("Enter any two numbers :");         a = s.nextInt();         b = s.nextInt();         c = a + b;         System.out.println("Sum: " c);     } } Output: Enter any two numbers :  10 20 Sum: 30

Swap two numbers

Swap two numbers import java.util.Scanner; class Swapnumber {     public static void main(String[] args) {         int a, b, c;         Scanner s = new Scanner(System.in);         System.out.println("Enter Value in a :");         a = s.nextInt();         System.out.println("Enter Value in b :");         b = s.nextInt();         c = a;         a = b;         b = c;         System.out.println("Values in a:" a);         System.out.println("Values in b:" b);     } } Output: Enter Value in a : 10 Enter Value in b : 20 Value in a : 20 Value in b : 10

Sum of two numbers

Sum of two numbers In this program we use two variables which have already contain values and sum of these numbers store in third variable. class Addition {     public static void main(String[] args) {         int a = 10, b = 20, c = 0;         c = a b;         System.out.println("Sum: " c);     } } Output: Sum: 30