Worklog (Windows 2000)

myline

Using 'net' to connect to remote resources

net use \\192.168.69.69\ipc$ * /u:mydomainname\username
           ^^^^                   ^^^^^^^^^^^  ^^^^^^^^
            IP                    domainname   username

Using 'whoami' to find who am I

whoami /all

using 'netcat' to grab banners

nc -vvv test.com 80
(don't forget to add two newlines...)
nc -vvv test.com 80 < head.txt
(don't forget to add two newlines in the head.txt file)

Enumerating ('net', 'nbtstat')

net view /domain
nbtstat -A 192.168.1.55

What are GOOD/NORMAL processes in Windows?

What processes may run on Win2000
What processes may run on WinXP

Few gvim options/tips

:set number                    <----- shows line number
:set nonumber                  <----- turns off showing line number

:set shiftwidth=3              <----- good while writing programs
command to use with this option
5>>    <--- add 3 spaces at the beginning of next 5 lines

:set tabstop=3                 <----- sets tab to add 3 spaces

:set ai                        <----- set autoindent

:ab ISS Internatinal Space St  <----- abreviation for "Internat...St" is ISS

:1,$s/.*/prefix & postfix      <----- 'prefix' is added at the beginning
                                      'postfix' is added at the end of every line

Gleaning info from port 111

rpcinfo -p target_IP

Uptime with hping

hping2 -S -p 80 -c 5 --tcp-timestamp IP

myline

this page is maintained by:
jchakma@yahoo.com

1