|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 25.78 GB of 70.42 GB (36.61%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,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,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
src/
courier-0.66.1/
rfc2045/
- drwxrwxrwx
|
Viewing file: rfc2045mkboundary.c (1.33 KB) -rw-rw-rw-Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
/* ** Copyright 1998 - 2011 Double Precision, Inc. See COPYING for ** distribution information. */
#if HAVE_CONFIG_H #include "rfc2045_config.h" #endif #include "rfc2045.h" #if HAVE_UNISTD_H #include <unistd.h> #endif #include <stdio.h> #include <stdlib.h> #include <time.h> #include "numlib/numlib.h"
#if HAS_GETHOSTNAME
#else
extern int gethostname(char *, size_t); #endif
extern void rfc2045_enomem();
char *rfc2045_mk_boundary(struct rfc2045 *s, struct rfc2045src *src) { char hostnamebuf[256]; pid_t mypid; char pidbuf[NUMBUFSIZE]; time_t mytime; char timebuf[NUMBUFSIZE]; static size_t cnt=0; char cntbuf[NUMBUFSIZE]; char *p; int rc;
hostnamebuf[sizeof(hostnamebuf)-1]=0; if (gethostname(hostnamebuf, sizeof(hostnamebuf)-1)) hostnamebuf[0]=0; mypid=getpid(); time(&mytime); libmail_str_pid_t(mypid, pidbuf); libmail_str_time_t(mytime, timebuf); for (;;) { char tempbuf[NUMBUFSIZE];
libmail_str_size_t(++cnt, tempbuf); sprintf(cntbuf, "%4s", tempbuf); for (p=cntbuf; *p == ' '; *p++ = '0') ; p=malloc(strlen(hostnamebuf)+strlen(pidbuf) +strlen(timebuf)+strlen(cntbuf)+11); if (!p) { rfc2045_enomem(); return (NULL); }
sprintf(p, "=_%s-%s-%s-%s", hostnamebuf, pidbuf, timebuf, cntbuf); if ((rc=rfc2045_try_boundary(s, src, p)) == 0) break; free(p); if (rc < 0) return (NULL); } return (p); }
|