Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
Modules /
_xxtestfuzz /
Delete
Unzip
Name
Size
Permission
Date
Action
dictionaries
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
fuzz_csv_reader_corpus
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
fuzz_json_loads_corpus
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
fuzz_sre_compile_corpus
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
fuzz_struct_unpack_corpus
[ DIR ]
drwxr-xr-x
2024-03-19 22:46
README.rst
1.97
KB
-rw-r--r--
2024-03-19 22:46
_xxtestfuzz.c
1.05
KB
-rw-r--r--
2024-03-19 22:46
fuzz_tests.txt
140
B
-rw-r--r--
2024-03-19 22:46
fuzzer.c
16.09
KB
-rw-r--r--
2024-03-19 22:46
Save
Rename
#define PY_SSIZE_T_CLEAN #include <Python.h> #include <stdlib.h> #include <inttypes.h> int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size); static PyObject* _fuzz_run(PyObject* self, PyObject* args) { const char* buf; Py_ssize_t size; if (!PyArg_ParseTuple(args, "s#", &buf, &size)) { return NULL; } int rv = LLVMFuzzerTestOneInput((const uint8_t*)buf, size); if (PyErr_Occurred()) { return NULL; } if (rv != 0) { // Nonzero return codes are reserved for future use. PyErr_Format( PyExc_RuntimeError, "Nonzero return code from fuzzer: %d", rv); return NULL; } Py_RETURN_NONE; } static PyMethodDef module_methods[] = { {"run", (PyCFunction)_fuzz_run, METH_VARARGS, ""}, {NULL}, }; static struct PyModuleDef _fuzzmodule = { PyModuleDef_HEAD_INIT, "_fuzz", NULL, 0, module_methods, NULL, NULL, NULL, NULL }; PyMODINIT_FUNC PyInit__xxtestfuzz(void) { return PyModule_Create(&_fuzzmodule); }