Name of language

Discussion in 'Programming' started by Carlos, Dec 7, 2008.

  1. Carlos

    Carlos New Member

    Joined:
    Dec 5, 2008
    Messages:
    57
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    none
    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
     
  2. xpi0t0s

    xpi0t0s Mentor

    Joined:
    Aug 6, 2004
    Messages:
    3,009
    Likes Received:
    203
    Trophy Points:
    63
    Occupation:
    Senior Support Engineer
    Location:
    England
    Looks like a DOS batch file to me; you would save it with a .bat extension.
     
  3. Carlos

    Carlos New Member

    Joined:
    Dec 5, 2008
    Messages:
    57
    Likes Received:
    0
    Trophy Points:
    0
    Occupation:
    none
    Ye, u r right, i have saved it with bat extension
     
  4. neo_vi

    neo_vi Member

    Joined:
    Feb 1, 2008
    Messages:
    720
    Likes Received:
    16
    Trophy Points:
    18
    Occupation:
    Software engineer
    Location:
    Earth
    Home Page:
    http://computertipaday.blogspot.com
    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.
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice