tcp tuning tcp_syncookies

tcp_syncookies. Send out syncookies when the syn backlog queue of a socket overflows. This is to prevent against the common “syn flood attack”. Disabled (0) by default. :–:cat /proc/sys/net/ipv4/tcp_syncookies 0 :–: added from linux kernel source. /* 160 * Generate a syncookie. mssp points to the mss, which is returned 161 * rounded down to …

generating random passwords.

makepass.py from random import choice import string def GenPasswd(length=8, chars=string.letters+string.digits): return ”.join([ choice(chars) for i in range(length) ]) ahiliation:~$python Python 2.5.5 (r255:77872, Mar 20 2010, 05:19:32) [GCC 4.4.3] on linux2 Type “help”, “copyright”, “credits” or “license” for more information. >>> import makepass >>> for i in range(6): … print makepass.GenPasswd(12) … BSxqLK9mpq4R FRlppP7K2Che YBkz0QZMJojC JjTQlcHzDsC3 …

getservbyname programming

The getservbyname() function returns a servent structure for the entry from the database that matches the service name using protocol proto. If proto is NULL, any protocol will be matched. A connection is opened to the database if necessary. getservbyname(“ftp”, “tcp”) = 0x7fcc5248b8c0 The servent structure is defined in as follows: struct servent { char …

__fpending programming

The __fpending() function returns the number of bytes in the output buffer. For wide-oriented streams the unit is wide characters. This function is undefined on buffers in reading mode, or opened read-only. On POSIX-compliant platforms, SIGSEGV is the signal sent to a process when it makes an invalid memory reference, or segmentation fault. #include<stdio.h> #include<stdio_ext.h> …