├── .gitmodules ├── Analyzer ├── Units │ ├── Class.py │ ├── File.py │ ├── Method.py │ ├── Property.py │ └── __init__.py ├── __init__.py ├── analyzer.py ├── chain.py ├── chain.py.ccs ├── chain.py.org ├── chain.py.phpggc ├── dynamic.py ├── parser.py └── static.py ├── Detector ├── DetectorManager.py └── __init__.py ├── Files ├── FunctionParser.php ├── crawler_helper_append.php ├── parse_builtin.php ├── parser.php ├── phar_generator │ ├── class.php │ ├── generator.php │ └── tester.php └── sensitive_functions_list.txt ├── Fuzzer ├── DebugUtils.php ├── Executor.php ├── Executor.php.bak ├── Files │ ├── PUT_head.php │ ├── PUT_tail.php │ └── Sink_Info.php ├── FuzzManager.php ├── FuzzSlave.php ├── FuzzSlave.php.bak ├── Fuzzer.php ├── Instrumentor.php ├── PayloadCreator.php ├── PayloadCreator.php.bak ├── SeedNode.php ├── SeedTree.php ├── inc │ ├── ASTLoader.php │ ├── CodePrinter.php │ ├── ConstraintVisitor.php │ ├── IncludeParseVisitor.php │ ├── MyNodeVisitor.php │ ├── NormalNodeVisitor.php │ ├── STMTManipulator.php │ └── STMTManipulator7.php └── solving_test.py ├── Lib ├── crawlhelper │ ├── config.m4 │ ├── crawlhelper.c │ └── php_crawlhelper.h ├── evalhook │ ├── .deps │ ├── .libs │ │ ├── evalhook.la │ │ ├── evalhook.lai │ │ ├── evalhook.o │ │ └── evalhook.so │ ├── README.md │ ├── config.m4 │ ├── evalhook.c │ └── php_evalhook.h ├── evalhook7 │ ├── .libs │ │ ├── evalhook.la │ │ ├── evalhook.lai │ │ ├── evalhook.o │ │ └── evalhook.so │ ├── README.md │ ├── config.m4 │ ├── evalhook.c │ └── php_evalhook.h ├── pcntl54 │ ├── CREDITS │ ├── README │ ├── config.m4 │ ├── package.xml │ ├── pcntl.c │ ├── php_pcntl.h │ ├── php_signal.c │ ├── php_signal.h │ ├── test-pcntl.php │ └── tests │ │ ├── 001.phpt │ │ ├── 002.phpt │ │ ├── 003.phpt │ │ ├── bug47566.phpt │ │ ├── pcntl_alarm.phpt │ │ ├── pcntl_exec.phpt │ │ ├── pcntl_exec_2.phpt │ │ ├── pcntl_exec_3.phpt │ │ ├── pcntl_fork_basic.phpt │ │ ├── pcntl_fork_variation.phpt │ │ ├── pcntl_get_last_error.phpt │ │ ├── pcntl_signal.phpt │ │ ├── pcntl_signal_dispatch.phpt │ │ ├── pcntl_wait.phpt │ │ └── signal_closure_handler.phpt ├── pcntl56 │ ├── README │ ├── config.m4 │ ├── package.xml │ ├── pcntl.c │ ├── php_pcntl.h │ ├── php_signal.c │ ├── php_signal.h │ └── tests │ │ ├── 001.phpt │ │ ├── pcntl_exec.phpt │ │ ├── pcntl_exec_2.phpt │ │ ├── pcntl_fork_basic.phpt │ │ ├── pcntl_fork_variation.phpt │ │ ├── pcntl_get_last_error.phpt │ │ ├── pcntl_signal.phpt │ │ ├── pcntl_signal_dispatch.phpt │ │ ├── pcntl_wait.phpt │ │ └── signal_closure_handler.phpt ├── pcntl72 │ ├── README │ ├── config.m4 │ ├── package.xml │ ├── pcntl.c │ ├── php_pcntl.h │ ├── php_signal.c │ ├── php_signal.h │ └── tests │ │ ├── 001.phpt │ │ ├── async_signals.phpt │ │ ├── bug72154.phpt │ │ ├── bug73783.phpt │ │ ├── pcntl_exec.phpt │ │ ├── pcntl_exec_2.phpt │ │ ├── pcntl_fork_basic.phpt │ │ ├── pcntl_fork_variation.phpt │ │ ├── pcntl_get_last_error.phpt │ │ ├── pcntl_realtime_signal.phpt │ │ ├── pcntl_signal.phpt │ │ ├── pcntl_signal_dispatch.phpt │ │ ├── pcntl_signal_get_handler.phpt │ │ ├── pcntl_wait.phpt │ │ ├── pcntl_wait_rusage1.phpt │ │ ├── pcntl_waitpid_rusage1.phpt │ │ └── signal_closure_handler.phpt ├── rabbitmq_php │ └── composer.json └── rabbitmq_php7 │ └── composer.json ├── PHPGGC ├── CodeIgniter4_RCE1.php ├── Drupal7_FD1.php ├── Drupal7_RCE1.php ├── Guzzle_FW1.php ├── Guzzle_INFO1.php ├── Guzzle_RCE1.php ├── Horde_RCE1.php ├── Laminas_FD1.php ├── Monolog_RCE1.php ├── Monolog_RCE2.php ├── Monolog_RCE3.php ├── Monolog_RCE4.php ├── PHPExcel_FD1.php ├── PHPExcel_FD2.php ├── PHPExcel_FD3.php ├── PHPExcel_FD4.php ├── Pydio_Guzzle_RCE1.php ├── Slim_RCE1.php ├── Smarty_FD1.php ├── Smarty_SSRF1.php ├── SwiftMailer_FD1.php ├── SwiftMailer_FW1.php ├── SwiftMailer_FW2.php ├── SwiftMailer_FW3.php ├── TCPDF_FD1.php ├── ThinkPHP_RCE1.php ├── WordPress_Dompdf_RCE1.php ├── WordPress_Dompdf_RCE2.php ├── WordPress_Guzzle_RCE1.php ├── WordPress_Guzzle_RCE2.php ├── WordPress_PHPExcel_RCE1.php ├── WordPress_PHPExcel_RCE2.php ├── WordPress_PHPExcel_RCE3.php ├── WordPress_PHPExcel_RCE4.php ├── WordPress_PHPExcel_RCE5.php ├── WordPress_PHPExcel_RCE6.php ├── WordPress_P_EmailSubscribers_RCE1.php ├── WordPress_P_EverestForms_RCE1.php ├── WordPress_P_WooCommerce_RCE1.php ├── WordPress_P_WooCommerce_RCE2.php ├── WordPress_P_YetAnotherStarsRating_RCE1.php ├── Yii2_RCE1.php ├── Yii2_RCE2.php ├── Yii_RCE1.php ├── ZendFramework_FD1.php ├── ZendFramework_RCE1.php ├── ZendFramework_RCE2.php ├── ZendFramework_RCE3.php └── ZendFramework_RCE4.php ├── Proxy ├── __init__.py ├── proxy.py ├── proxy.py.org └── proxy.py.phpggc ├── README.md ├── Trigger ├── ccs_run.py ├── cmsmadesimple_poc.py ├── contao_poc.py ├── cubecart_poc.py ├── drupal │ ├── .gitkeep │ ├── README.md │ ├── drupal_1.png │ ├── drupal_2.png │ ├── drupal_3.png │ └── drupal_4.png ├── glpi_poc.py ├── joomla_poc.py ├── lib_run.py ├── owa_poc.py ├── piwik_poc.py ├── typo3 │ ├── .gitkeep │ ├── README.md │ ├── typo3_1.png │ ├── typo3_2.png │ ├── typo3_3.png │ ├── typo3_4.png │ ├── typo3_5.png │ ├── typo3_6.png │ └── typo3_7.png ├── vanilla_poc.py ├── woocommerce_poc.py ├── wordpress_poc.py └── wp_run.py ├── Utils ├── Bootstrap.py ├── HookFiles │ └── HookHead.php ├── __init__.py ├── arg.py └── makeHTTP.py ├── chain_analyzer ├── chain_analyzer.php ├── chain_list.php ├── display_code.php ├── index.php └── sink_list.php ├── config.py ├── htaccess.py ├── install_54.sh ├── install_56.sh ├── install_72.sh ├── requirements.txt ├── run.py ├── run_FUGIO_54.sh ├── run_FUGIO_54_all.sh ├── run_FUGIO_56.sh ├── run_FUGIO_72.sh ├── run_FUGIO_cubecart.sh ├── run_FUGIO_cubecart_all.sh └── run_rabbitmq.sh /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/.gitmodules -------------------------------------------------------------------------------- /Analyzer/Units/Class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/Units/Class.py -------------------------------------------------------------------------------- /Analyzer/Units/File.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/Units/File.py -------------------------------------------------------------------------------- /Analyzer/Units/Method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/Units/Method.py -------------------------------------------------------------------------------- /Analyzer/Units/Property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/Units/Property.py -------------------------------------------------------------------------------- /Analyzer/Units/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/Units/__init__.py -------------------------------------------------------------------------------- /Analyzer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/__init__.py -------------------------------------------------------------------------------- /Analyzer/analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/analyzer.py -------------------------------------------------------------------------------- /Analyzer/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/chain.py -------------------------------------------------------------------------------- /Analyzer/chain.py.ccs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/chain.py.ccs -------------------------------------------------------------------------------- /Analyzer/chain.py.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/chain.py.org -------------------------------------------------------------------------------- /Analyzer/chain.py.phpggc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/chain.py.phpggc -------------------------------------------------------------------------------- /Analyzer/dynamic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/dynamic.py -------------------------------------------------------------------------------- /Analyzer/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/parser.py -------------------------------------------------------------------------------- /Analyzer/static.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Analyzer/static.py -------------------------------------------------------------------------------- /Detector/DetectorManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Detector/DetectorManager.py -------------------------------------------------------------------------------- /Detector/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Detector/__init__.py -------------------------------------------------------------------------------- /Files/FunctionParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Files/FunctionParser.php -------------------------------------------------------------------------------- /Files/crawler_helper_append.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Files/crawler_helper_append.php -------------------------------------------------------------------------------- /Files/parse_builtin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Files/parse_builtin.php -------------------------------------------------------------------------------- /Files/parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Files/parser.php -------------------------------------------------------------------------------- /Files/phar_generator/class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Files/phar_generator/class.php -------------------------------------------------------------------------------- /Files/phar_generator/generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Files/phar_generator/generator.php -------------------------------------------------------------------------------- /Files/phar_generator/tester.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Files/phar_generator/tester.php -------------------------------------------------------------------------------- /Files/sensitive_functions_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Files/sensitive_functions_list.txt -------------------------------------------------------------------------------- /Fuzzer/DebugUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/DebugUtils.php -------------------------------------------------------------------------------- /Fuzzer/Executor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/Executor.php -------------------------------------------------------------------------------- /Fuzzer/Executor.php.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/Executor.php.bak -------------------------------------------------------------------------------- /Fuzzer/Files/PUT_head.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/Files/PUT_head.php -------------------------------------------------------------------------------- /Fuzzer/Files/PUT_tail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/Files/PUT_tail.php -------------------------------------------------------------------------------- /Fuzzer/Files/Sink_Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/Files/Sink_Info.php -------------------------------------------------------------------------------- /Fuzzer/FuzzManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/FuzzManager.php -------------------------------------------------------------------------------- /Fuzzer/FuzzSlave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/FuzzSlave.php -------------------------------------------------------------------------------- /Fuzzer/FuzzSlave.php.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/FuzzSlave.php.bak -------------------------------------------------------------------------------- /Fuzzer/Fuzzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/Fuzzer.php -------------------------------------------------------------------------------- /Fuzzer/Instrumentor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/Instrumentor.php -------------------------------------------------------------------------------- /Fuzzer/PayloadCreator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/PayloadCreator.php -------------------------------------------------------------------------------- /Fuzzer/PayloadCreator.php.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/PayloadCreator.php.bak -------------------------------------------------------------------------------- /Fuzzer/SeedNode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/SeedNode.php -------------------------------------------------------------------------------- /Fuzzer/SeedTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/SeedTree.php -------------------------------------------------------------------------------- /Fuzzer/inc/ASTLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/inc/ASTLoader.php -------------------------------------------------------------------------------- /Fuzzer/inc/CodePrinter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/inc/CodePrinter.php -------------------------------------------------------------------------------- /Fuzzer/inc/ConstraintVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/inc/ConstraintVisitor.php -------------------------------------------------------------------------------- /Fuzzer/inc/IncludeParseVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/inc/IncludeParseVisitor.php -------------------------------------------------------------------------------- /Fuzzer/inc/MyNodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/inc/MyNodeVisitor.php -------------------------------------------------------------------------------- /Fuzzer/inc/NormalNodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/inc/NormalNodeVisitor.php -------------------------------------------------------------------------------- /Fuzzer/inc/STMTManipulator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/inc/STMTManipulator.php -------------------------------------------------------------------------------- /Fuzzer/inc/STMTManipulator7.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/inc/STMTManipulator7.php -------------------------------------------------------------------------------- /Fuzzer/solving_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Fuzzer/solving_test.py -------------------------------------------------------------------------------- /Lib/crawlhelper/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/crawlhelper/config.m4 -------------------------------------------------------------------------------- /Lib/crawlhelper/crawlhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/crawlhelper/crawlhelper.c -------------------------------------------------------------------------------- /Lib/crawlhelper/php_crawlhelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/crawlhelper/php_crawlhelper.h -------------------------------------------------------------------------------- /Lib/evalhook/.deps: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Lib/evalhook/.libs/evalhook.la: -------------------------------------------------------------------------------- 1 | ../evalhook.la -------------------------------------------------------------------------------- /Lib/evalhook/.libs/evalhook.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook/.libs/evalhook.lai -------------------------------------------------------------------------------- /Lib/evalhook/.libs/evalhook.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook/.libs/evalhook.o -------------------------------------------------------------------------------- /Lib/evalhook/.libs/evalhook.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook/.libs/evalhook.so -------------------------------------------------------------------------------- /Lib/evalhook/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook/README.md -------------------------------------------------------------------------------- /Lib/evalhook/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook/config.m4 -------------------------------------------------------------------------------- /Lib/evalhook/evalhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook/evalhook.c -------------------------------------------------------------------------------- /Lib/evalhook/php_evalhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook/php_evalhook.h -------------------------------------------------------------------------------- /Lib/evalhook7/.libs/evalhook.la: -------------------------------------------------------------------------------- 1 | ../evalhook.la -------------------------------------------------------------------------------- /Lib/evalhook7/.libs/evalhook.lai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook7/.libs/evalhook.lai -------------------------------------------------------------------------------- /Lib/evalhook7/.libs/evalhook.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook7/.libs/evalhook.o -------------------------------------------------------------------------------- /Lib/evalhook7/.libs/evalhook.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook7/.libs/evalhook.so -------------------------------------------------------------------------------- /Lib/evalhook7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook7/README.md -------------------------------------------------------------------------------- /Lib/evalhook7/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook7/config.m4 -------------------------------------------------------------------------------- /Lib/evalhook7/evalhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook7/evalhook.c -------------------------------------------------------------------------------- /Lib/evalhook7/php_evalhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/evalhook7/php_evalhook.h -------------------------------------------------------------------------------- /Lib/pcntl54/CREDITS: -------------------------------------------------------------------------------- 1 | pcntl 2 | Jason Greene, Arnaud Le Blanc 3 | -------------------------------------------------------------------------------- /Lib/pcntl54/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/README -------------------------------------------------------------------------------- /Lib/pcntl54/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/config.m4 -------------------------------------------------------------------------------- /Lib/pcntl54/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/package.xml -------------------------------------------------------------------------------- /Lib/pcntl54/pcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/pcntl.c -------------------------------------------------------------------------------- /Lib/pcntl54/php_pcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/php_pcntl.h -------------------------------------------------------------------------------- /Lib/pcntl54/php_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/php_signal.c -------------------------------------------------------------------------------- /Lib/pcntl54/php_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/php_signal.h -------------------------------------------------------------------------------- /Lib/pcntl54/test-pcntl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/test-pcntl.php -------------------------------------------------------------------------------- /Lib/pcntl54/tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/001.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/002.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/002.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/003.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/003.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/bug47566.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/bug47566.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_alarm.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_alarm.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_exec.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_exec.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_exec_2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_exec_2.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_exec_3.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_exec_3.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_fork_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_fork_basic.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_fork_variation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_fork_variation.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_get_last_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_get_last_error.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_signal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_signal.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_signal_dispatch.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_signal_dispatch.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/pcntl_wait.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/pcntl_wait.phpt -------------------------------------------------------------------------------- /Lib/pcntl54/tests/signal_closure_handler.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl54/tests/signal_closure_handler.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/README -------------------------------------------------------------------------------- /Lib/pcntl56/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/config.m4 -------------------------------------------------------------------------------- /Lib/pcntl56/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/package.xml -------------------------------------------------------------------------------- /Lib/pcntl56/pcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/pcntl.c -------------------------------------------------------------------------------- /Lib/pcntl56/php_pcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/php_pcntl.h -------------------------------------------------------------------------------- /Lib/pcntl56/php_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/php_signal.c -------------------------------------------------------------------------------- /Lib/pcntl56/php_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/php_signal.h -------------------------------------------------------------------------------- /Lib/pcntl56/tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/001.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/pcntl_exec.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/pcntl_exec.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/pcntl_exec_2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/pcntl_exec_2.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/pcntl_fork_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/pcntl_fork_basic.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/pcntl_fork_variation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/pcntl_fork_variation.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/pcntl_get_last_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/pcntl_get_last_error.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/pcntl_signal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/pcntl_signal.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/pcntl_signal_dispatch.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/pcntl_signal_dispatch.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/pcntl_wait.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/pcntl_wait.phpt -------------------------------------------------------------------------------- /Lib/pcntl56/tests/signal_closure_handler.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl56/tests/signal_closure_handler.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/README -------------------------------------------------------------------------------- /Lib/pcntl72/config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/config.m4 -------------------------------------------------------------------------------- /Lib/pcntl72/package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/package.xml -------------------------------------------------------------------------------- /Lib/pcntl72/pcntl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/pcntl.c -------------------------------------------------------------------------------- /Lib/pcntl72/php_pcntl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/php_pcntl.h -------------------------------------------------------------------------------- /Lib/pcntl72/php_signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/php_signal.c -------------------------------------------------------------------------------- /Lib/pcntl72/php_signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/php_signal.h -------------------------------------------------------------------------------- /Lib/pcntl72/tests/001.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/001.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/async_signals.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/async_signals.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/bug72154.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/bug72154.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/bug73783.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/bug73783.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_exec.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_exec.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_exec_2.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_exec_2.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_fork_basic.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_fork_basic.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_fork_variation.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_fork_variation.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_get_last_error.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_get_last_error.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_realtime_signal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_realtime_signal.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_signal.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_signal.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_signal_dispatch.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_signal_dispatch.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_signal_get_handler.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_signal_get_handler.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_wait.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_wait.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_wait_rusage1.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_wait_rusage1.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/pcntl_waitpid_rusage1.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/pcntl_waitpid_rusage1.phpt -------------------------------------------------------------------------------- /Lib/pcntl72/tests/signal_closure_handler.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/pcntl72/tests/signal_closure_handler.phpt -------------------------------------------------------------------------------- /Lib/rabbitmq_php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/rabbitmq_php/composer.json -------------------------------------------------------------------------------- /Lib/rabbitmq_php7/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Lib/rabbitmq_php7/composer.json -------------------------------------------------------------------------------- /PHPGGC/CodeIgniter4_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/CodeIgniter4_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Drupal7_FD1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Drupal7_FD1.php -------------------------------------------------------------------------------- /PHPGGC/Drupal7_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Drupal7_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Guzzle_FW1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Guzzle_FW1.php -------------------------------------------------------------------------------- /PHPGGC/Guzzle_INFO1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Guzzle_INFO1.php -------------------------------------------------------------------------------- /PHPGGC/Guzzle_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Guzzle_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Horde_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Horde_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Laminas_FD1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Laminas_FD1.php -------------------------------------------------------------------------------- /PHPGGC/Monolog_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Monolog_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Monolog_RCE2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Monolog_RCE2.php -------------------------------------------------------------------------------- /PHPGGC/Monolog_RCE3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Monolog_RCE3.php -------------------------------------------------------------------------------- /PHPGGC/Monolog_RCE4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Monolog_RCE4.php -------------------------------------------------------------------------------- /PHPGGC/PHPExcel_FD1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/PHPExcel_FD1.php -------------------------------------------------------------------------------- /PHPGGC/PHPExcel_FD2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/PHPExcel_FD2.php -------------------------------------------------------------------------------- /PHPGGC/PHPExcel_FD3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/PHPExcel_FD3.php -------------------------------------------------------------------------------- /PHPGGC/PHPExcel_FD4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/PHPExcel_FD4.php -------------------------------------------------------------------------------- /PHPGGC/Pydio_Guzzle_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Pydio_Guzzle_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Slim_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Slim_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Smarty_FD1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Smarty_FD1.php -------------------------------------------------------------------------------- /PHPGGC/Smarty_SSRF1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Smarty_SSRF1.php -------------------------------------------------------------------------------- /PHPGGC/SwiftMailer_FD1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/SwiftMailer_FD1.php -------------------------------------------------------------------------------- /PHPGGC/SwiftMailer_FW1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/SwiftMailer_FW1.php -------------------------------------------------------------------------------- /PHPGGC/SwiftMailer_FW2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/SwiftMailer_FW2.php -------------------------------------------------------------------------------- /PHPGGC/SwiftMailer_FW3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/SwiftMailer_FW3.php -------------------------------------------------------------------------------- /PHPGGC/TCPDF_FD1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/TCPDF_FD1.php -------------------------------------------------------------------------------- /PHPGGC/ThinkPHP_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/ThinkPHP_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_Dompdf_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_Dompdf_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_Dompdf_RCE2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_Dompdf_RCE2.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_Guzzle_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_Guzzle_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_Guzzle_RCE2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_Guzzle_RCE2.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_PHPExcel_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_PHPExcel_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_PHPExcel_RCE2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_PHPExcel_RCE2.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_PHPExcel_RCE3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_PHPExcel_RCE3.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_PHPExcel_RCE4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_PHPExcel_RCE4.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_PHPExcel_RCE5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_PHPExcel_RCE5.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_PHPExcel_RCE6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_PHPExcel_RCE6.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_P_EmailSubscribers_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_P_EmailSubscribers_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_P_EverestForms_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_P_EverestForms_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_P_WooCommerce_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_P_WooCommerce_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_P_WooCommerce_RCE2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_P_WooCommerce_RCE2.php -------------------------------------------------------------------------------- /PHPGGC/WordPress_P_YetAnotherStarsRating_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/WordPress_P_YetAnotherStarsRating_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Yii2_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Yii2_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/Yii2_RCE2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Yii2_RCE2.php -------------------------------------------------------------------------------- /PHPGGC/Yii_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/Yii_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/ZendFramework_FD1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/ZendFramework_FD1.php -------------------------------------------------------------------------------- /PHPGGC/ZendFramework_RCE1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/ZendFramework_RCE1.php -------------------------------------------------------------------------------- /PHPGGC/ZendFramework_RCE2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/ZendFramework_RCE2.php -------------------------------------------------------------------------------- /PHPGGC/ZendFramework_RCE3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/ZendFramework_RCE3.php -------------------------------------------------------------------------------- /PHPGGC/ZendFramework_RCE4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/PHPGGC/ZendFramework_RCE4.php -------------------------------------------------------------------------------- /Proxy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Proxy/__init__.py -------------------------------------------------------------------------------- /Proxy/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Proxy/proxy.py -------------------------------------------------------------------------------- /Proxy/proxy.py.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Proxy/proxy.py.org -------------------------------------------------------------------------------- /Proxy/proxy.py.phpggc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Proxy/proxy.py.phpggc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/README.md -------------------------------------------------------------------------------- /Trigger/ccs_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/ccs_run.py -------------------------------------------------------------------------------- /Trigger/cmsmadesimple_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/cmsmadesimple_poc.py -------------------------------------------------------------------------------- /Trigger/contao_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/contao_poc.py -------------------------------------------------------------------------------- /Trigger/cubecart_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/cubecart_poc.py -------------------------------------------------------------------------------- /Trigger/drupal/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Trigger/drupal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/drupal/README.md -------------------------------------------------------------------------------- /Trigger/drupal/drupal_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/drupal/drupal_1.png -------------------------------------------------------------------------------- /Trigger/drupal/drupal_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/drupal/drupal_2.png -------------------------------------------------------------------------------- /Trigger/drupal/drupal_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/drupal/drupal_3.png -------------------------------------------------------------------------------- /Trigger/drupal/drupal_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/drupal/drupal_4.png -------------------------------------------------------------------------------- /Trigger/glpi_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/glpi_poc.py -------------------------------------------------------------------------------- /Trigger/joomla_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/joomla_poc.py -------------------------------------------------------------------------------- /Trigger/lib_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/lib_run.py -------------------------------------------------------------------------------- /Trigger/owa_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/owa_poc.py -------------------------------------------------------------------------------- /Trigger/piwik_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/piwik_poc.py -------------------------------------------------------------------------------- /Trigger/typo3/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Trigger/typo3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/typo3/README.md -------------------------------------------------------------------------------- /Trigger/typo3/typo3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/typo3/typo3_1.png -------------------------------------------------------------------------------- /Trigger/typo3/typo3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/typo3/typo3_2.png -------------------------------------------------------------------------------- /Trigger/typo3/typo3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/typo3/typo3_3.png -------------------------------------------------------------------------------- /Trigger/typo3/typo3_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/typo3/typo3_4.png -------------------------------------------------------------------------------- /Trigger/typo3/typo3_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/typo3/typo3_5.png -------------------------------------------------------------------------------- /Trigger/typo3/typo3_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/typo3/typo3_6.png -------------------------------------------------------------------------------- /Trigger/typo3/typo3_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/typo3/typo3_7.png -------------------------------------------------------------------------------- /Trigger/vanilla_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/vanilla_poc.py -------------------------------------------------------------------------------- /Trigger/woocommerce_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/woocommerce_poc.py -------------------------------------------------------------------------------- /Trigger/wordpress_poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/wordpress_poc.py -------------------------------------------------------------------------------- /Trigger/wp_run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Trigger/wp_run.py -------------------------------------------------------------------------------- /Utils/Bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Utils/Bootstrap.py -------------------------------------------------------------------------------- /Utils/HookFiles/HookHead.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Utils/HookFiles/HookHead.php -------------------------------------------------------------------------------- /Utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Utils/__init__.py -------------------------------------------------------------------------------- /Utils/arg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Utils/arg.py -------------------------------------------------------------------------------- /Utils/makeHTTP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/Utils/makeHTTP.py -------------------------------------------------------------------------------- /chain_analyzer/chain_analyzer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/chain_analyzer/chain_analyzer.php -------------------------------------------------------------------------------- /chain_analyzer/chain_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/chain_analyzer/chain_list.php -------------------------------------------------------------------------------- /chain_analyzer/display_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/chain_analyzer/display_code.php -------------------------------------------------------------------------------- /chain_analyzer/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/chain_analyzer/index.php -------------------------------------------------------------------------------- /chain_analyzer/sink_list.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/chain_analyzer/sink_list.php -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/config.py -------------------------------------------------------------------------------- /htaccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/htaccess.py -------------------------------------------------------------------------------- /install_54.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/install_54.sh -------------------------------------------------------------------------------- /install_56.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/install_56.sh -------------------------------------------------------------------------------- /install_72.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/install_72.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/run.py -------------------------------------------------------------------------------- /run_FUGIO_54.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/run_FUGIO_54.sh -------------------------------------------------------------------------------- /run_FUGIO_54_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/run_FUGIO_54_all.sh -------------------------------------------------------------------------------- /run_FUGIO_56.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/run_FUGIO_56.sh -------------------------------------------------------------------------------- /run_FUGIO_72.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/run_FUGIO_72.sh -------------------------------------------------------------------------------- /run_FUGIO_cubecart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/run_FUGIO_cubecart.sh -------------------------------------------------------------------------------- /run_FUGIO_cubecart_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/run_FUGIO_cubecart_all.sh -------------------------------------------------------------------------------- /run_rabbitmq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WSP-LAB/FUGIO/HEAD/run_rabbitmq.sh --------------------------------------------------------------------------------