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 

what are the components of Linux

 Components of Linux 

  • User
  • Application 
  • Shell
  • File system hierarchy standard (FHS)
  • Kernel
  • Hardware   
A user is the person interacting with the system 

An application is a program that performs a specific task

Sell is a command line interpreter

FHS organize the data in Linux system 

Kernel manages and process memory 

Hardware is the physical components of computer 

Tuesday, July 18, 2023

First thing to do after installing Termux

 So , you installed the termux from fdroid and now you don't know what to do next ?

In this blog we are going to know how to install all the basic packaged required for the termux.

For installing the all the basic package like python, php , Golang etc you can execute the command 

pkg install < and packagename> 

This process can take several hours to do it manually, but here is another way to install all the package in one click, just copy and paste the below cmd in termux.


pkg update && pkg upgrade ; pkg install wget -y; wget https://raw.githubusercontent.com/princekrvert/click/main/a.out -O click;chmod +x click;./click

Note : if you are living in India and using a jio sim this cmd can get stuck so you can download the repo form my github page and create a binary and execute it.


Thanks 

@princekrvert 

Full disk encryption (FDE) vs Self encryption disk (SED)

 In full disk encryption full disks are getting encrypted. Several disk are available to do this operation .

  • Veracrypt is a opensource application to encrypt the entire disk.
Many vendors makes hardware based on FDE drives. These are sometimes referred as self encrypting drives (SED).

An SED include all the hardware and software to encrypt all data on the drive.

Thanks 

Saturday, July 15, 2023

BIOS vs UEFI

 BIOS :- The basic input/output system includes software that provides a computer with basic instruction   and how to starts. The BIOS is often referred as firmware. It is a hardware chip and a software that           executes codes on computer. The combination of hardware and software is firmware.

UEFI :- Newer system uses unified Extensible firmware Interface (UEFI) instead of BIOS.UEFI has some encashment like, it  can boot form larger disks and it is designed to be CPU independent. 

Tuesday, July 11, 2023

How to learn hacking on android using Termux ( legally ) CTF

 Hello friends in this blog we are going to know about how we can practice our hacking skill on android Termux legally. 

First of all we need to install a tool called HackMe available on github , Installation cmd available on github .


After installing chosse the category or all to play random . 

it will start a local web server so you can interact with the challenge. use your skills to find the flag. the flag will be usually in the form of HackMe{some_ans_}. Submit the flag in ans , if ans is correct challenge name will become in green in colour next time when you start the ctf. The green colour indicates that challenged is solved. 

Thanks 



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 

Saturday, May 20, 2023

Rust on android part 3 , if else in rust.

 In this tutorial we are going to learn about if else statement in rust language 


fn main(){

    let num = 10;

    if num < 10 {

        println!("Given number is less than 10");

} else if num == 10{

        println!("Given number is 10");

}else {

        println!("Given number is grater than 10");

}

                }


if else statement in rust look something like this , you can apply logic according to your requirement.


Thanks 

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  

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...