Showing posts with label termux. Show all posts
Showing posts with label termux. Show all posts

Friday, October 27, 2023

what is free fire phishing and how you can avoid it ?.

 Hello friends in this blog we are going to know how hackers are able to hack your free fire account and taking control of it .


We are going to see real time example , 

First thing first , Clone a repo from github https://github.com/princekrvert/fphish

Installation commands are available on that page just copy and paste the  command.

go the the directory : cd fphish

run the script : bash fphish.sh

Now there are two template are available on the tool , choose according to your requirement.

Select the server ( localhost if want to test locally ) 

( Cloudflare for outside your network ) 

Now wait for target to click the link 

All the information will be displayed on the terminal 

Avoid it by clicking on any type of  malicious link .


Thanks 


Wednesday, October 11, 2023

How to send anonymous mail like a hacker.

 In this tutorial we are going to know how we can send anonymous mail from Termux or Kali-linux.

1. First of all we need to create a account on Sendinblue now this is know as Brevo.

2. Download the script from my github page : https://github.com/princekrvert/general/tree/main/sendinblue

3. Open this script in any code editor 

4. Paste your api keys

5. Edit the parameter according to your need.

6. now run the script.

Thanks ..

Friday, September 29, 2023

How to crack the hash on Termux

 The tool called Doval is can be use to crack the hash on the Termux . Doval is written in Golang so you should have installed Golang to use this. First we need to clone the repo 


git clone https://github.com/princekrvert/doval

cd doval 

go install 

this command will install all the require pkg for the tool to run 

go run main.go help or --help 

you can create a wordlist to crack the hash 

go run main.go <cmd> <hash> -w or --wordlist <path to the wordlist file>

or you can use hash.com to crack the hash online 

Wednesday, June 7, 2023

How to crack pdf password on android using termux.

 Using pdfcracker tool to crack the pdf password :

First install the Pdfcracker into the termux 

wget https://raw.githubusercontent.com/princekrvert/pdfcracker/main/pdfcracker.sh




Note : if you are in India and using Jio sim then this cmd will not work properly , in that case clone the whole repo and follow the process.

Now make a strong password list 
 
Run this cmd 

bash pdfcracker.sh <path to pdf file > < path to wordlist > 

Thanks for reading ..
Happy learning 

Thursday, May 18, 2023

what is cargo in rust ?, variable and comment. | Rust part 2

 Rust on android part 2 

Today we age going to know about what is cargo and how to generate a rust package using it.

cargo is a package manager in rust , we can check the version of the installed version of cargo using 
"cargo --version" 

To initialize a package using cargo run the command "cargo init  <packagename>"  
then a folder structure is created in current directory, go into that directory. we will see a file called Cargo.toml and a src folder, In src folder main.rs file is created with default "Hello World" program 
to run this run cargo run on your terminal.

Variable declaration in rust 

To declare a variable we use let keyword in rust , variables are immutable in rust by default. To make it mutable  we use mut keyword like this.

let my_name = "Prince Kumar"

let mut my_name = "Prince Kumar"

How to comment in rust ..

To make a comment in rust we use double forward slash (//)  
For multiline comment we use notation like this /* my comment here */

Thanks  

Friday, May 12, 2023

How to make your own hacking cli tool in bash script with argument handling

 To create a cli app with argument you have to add argv[]. to handle this args you should have some knowledge about bash scripting. 

But if you don't know about bash scripting and you are still trying to make your own cli tool , you are on the right place.

Requirement .

1. Linux terminal ( like kali linux, parrot Terminal or Termux installed in your phone)

2. Some basic of bash scripting 

3. Git install on your system 

We are going to clone a repo called puppy .

run the cmd 

git clone https://github.com/princekrvert/puppy 

go into the puppy directory 

cd puppy 

give them permission to execute 

chmod +x *

Now run the setup file 

./install.sh or bash install.sh 

Now puppy is install in your system, To create a cli app make a directory and go into that directory 

like 

mkdir testproject 

cd testporject 

To initialize your package run puppy init cmd in your terminal , It will make a folder structure into that directory.

To add a cmd to your app run the puppu add <and the name of your cmd > 

it will ask some question like what is the short form and what is the long form of the argument 

Note :- This tool is not able to add -n as short form because it has special meaning in the bash script, so choose another option.

you can add multiple cmd to your app 

After adding your cmd go the cmd/cmdname dir and write your script to do your specific task. 


 


what is free fire phishing and how you can avoid it ?.

 Hello friends in this blog we are going to know how hackers are able to hack your free fire account and taking control of it . We are going...