Home PHP Libraries Other libraries http-mock-master simulates HTTP request library
http-mock-master simulates HTTP request library
<?php
namespace GenPhrase;
use GenPhrase\WordlistHandler\WordlistHandlerInterface as WordlistHandlerInterface;
use GenPhrase\WordlistHandler\Filesystem as WordlistHandler;
class Password
{
    protected $_wordlistHandler = null;
    protected $_wordModifier = null;
    
    /**
     * @var RandomInterface
     */
    protected $_randomProvider = null;
    /**
     * @var string The separator characters. Must be single-byte characters.
     */
    protected $_separators = '-_!$&*+=23456789';
    /**
     * @var bool Whether to _always_ use separator characters or not (even if using them would not "make sense").
     */

Please read the tool usage guide carefully before use:
1. Install jdk1.6 or above;
2. The GUI consists of three parts, port settings, URL and response file path settings, and console;
3. The port is set to the local port that needs to be monitored, and the range is 1-65532;
4. The URL and response file path settings are a table with 2 columns and 9 rows. Each row includes two configurations and two configurations. The name is easy to understand, just fill it in correctly;
5. Note: After the input is completed, you need to click on other rows of the form to cancel the mouse focus, so that the tool can recognize that the current input box has been modified. Under OSX system The shortcut key for copy and paste is still ctr c/v;
6. The console is divided into two parts, three buttons and a text display area. The functions of the buttons can be understood from the names. The text display area displays the received HTTP request URL, header field, message body, right-click to clear button;
7. If you need to listen to multiple ports, copy multiple jar files and open them.

Disclaimer

All resources on this site are contributed by netizens or reprinted by major download sites. Please check the integrity of the software yourself! All resources on this site are for learning reference only. Please do not use them for commercial purposes. Otherwise, you will be responsible for all consequences! If there is any infringement, please contact us to delete it. Contact information: admin@php.cn

Related Article

Curl library and HTTP request technology in PHP Curl library and HTTP request technology in PHP

11 May 2023

With the popularity and development of the Internet, and the increasing number and complexity of websites, the development of network-oriented applications has attracted more and more attention. In this process, HTTP request technology and Curl library have become important technologies that developers must master. This article will introduce the basic knowledge, application scenarios and usage of the Curl library and HTTP request technology in PHP. 1. HTTP request technology 1.1 HTTP protocol HyperTextTransferProtocol (HTT

PHP simulates XmlHttpRequest in asp to implement http request code_PHP tutorial PHP simulates XmlHttpRequest in asp to implement http request code_PHP tutorial

21 Jul 2016

PHP simulates the code of XmlHttpRequest in ASP to implement http request. Class name: HttpRequest($url="",$method="GET",$useSocket=0) //$url is the requested address; the default request method is GET; $useSocket defaults to 0, use the fsockopen method, if set If it is 1 then use

How to send HTTP request using axios library in uniapp How to send HTTP request using axios library in uniapp

20 Oct 2023

How to send HTTP request using axios library in uniapp As mobile applications continue to develop, data interaction between client and server becomes more and more important. Sending HTTP requests is one of the key steps to achieve data interaction. In front-end development, axios is a popular HTTP request library that simplifies the process of sending requests and provides a better development experience. uniapp is a development framework that supports multiple platforms, which can help developers quickly build cross-platform applications. uni

Implementing beauty picture wall using PHP HTTP request library Requests_PHP tutorial Implementing beauty picture wall using PHP HTTP request library Requests_PHP tutorial

13 Jul 2016

Use PHP's HTTP request library Requests to implement the beauty picture wall. Use PHP's HTTP request library Requests to implement a beauty picture wall. This article mainly introduces the method of using PHP's HTTP request library Requests to implement a beauty picture wall. It is very simple and practical.

Axios source code analysis how to implement an HTTP request library Axios source code analysis how to implement an HTTP request library

25 Jul 2018

The content shared with you in this article is about how to implement an HTTP request library through axios source code analysis. The content is very detailed. Next, let’s take a look at the specific content. I hope it can help everyone.

nginx js/css merge request (nginx-http-concat-master) module shoemaster master kangmaste nginx js/css merge request (nginx-http-concat-master) module shoemaster master kangmaste

29 Jul 2016

CONCAT,master:nginx js/css merge request (nginx-http-concat-master) module: nginx-http-concat-master is a file merging module developed by Taobao for nginx. It is mainly used to merge front-end code to reduce the number of http requests. If nginx is deployed in your application environment, you can consider trying this module to reduce the number of requests. The nginx-http-concat-master module mainly contains two configuration parameters, concat and concat_unique. concat is used to turn on or off the request merging function.

See all articles