!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/var/www/manual/mod/mod_python/   drwxr-xr-x
Free 5.94 GB of 27.03 GB (21.98%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     pyapi-cookie-func.html (6.43 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
4.7.2 Functions


4.7.2 Functions

add_cookie( req, cookie[, value, attributes])
This is a convenience function for setting a cookie in request headers. req is a mod_python Request object. If cookie is an instance of Cookie (or subclass thereof), then the cookie is set, otherwise, cookie must be a string, in which case a Cookie is constructed using cookie as name, value as the value, along with any valid Cookie attributes specified as keyword arguments.

This function will also set "Cache-Control: no-cache="set-cookie"" header to inform caches that the cookie value should not be cached.

Here is one way to use this function:

c = Cookie.Cookie('spam', 'eggs', expires=time.time()+300)
Cookie.add_cookie(req, c)
Here is another:
Cookie.add_cookie(req, 'spam', 'eggs', expires=time.time()+300)

get_cookies( req [, Class, data])
This is a convenience function for retrieving cookies from incoming headers. req is a mod_python Request object. Class is a class whose parse() method will be used to parse the cookies, it defaults to Cookie. Data can be any number of keyword arguments which, will be passed to parse() (This is useful for signedCookie and MarshalCookie which require secret as an additional argument to parse).


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0032 ]--