Server IP : 104.21.38.3 / Your IP : 172.69.165.59 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/extra/libedit/libedit-20221030-3.1/examples/ |
Upload File : |
/* * build: * CC=clang CXX=clang++ CFLAGS="-fsanitize=address,fuzzer-no-link -g" \ * CXXFLAGS="-fsanitize=address,fuzzer-no-link -g" ./configure && make * run: * LD_LIBRARY_PATH=../src/.libs/ .libs/fuzz1 -max_len=32 \ * -use_value_profile=1 -only_ascii=1 */ #include <readline/readline.h> #include <locale.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <string.h> int init = 0; int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { if (!Size) return 0; if (!init) { setlocale(LC_CTYPE, ""); stifle_history(7); init = 1; } clear_history(); size_t lasti = 0; for (size_t i = 0;; ++i) { if (i == Size || Data[i] == '\n') { if (i - lasti) { char *s = (char *)malloc(i - lasti + 1); memcpy(s, &Data[lasti], i - lasti); s[i - lasti] = '\0'; char *expansion; int result; #ifdef DEBUG fprintf(stderr, "Calling history_expand: >%s<\n", s); #endif result = history_expand(s, &expansion); if (result < 0 || result == 2) { /* Errors ignored */ } else { add_history(expansion); } free(expansion); free(s); } lasti = i + 1; } if (i == Size) break; } return 0; }