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

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/usr/share/gtk-doc/html/gdict/   drwxr-xr-x
Free 50.96 GB of 127.8 GB (39.88%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     gdict-GdictDefbox.html (26.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
GdictDefbox

GdictDefbox

GdictDefbox —

Synopsis




            GdictDefboxPrivate;
            GdictDefbox;
GtkWidget*  gdict_defbox_new                (void);
GtkWidget*  gdict_defbox_new_with_context   (GdictContext *context);
void        gdict_defbox_set_context        (GdictDefbox *defbox,
                                             GdictContext *context);
GdictContext* gdict_defbox_get_context      (GdictDefbox *defbox);
void        gdict_defbox_set_database       (GdictDefbox *defbox,
                                             const gchar *database);
const gchar* gdict_defbox_get_database      (GdictDefbox *defbox);
gchar*      gdict_defbox_get_text           (GdictDefbox *defbox,
                                             gsize *length);
void        gdict_defbox_select_all         (GdictDefbox *defbox);
void        gdict_defbox_copy_to_clipboard  (GdictDefbox *defbox,
                                             GtkClipboard *clipboard);
void        gdict_defbox_clear              (GdictDefbox *defbox);
void        gdict_defbox_lookup             (GdictDefbox *defbox,
                                             const gchar *word);
gint        gdict_defbox_count_definitions  (GdictDefbox *defbox);
void        gdict_defbox_jump_to_definition (GdictDefbox *defbox,
                                             gint number);
void        gdict_defbox_set_show_find      (GdictDefbox *defbox,
                                             gboolean show_find);
gboolean    gdict_defbox_get_show_find      (GdictDefbox *defbox);
void        gdict_defbox_find_next          (GdictDefbox *defbox);
void        gdict_defbox_find_previous      (GdictDefbox *defbox);
void        gdict_defbox_set_font_name      (GdictDefbox *defbox,
                                             const gchar *font_name);
const gchar* gdict_defbox_get_font_name     (GdictDefbox *defbox);

Description

Details

GdictDefboxPrivate

typedef struct _GdictDefboxPrivate GdictDefboxPrivate;


GdictDefbox

typedef struct {
} GdictDefbox;


gdict_defbox_new ()

GtkWidget*  gdict_defbox_new                (void);

Creates a new GdictDefbox widget. Use this widget to search for a word using a GdictContext, and to show the resulting definition(s). You must set a GdictContext for this widget using gdict_defbox_set_context().

Returns : a new GdictDefbox widget.

Since 0.1


gdict_defbox_new_with_context ()

GtkWidget*  gdict_defbox_new_with_context   (GdictContext *context);

Creates a new GdictDefbox widget. Use this widget to search for a word using context, and to show the resulting definition.

context : a GdictContext
Returns : a new GdictDefbox widget.

Since 0.1


gdict_defbox_set_context ()

void        gdict_defbox_set_context        (GdictDefbox *defbox,
                                             GdictContext *context);

Sets context as the GdictContext to be used by defbox in order to retrieve the definitions of a word.

defbox : a GdictDefbox
context : a GdictContext

Since 0.1


gdict_defbox_get_context ()

GdictContext* gdict_defbox_get_context      (GdictDefbox *defbox);

Gets the GdictContext used by defbox.

defbox : a GdictDefbox
Returns : a GdictContext.

Since 0.1


gdict_defbox_set_database ()

void        gdict_defbox_set_database       (GdictDefbox *defbox,
                                             const gchar *database);

Sets database as the database used by the GdictContext bound to defbox to query for word definitions.

defbox : a GdictDefbox
database : a database

Since 0.1


gdict_defbox_get_database ()

const gchar* gdict_defbox_get_database      (GdictDefbox *defbox);

Gets the database used by defbox. See gdict_defbox_set_database().

defbox : a GdictDefbox
Returns : the name of a database. The string is owned by the GdictDefbox and should not be modified or freed.

Since 0.1


gdict_defbox_get_text ()

gchar*      gdict_defbox_get_text           (GdictDefbox *defbox,
                                             gsize *length);

Gets the full contents of defbox.

defbox : a GdictDefbox
length : return location for the text length or NULL
Returns : a newly allocated string containing the text displayed by defbox.

Since 0.1


gdict_defbox_select_all ()

void        gdict_defbox_select_all         (GdictDefbox *defbox);

Selects all the text displayed by defbox

defbox : a GdictDefbox

Since 0.1


gdict_defbox_copy_to_clipboard ()

void        gdict_defbox_copy_to_clipboard  (GdictDefbox *defbox,
                                             GtkClipboard *clipboard);

Copies the selected text inside defbox into clipboard.

defbox : a GdictDefbox
clipboard : a GtkClipboard

Since 0.1


gdict_defbox_clear ()

void        gdict_defbox_clear              (GdictDefbox *defbox);

Clears the buffer of defbox

defbox : a GdictDefbox

Since 0.1


gdict_defbox_lookup ()

void        gdict_defbox_lookup             (GdictDefbox *defbox,
                                             const gchar *word);

Searches word inside the dictionary sources using the GdictContext provided when creating defbox or set using gdict_defbox_set_context().

defbox : a GdictDefbox
word : the word to look up

Since 0.1


gdict_defbox_count_definitions ()

gint        gdict_defbox_count_definitions  (GdictDefbox *defbox);

Gets the number of definitions displayed by defbox

defbox : a GdictDefbox
Returns : the number of definitions.

Since 0.1


gdict_defbox_jump_to_definition ()

void        gdict_defbox_jump_to_definition (GdictDefbox *defbox,
                                             gint number);

Scrolls to the definition identified by number. If number is -1, jumps to the last definition.

defbox : a GdictDefbox
number : the definition to jump to

Since 0.1


gdict_defbox_set_show_find ()

void        gdict_defbox_set_show_find      (GdictDefbox *defbox,
                                             gboolean show_find);

Whether defbox should show the find pane.

defbox : a GdictDefbox
show_find : TRUE to show the find pane

Since 0.1


gdict_defbox_get_show_find ()

gboolean    gdict_defbox_get_show_find      (GdictDefbox *defbox);

Gets whether the find pane should be visible or not.

defbox : a GdictDefbox
Returns : TRUE if the find pane is visible.

Since 0.1


gdict_defbox_find_next ()

void        gdict_defbox_find_next          (GdictDefbox *defbox);

Emits the "find-next" signal.

defbox : a GdictDefbox

Since 0.1


gdict_defbox_find_previous ()

void        gdict_defbox_find_previous      (GdictDefbox *defbox);

Emits the "find-previous" signal.

defbox : a GdictDefbox

Since 0.1


gdict_defbox_set_font_name ()

void        gdict_defbox_set_font_name      (GdictDefbox *defbox,
                                             const gchar *font_name);

Sets font_name as the font for defbox. It calls internally pango_font_description_from_string() and gtk_widget_modify_font().

Passing NULL for font_name will reset any previously set font.

defbox : a GdictDefbox
font_name : a font description, or NULL

Since 0.3.0


gdict_defbox_get_font_name ()

const gchar* gdict_defbox_get_font_name     (GdictDefbox *defbox);

Retrieves the font currently used by defbox.

defbox : a GdictDefbox
Returns : a font name. The returned string is owned by defbox and should not be modified or freed.

Since 0.3


:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0102 ]--