laxity7/ddos-guard-bypass
最新稳定版本:v1.0.0
Composer 安装命令:
composer require laxity7/ddos-guard-bypass
包简介
DDoS-Guard Bypass
README 文档
README
This PHP package provides functionality for sending HTTP requests to servers protected by DDos-Guard.net. The package allows bypassing DDos-Guard protection and accessing the necessary resources.
Features:
- Sending GET, POST and other requests to protected servers
- Bypassing DDos-Guard protection mechanisms only for legitimate requests
- Support for working with cookies and sessions
Note: This package does not allow DDoS attacks on the service, but allows you to send requests with a 2-second wait and receive legitimate data.
Install
Install via composer
composer require laxity7/ddos-guard-bypass
How to use
require 'vendor/autoload.php'; use Laxity7\DdosGuardBypass\DdosGuardBypass; use Laxity7\DdosGuardBypass\BypassConfig; $config = new BypassConfig(); $config->cookiesFile = __DIR__ . '/cookies.json'; $config->headers = ['Authorization' => 'Bearer secret-token']; $client = new DdosGuardBypass($config); $result = $client->get('https://example.com/protected-resource'); if ($result->isSuccess()) { echo $result->getResponse()->getBody()->getContents(); }
License
This project is distributed under the MIT license.
统计信息
- 总下载量: 87
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-07-21