Server IP : 80.241.246.6 / Your IP : 216.73.216.129 Web Server : Apache/2.4.25 (Debian) System : Linux kharagauli 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64 User : www-data ( 33) PHP Version : 7.0.33-0+deb9u12 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/netcat-traditional/examples/data/ |
Upload File : |
# struct netinfo { # struct sockaddr rip_dst; /* destination net/host */ # int rip_metric; /* cost of route */ # }; # struct rip { # u_char rip_cmd; /* request/response */ # u_char rip_vers; /* protocol version # */ # u_char rip_res1[2]; /* pad to 32-bit boundary */ # union { # struct netinfo ru_nets[1]; /* variable length... */ # char ru_tracefile[1]; /* ditto ... */ # } ripun; #define rip_nets ripun.ru_nets #define rip_tracefile ripun.ru_tracefile #define RIPCMD_REQUEST 1 /* want info */ #define RIPCMD_RESPONSE 2 /* responding to request */ #define RIPCMD_TRACEON 3 /* turn tracing on */ #define RIPCMD_TRACEOFF 4 /* turn it off */ #define HOPCNT_INFINITY 16 /* per Xerox NS */ #define MAXPACKETSIZE 512 /* max broadcast size */ ### RIP packet redux ### UDP send FROM clued-rtr/520 to target/520 2 # RIPCMD_RESPONSE 1 # version 0 # padding 0 # sockaddr-plus-metric structs begin, as many as necessary... 0 # len 2 # AF_INET 0 # port 0 # addr bytes: X Y Z Q 0 # filler, out to 16 bytes [sizeof (sockaddr)] ... 0 0 0 0 0 0 0 0 # metric: net-order integer 0 0 1 ## that's it