Name of language

Contributor
7Dec2008,21:36   #1
Carlos's Avatar
Hello! can anyone tell me the name of this language??
It's quite different from high-level language.

TEST code:

@echo off
:A
echo Messenger
set /p n=User/IP:
set /p M=Message:
net send %n% %m%
pause
goto A
Mentor
7Dec2008,23:20   #2
xpi0t0s's Avatar
Looks like a DOS batch file to me; you would save it with a .bat extension.
Contributor
7Dec2008,23:26   #3
Carlos's Avatar
Ye, u r right, i have saved it with bat extension
Invasive contributor
8Dec2008,10:57   #4
neo_vi's Avatar
yes this is exactly a batch file. It sends message using net send command. It also has a infinite loop.
Code:
set /p n=User/IP:
this line is the victim's IP
the next line is the message.
Seems like a kind of DOS attack.