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

How to Perform an HTTP POST Request Using PHP's cURL Library? How to Perform an HTTP POST Request Using PHP's cURL Library?

28 Dec 2024

PHP, cURL, and HTTP POSTThis question seeks guidance on performing an HTTP POST request using PHP's cURL library. Specifically, the goal is to...

Which Python HTTP Request Library is Best: urllib, urllib2, urllib3, or Requests? Which Python HTTP Request Library is Best: urllib, urllib2, urllib3, or Requests?

07 Dec 2024

Comparison of HTTP Request Modules in Python: urllib, urllib2, urllib3, and RequestsIn Python, there are several modules available for making HTTP...

Which Python HTTP Request Library is Best for You: urllib, urllib2, urllib3, or Requests? Which Python HTTP Request Library is Best for You: urllib, urllib2, urllib3, or Requests?

27 Nov 2024

Understanding the Nuances of urllib, urllib2, urllib3, and RequestsIn the Python universe, handling HTTP requests involves a choice among several...

Which Python HTTP Request Library is Right for My Project: urllib, urllib2, urllib3, or Requests? Which Python HTTP Request Library is Right for My Project: urllib, urllib2, urllib3, or Requests?

05 Dec 2024

Comparing urllib, urllib2, urllib3, and Requests in PythonPython offers several modules for handling HTTP requests: urllib, urllib2, urllib3, and...

How Do I Link Static Libraries That Depend on Other Static Libraries? How Do I Link Static Libraries That Depend on Other Static Libraries?

13 Dec 2024

Linking Static Libraries to Other Static Libraries: A Comprehensive ApproachStatic libraries provide a convenient mechanism to package reusable...

How to Silence TensorFlow\'s Debugging Output? How to Silence TensorFlow\'s Debugging Output?

28 Oct 2024

Suppression of Tensorflow Debugging OutputTensorflow prints extensive information about loaded libraries, found devices, and other debugging data...

See all articles