jituTechnology

jituTechnology

Google Database Hacking for Footholds

Using the below Google hacking tips hacker can access the different activity of the site. By using these Google queries attackers dig out the core log files containing important documents of the site through which hackers or attackers penetrate in the site and thus the site is hacked. This is called Google dorks; you can […]

read more

Google Database Hacking for Sensitive Online Shoping Info

[showmyads]Here are some of the Google queries which can dig online shopping information like. Customer data, suppliers, orders, credit card numbers, credit card information and many more. This Google Hacking Database for Sensitive Online Shopping info is used by the hackers to extract the online shopping information. This can lead to exploit the online shopping […]

read more

A program to merge two given string using pointer.

A program to merge two given string using pointer. Codes /*A program to merge two given string using pointer*/ /*Programed by          Jitendra Kr Yadav                         10116                         2Apr,2011*/ #include<string.h> #include<stdio.h> #include<conio.h> void merge(char*,char*); main() { char str_1[20],str_2[20]; printf(“Enter the first string: “); gets(str_1); printf(“Enter the second string: “); gets(str_2); merge(&str_1[0],&str_2[0]); printf(“The merged string is: %s.”,str_1); […]

read more

A program to find the length of given string using pointer and function.

A program to find the length of given string using pointer and function. Codes /*A program to find the length of given string using pointer and function*/ /*Programed by          Jitendra Kr Yadav                         10116                         2Apr,2011*/ #include<stdio.h> #include<conio.h> main() { char string[20]; int count=0; char *ptr; printf(“Enter the string: “); gets(string); for(ptr=&string[0];*ptr!=’\0′;ptr++) if(*ptr!=’ ‘) count+=1; […]

read more

A program to sort the elements of an array using pointer and function.

A program to sort the elements of an array using pointer and function. Codes /*A program to sort the elements of an array using pointer and function*/ /*Programed by          Jitendra Kr Yadav                         10116                         2Apr,2011*/ #include<stdio.h> #include<conio.h> void sort(int, int*); main() { intn,i,a[20]; printf(“Enter the no of input to be taken:”); scanf(“%d”,&n); printf(“Enter the […]

read more