From 18120d94f27b7068eac40ff16940ec9f71bb8cfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Copin?= Date: Tue, 21 Feb 2023 21:01:07 +0100 Subject: [PATCH] Add PHP magic methods list See: https://www.php.net/manual/en/language.oop5.magic.php --- Fuzzing/php-magic-methods.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Fuzzing/php-magic-methods.txt diff --git a/Fuzzing/php-magic-methods.txt b/Fuzzing/php-magic-methods.txt new file mode 100644 index 00000000..f732ed33 --- /dev/null +++ b/Fuzzing/php-magic-methods.txt @@ -0,0 +1,17 @@ +__construct +__destruct +__call +__callStatic +__get +__set +__isset +__unset +__sleep +__wakeup +__serialize +__unserialize +__toString +__invoke +__set_state +__clone +__debugInfo \ No newline at end of file