!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: Apache/2.4.18 (Ubuntu). PHP/7.0.33-0ubuntu0.16.04.16 

uname -a: Linux digifus 3.13.0-57-generic #95-Ubuntu SMP Fri Jun 19 09:28:15 UTC 2015 x86_64 

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

Safe-mode: OFF (not secure)

/usr/src/linux-headers-3.13.0-170/include/trace/events/   drwxr-xr-x
Free 9.62 GB of 29.4 GB (32.72%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     vfs.h (1.16 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#undef TRACE_SYSTEM
#define TRACE_SYSTEM vfs

#include <linux/module.h>

#if !defined(_TRACE_VFS_H) || defined(TRACE_HEADER_MULTI_READ)
#define _TRACE_VFS_H

/*
 * Tracepoint for dirtying an inode:
 */
TRACE_EVENT(dirty_inode,

    TP_PROTO(struct inode *inode, struct task_struct *task),

    TP_ARGS(inode, task),

    TP_STRUCT__entry(
        __array( char,    comm,    TASK_COMM_LEN    )
        __field( pid_t,    pid            )
        __array( char,  dev,    16        )
        __array( char,  file,   32        )
    ),

    TP_fast_assign(
        if (inode->i_ino || strcmp(inode->i_sb->s_id, "bdev")) {
            struct dentry *dentry;
            const char *name = "?";

            dentry = d_find_alias(inode);
            if (dentry) {
                spin_lock(&dentry->d_lock);
                name = (const char *) dentry->d_name.name;
            }

            memcpy(__entry->comm, task->comm, TASK_COMM_LEN);
            __entry->pid = task->pid;
            strlcpy(__entry->file, name, 32);
            strlcpy(__entry->dev, inode->i_sb->s_id, 16);

            if (dentry) {
                spin_unlock(&dentry->d_lock);
                dput(dentry);
            }
        }
    ),

    TP_printk("task=%i (%s) file=%s dev=%s",
        __entry->pid, __entry->comm, __entry->file, __entry->dev)
);

#endif /* _TRACE_VFS_H */

/* This part must be outside protection */
#include <trace/define_trace.h>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by KaizenLouie | C99Shell Github | Generation time: 0.0055 ]--