Skip to main content

5 Whatsapp Tricks/Hacks To make Life easy!!!

As of now more than 1 billion people use Whatsap,the app is definitely one of the most useful apps for messaging purposes,Following are some tricks you can use to make your Whatsapp life easy!!







1. Transfer files of any format upto 1 GB on Whatsapp. 

An App called WhatsTools sits quietly inside the 'attach' button in the chat window (after giving permission using the accessibility service) and allows file sharing of size upto 1GB. 
Normally, Whatsapp allows a maximum file size of 16MB. Using this tool you can bypass the restriction. You can also pause/resume the upload/download of files and preview video files before downloading. The files are shared through an HTTPS encrypted path and gets stored in your Google Drive account. 

2.  Create a WhatsApp Group with only you as a member. 

With the amount of time we spend daily on WhatsApp, it would be great if we get our reminders directly within the app. Now till as long WhatsApp decides to provide this feature, here's how to side load it.
Create a group with at least contact in your list. Then remove that contact from the group. Now there is just you left in the group. Rename the group to 'Reminders' and use it for posting tiny tidbits for you to remember.
You can also use it as a bookmarking tool, saving links to things you like on the internet to access them later. 


3. Hide one image onto another. 

All work and no play makes Jack a dull boy. Have some fun with your friends by hiding one image inside another. Your friend will see one photo on the thumbnail, but after opening it, the photo will be different.

Download and install the app called Image Preview Changer. In that app, open the image you want to hide and then click on the 'Preview Image' option and choose the image you want your friend to see first as the thumbnail. After this, select 'Share with WhatsApp' and you're done.

4. Read your messages with 'Last Seen' and 'Read' status unaltered. 

Suppose you want to avoid explaining why you haven't replied inspite of your 'last seen' timestamp and 'Read' status updated, you can use this trick.

"Dedicate a home screen to a 4x4 WhatsApp widget. All unread messages will appear there, not only the most recent unread message from each chat. Read through all of those messages through the widget and your 'last seen' and 'read' status will remain unchanged. 

5. Delete old WhatsApp Message Backups and clear space on your phone storage.

WhatsApp does a mandatory daily backup in the middle of the night at 02:00. These backups are stored as separate files in the storage memory of your device and with each new backup, containing the thumbnail of all the media received along with newer chats, the file size increases, sometimes to uncomfortable proportions.
To delete the older backup files, go to Internal Storage-> WhatsApp -> Databases.

Also, when you are switching phones, just copy the latest backup file over to the new device and all your chats will be there. 

Comments

Popular posts from this blog

SQL Injection ,Hacking PHP 4.4 sites in seconds

Today I am going to teach you how to hack a certain type of websites with very least efforts. Websites with PHP  4.4 have a SQL injection vulnerability in them which makes their Admin control panel easily accessible,and in just few steps you will access the admin's account of that website. Remember,this tutorial is applicable on PHP 4.4 machines with Apache running in parallel with them. Also,since I will be hacking REAL websites,I will not be displaying their URL’s or else I will be sued!!!. Also this tutorial is only for educational purpose. Here we go!!! Step 1 – Search for them Yep,make a Google dork to find sites running Apache and PHP 4.4 . Its quite easy.You can do this by searching inurl:adminlogin . Step 2 – Scan them Start by scanning them using Nmap ,Do and intense scan and find the open ports. If you find port 2000 open,then you have almost got it. most websites running PHP4.4 have this port for admin login. Now just login using port 2000 ie - ...

Software Testing through Fuzzing

Fuzz testing or fuzzing is a software testing technique used to discover coding errors and security loopholes in software, operating systems or networks by inputting massive amounts of random data, called fuzz, to the system in an attempt to make it crash . Fuzzing is  often automated or semi-automated, that  involves providing invalid, unexpected, or random data to the inputs of a computer program. The program is then monitored for exceptions such as crashes, or failing built-in code assertions or for finding potential memory leaks. Fuzzing technique is commonly used to test for security problems in software or computer systems ans also used to discover coding errors and security loopholes in software, operating systems  or networks by inputting massive amounts of random data, called fuzz, to the system  in an attempt to make it crash. If a vulnerability is found, a tool called a fuzz tester (or fuzzer), indicates potential causes. There are two forms ...

Bellmanford Algorithm C++ Program

The  Bellman–Ford algorithm  is an  algorithm  that computes  shortest paths  from a single source  vertex  to all of the other vertices in a  weighted digraph . It is slower than  Dijkstra's algorithm  for the same problem, but more versatile, as it is capable of handling graphs in which some of the edge weights are negative numbers. Here is the Source Code: #include<iostream> #include<stdio.h> using namespace std; #include<conio.h> #define INFINITY 999 struct node {     int cost;     int value;     int from; }a[5]; void addEdge(int am[][5],int src,int dest,int cost) {      am[src][dest] = cost;      return; } void bell(int am[][5]) {     int i, j, k, c = 0, temp;     a[0].cost = 0;     a[0].from = 0;     a[0].value = 0;     for (i = 1; i < 5; i++)     { ...