!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.12 with Suhosin-Patch mod_ssl/2.2.8 OpenSSL/0.9.8g. PHP/5.2.4-2ubuntu5.12 

uname -a: Linux forum.circlefusion.com 2.6.24-19-server #1 SMP Wed Jun 18 15:18:00 UTC 2008 i686 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/doc/libssl-dev/demos/eay/   drwxr-xr-x
Free 11.54 GB of 97.11 GB (11.89%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     base64.c (1.17 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* This is a simple example of using the base64 BIO to a memory BIO and then
 * getting the data.
 */
#include <stdio.h>
#include <openssl/bio.h>
#include <openssl/evp.h>

main()
    {
    int i;
    BIO *mbio,*b64bio,*bio;
    char buf[512];
    char *p;

    mbio=BIO_new(BIO_s_mem());
    b64bio=BIO_new(BIO_f_base64());

    bio=BIO_push(b64bio,mbio);
    /* We now have bio pointing at b64->mem, the base64 bio encodes on
     * write and decodes on read */

    for (;;)
        {
        i=fread(buf,1,512,stdin);
        if (i <= 0) break;
        BIO_write(bio,buf,i);
        }
    /* We need to 'flush' things to push out the encoding of the
     * last few bytes.  There is special encoding if it is not a
     * multiple of 3
     */
    BIO_flush(bio);

    printf("We have %d bytes available\n",BIO_pending(mbio));

    /* We will now get a pointer to the data and the number of elements. */
    /* hmm... this one was not defined by a macro in bio.h, it will be for
     * 0.9.1.  The other option is too just read from the memory bio.
     */
    i=(int)BIO_ctrl(mbio,BIO_CTRL_INFO,0,(char *)&p);

    printf("%d\n",i);
    fwrite("---\n",1,4,stdout);
    fwrite(p,1,i,stdout);
    fwrite("---\n",1,4,stdout);

    /* This call will walk the chain freeing all the BIOs */
    BIO_free_all(bio);
    }

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0057 ]--