├── CVE-2025-49113 └── CVE-2025-49113.py ├── README.md ├── getfree ├── README.md ├── extract_5X.php ├── extract_7X_8X.php ├── extract_84_elf.php ├── extract_details_5X.md ├── php_5_exploit.md └── php_7_8_exploit.md ├── hash_bind_uaf ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── README.md └── src │ ├── main.rs │ ├── mqueue.rs │ ├── payload.rs │ ├── targets.rs │ └── tfm.rs └── php-bypass-bpftrace.md /CVE-2025-49113/CVE-2025-49113.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/CVE-2025-49113/CVE-2025-49113.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/README.md -------------------------------------------------------------------------------- /getfree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/getfree/README.md -------------------------------------------------------------------------------- /getfree/extract_5X.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/getfree/extract_5X.php -------------------------------------------------------------------------------- /getfree/extract_7X_8X.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/getfree/extract_7X_8X.php -------------------------------------------------------------------------------- /getfree/extract_84_elf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/getfree/extract_84_elf.php -------------------------------------------------------------------------------- /getfree/extract_details_5X.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/getfree/extract_details_5X.md -------------------------------------------------------------------------------- /getfree/php_5_exploit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/getfree/php_5_exploit.md -------------------------------------------------------------------------------- /getfree/php_7_8_exploit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/getfree/php_7_8_exploit.md -------------------------------------------------------------------------------- /hash_bind_uaf/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /hash_bind_uaf/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/hash_bind_uaf/Cargo.lock -------------------------------------------------------------------------------- /hash_bind_uaf/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/hash_bind_uaf/Cargo.toml -------------------------------------------------------------------------------- /hash_bind_uaf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/hash_bind_uaf/README.md -------------------------------------------------------------------------------- /hash_bind_uaf/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/hash_bind_uaf/src/main.rs -------------------------------------------------------------------------------- /hash_bind_uaf/src/mqueue.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/hash_bind_uaf/src/mqueue.rs -------------------------------------------------------------------------------- /hash_bind_uaf/src/payload.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/hash_bind_uaf/src/payload.rs -------------------------------------------------------------------------------- /hash_bind_uaf/src/targets.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/hash_bind_uaf/src/targets.rs -------------------------------------------------------------------------------- /hash_bind_uaf/src/tfm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/hash_bind_uaf/src/tfm.rs -------------------------------------------------------------------------------- /php-bypass-bpftrace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcfr-eth/exploits/HEAD/php-bypass-bpftrace.md --------------------------------------------------------------------------------