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

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

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

Safe-mode: OFF (not secure)

/usr/src/linux-oracle-5.13-headers-5.13.0-1018/include/linux/   drwxr-xr-x
Free 83.28 GB of 96.73 GB (86.1%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     sockptr.h (2.23 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/* SPDX-License-Identifier: GPL-2.0-only */
/*
 * Copyright (c) 2020 Christoph Hellwig.
 *
 * Support for "universal" pointers that can point to either kernel or userspace
 * memory.
 */
#ifndef _LINUX_SOCKPTR_H
#define _LINUX_SOCKPTR_H

#include <linux/slab.h>
#include <linux/uaccess.h>

typedef struct {
    union {
        void        *kernel;
        void __user    *user;
    };
    bool        is_kernel : 1;
} sockptr_t;

static inline bool sockptr_is_kernel(sockptr_t sockptr)
{
    return sockptr.is_kernel;
}

static inline sockptr_t KERNEL_SOCKPTR(void *p)
{
    return (sockptr_t) { .kernel = p, .is_kernel = true };
}

static inline sockptr_t USER_SOCKPTR(void __user *p)
{
    return (sockptr_t) { .user = p };
}

static inline bool sockptr_is_null(sockptr_t sockptr)
{
    if (sockptr_is_kernel(sockptr))
        return !sockptr.kernel;
    return !sockptr.user;
}

static inline int copy_from_sockptr_offset(void *dst, sockptr_t src,
        size_t offset, size_t size)
{
    if (!sockptr_is_kernel(src))
        return copy_from_user(dst, src.user + offset, size);
    memcpy(dst, src.kernel + offset, size);
    return 0;
}

static inline int copy_from_sockptr(void *dst, sockptr_t src, size_t size)
{
    return copy_from_sockptr_offset(dst, src, 0, size);
}

static inline int copy_to_sockptr_offset(sockptr_t dst, size_t offset,
        const void *src, size_t size)
{
    if (!sockptr_is_kernel(dst))
        return copy_to_user(dst.user + offset, src, size);
    memcpy(dst.kernel + offset, src, size);
    return 0;
}

static inline void *memdup_sockptr(sockptr_t src, size_t len)
{
    void *p = kmalloc_track_caller(len, GFP_USER | __GFP_NOWARN);

    if (!p)
        return ERR_PTR(-ENOMEM);
    if (copy_from_sockptr(p, src, len)) {
        kfree(p);
        return ERR_PTR(-EFAULT);
    }
    return p;
}

static inline void *memdup_sockptr_nul(sockptr_t src, size_t len)
{
    char *p = kmalloc_track_caller(len + 1, GFP_KERNEL);

    if (!p)
        return ERR_PTR(-ENOMEM);
    if (copy_from_sockptr(p, src, len)) {
        kfree(p);
        return ERR_PTR(-EFAULT);
    }
    p[len] = '\0';
    return p;
}

static inline long strncpy_from_sockptr(char *dst, sockptr_t src, size_t count)
{
    if (sockptr_is_kernel(src)) {
        size_t len = min(strnlen(src.kernel, count - 1) + 1, count);

        memcpy(dst, src.kernel, len);
        return len;
    }
    return strncpy_from_user(dst, src.user, count);
}

#endif /* _LINUX_SOCKPTR_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 HackingTool | HackingTool | Generation time: 0.0044 ]--