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 |
|
Looks like a DOS batch file to me; you would save it with a .bat extension.
|
|
Contributor
|
|
| 7Dec2008,23:26 | #3 |
|
Ye, u r right, i have saved it with bat extension
|
|
Invasive contributor
|
![]() |
| 8Dec2008,10:57 | #4 |
|
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: the next line is the message. Seems like a kind of DOS attack. |


