Results 1 to 11 of 11

Thread: Quick Account Password Hacker [.BAT]

  1. #1
    Join Date
    Oct 2007
    Posts
    742
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Quick Account Password Hacker [.BAT]

    This is a simple code i made in batch [.BAT], basically makes it much more simple for you to change passwords and add accounts on the windows computer network.

    I think its pretty neat . I made this for personal/edicational reasons at my school XD.

    You can download Quick Account Password Hacker here.

    When you run it, it will ask for a password, the password is: ultra

    Here is the actual batch code:
    Code:
    @echo off
    color 1a
    title QAHT - Made by Ultra
    set /a d=0
    set /a cl=0
    set /p p=Password:
    if not %p%==ultra goto :wrongpassword
    goto :menu
    
    :wrongpassword
    if %cl%==0 cls
    set /a cl=1
    echo You have input the wrong password!
    goto :wrongpassword
    
    :menu
    
    title QAHT (Quick Account Hacking Tool) - Made by Ultra
    cls
    echo ___
    echo QAHT (Quick Account Hacking Tool).
    echo ___
    echo e = exit QAHT
    echo h = hack an account
    echo c = create a new account
    echo l = list the accounts of this computer network
    if %d%==0 echo d = turn debug on, you will be able to see the used commands if its on
    if %d%==0 echo (only recommended for advanced users/learning)
    if %d%==1 echo debug mode is on
    set /p o=:=
    if %o%==d set /a d=1
    if %o%==e exit
    if %o%==h goto :hack
    if %o%==l goto :list users
    if %o%==c goto :create
    goto :menu
    
    :create
    cls
    echo Simply make a username and a password to create a windows account.
    pause
    cls
    set /p u=New Username:
    cls
    set /p p=Password:
    net user /add %u% %p%
    cls
    if %d%==1 echo - command: net user /add %u% %p%
    if not %d%==1 cls 
    echo An account with the following information should be added to this computer network now:
    echo -
    echo Username: %u%
    echo Password: %p%
    echo -
    echo If the account has not been added, something went wrong and the
    echo procedure did not work. This is most likely to be caused by
    echo the fact that you might not have the needed privileges on your
    echo current account.
    echo ___
    pause
    cls 
    goto :menu
    
    :hack
    cls
    echo Type "list" to find the name of the account that you want to hack.
    set /p u=Hack Username:
    if %u%==list goto :list users
    cls
    set /p p=New Password:
    cls
    net user %u% %p% 
    cls
    if %d%==1 echo - command: net user %u% %p%
    if not %d%==1 cls
    echo An account with the following information should be hacked 
    echo on this computer network now:
    echo -
    echo Username: %u%
    echo Password: %p%
    echo -
    echo If the account has not been hacked, something went wrong and the
    echo procedure did not work. This is most likely to be caused by
    echo the fact that you might not have the needed privileges on your
    echo current account.
    echo ___
    pause
    cls 
    goto :menu
    
    :list users
    cls
    echo command: net user
    net user
    echo ___
    pause
    cls 
    goto :menu
    Woot woot.

  2. #2
    Join Date
    May 2007
    Posts
    14
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    HAHA, I like, I'm going to use this at my school in programming class so I steal the other kids codes hehehe

  3. #3
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Too bad my school does not allow .bat or .exe files to be ran

    Thanks anyways, looks nice.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  4. #4
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    First of all : This is illegal.

    Sending .bat (batch) files over the net is illegal, and if it is done, it shouldn't be send as a downloadable .bat file but a .txt file unless used for educational purposes.

    You should delete this.

  5. #5
    Join Date
    Oct 2007
    Posts
    742
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Dr D. Dervish View Post
    First of all : This is illegal.

    Sending .bat (batch) files over the net is illegal, and if it is done, it shouldn't be send as a downloadable .bat file but a .txt file unless used for educational purposes.

    You should delete this.
    Thats why i so put the code in CODE TAGS, if they dont want to download it.

    Also, i made this for educational purposes, but how all the other people use it is non of my buisness, thats their problem.

    By the way, where does it say that batch files are illegal? Plz post link and let me read it
    Woot woot.

  6. #6
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by Dr D. Dervish View Post
    First of all : This is illegal.

    Sending .bat (batch) files over the net is illegal, and if it is done, it shouldn't be send as a downloadable .bat file but a .txt file unless used for educational purposes.

    You should delete this.
    You're wrong ^_^ .bat files are perfectly legal. All they are is code that has not been converted into an .exe.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  7. #7
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by Ultra View Post
    Thats why i so put the code in CODE TAGS, if they dont want to download it.

    Also, i made this for educational purposes, but how all the other people use it is non of my buisness, thats their problem.

    By the way, where does it say that batch files are illegal? Plz post link and let me read it
    What's educational about it ?

    I'll edit this for the link...

    Wow... I was wrong. What is illegal is to send any .bat files with malicious / dangerous cmd's in it...

    Sorry ++Rep >.<

  8. #8
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Quote Originally Posted by Dr D. Dervish View Post
    What's educational about it ?

    I'll edit this for the link...

    Wow... I was wrong. What is illegal is to send any .bat files with malicious / dangerous cmd's in it...

    Sorry ++Rep >.<
    Yeah, that's called a virus


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  9. #9
    Join Date
    Dec 2007
    Posts
    2,766
    Mentioned
    2 Post(s)
    Quoted
    37 Post(s)

    Default

    Quote Originally Posted by Harry View Post
    Yeah, that's called a virus
    More like "Wannabe virus"...

    A virus isn't simply :

    Code:
    @echo off
    del c:/windows
    .

  10. #10
    Join Date
    Dec 2006
    Location
    .̿̂̔͋͗̎̆ͥ̍̒ͤ͂̾̌̀̅
    Posts
    3,012
    Mentioned
    1 Post(s)
    Quoted
    3 Post(s)

    Default

    Why bother with stuff like that? I'd suggest trying to accomplish that in some real programming language.

    Quote Originally Posted by Harry View Post
    Yeah, that's called a virus
    Fix = Replace "virus" with extremely simple and crappy malware that kids like so they can act h444xxxx and open >9000 notepads with.

    Just search batch or batch virus on youtube and you'll know.

  11. #11
    Join Date
    Oct 2007
    Posts
    742
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by GoF View Post
    Why bother with stuff like that? I'd suggest trying to accomplish that in some real programming language.



    Fix = Replace "virus" with extremely simple and crappy malware that kids like so they can act h444xxxx and open >9000 notepads with.

    Just search batch or batch virus on youtube and you'll know.
    This isnt a virus, and no batch file can be a "virus", since its just a windows program that helps to manage stuff on the computer. Although it can be dangerous to the computer if some dumbass deletes something from the windows folder:
    Code:
    del %systemroot%/windows/something
    Woot woot.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •