Update readme

This commit is contained in:
AnonymousUser
2020-10-27 19:02:01 +08:00
parent edeb263712
commit 570fc1ed54
2 changed files with 28 additions and 28 deletions

View File

@@ -12,7 +12,7 @@ Read Chinese simplified version ([README_zh](README_zh.md)).
The plugin can custom regular expression to match HTTP response messages. You can decide for yourself whether the corresponding request that meets the custom regular expression match needs to be highlighted and information extracted.
**Note**The use of HaE requires a basic regular expression foundation for testers. Since the Java regular expression library is not as elegant or convenient as Python, when using regular expressions, HaE requires users to use `()` to extract what they need The expression content contains; for example, if you want to match a response message of a Shiro application, the normal matching rule is `rememberMe=delete`, if you want to extract this content, you need to become `(rememberMe=delete)`.
**Note**: The use of HaE requires a basic regular expression foundation for testers. Since the Java regular expression library is not as elegant or convenient as Python, when using regular expressions, HaE requires users to use `()` to extract what they need The expression content contains; for example, if you want to match a response message of a Shiro application, the normal matching rule is `rememberMe=delete`, if you want to extract this content, you need to become `(rememberMe=delete)`.
## Instructions
@@ -32,12 +32,12 @@ HaE supports three actions:
2. New: Add a new rule will automatically add a row of table data, click or double-click to modify the data to automatically save;
3. Delete: When you click to select a rule, press this button to delete the rule.
**Note**`HaE's operations` are based on the form UI, and all operations will be automatically saved.
**Note**: `HaE's operations` are based on the form UI, and all operations will be automatically saved.
## Plugin Advantages
1. Multi-option custom adaptation requirements;
2. Multi-color classification (colors of BurpSuite)`red, orange, yellow, green, cyan, blue, pink, magenta, gray`;
2. Multi-color classification (colors of BurpSuite): `red, orange, yellow, green, cyan, blue, pink, magenta, gray`;
3. Color upgrade algorithm: **Two regulars expression, the colors are both orange, if the request are matched these, it will be upgraded to red.**
4. The configuration file format uses JSON format, the format is
```
@@ -62,7 +62,7 @@ Some regular expression are not ideal in actual combat application scenarios.
There will be some false positives when regular expression matching mobile phone numbers (pure numbers), the mobile phone number processing can be solved:
Original regular expression
Original regular expression:
```
1[3-9]\d{9}
@@ -79,13 +79,13 @@ The mobile phone number required to be matched cannot be a number from 0-9.
### Include Regular Expression List
Chinese ID-NumberFrom: https://github.com/gh0stkey/HaE/issues/3
Chinese ID-NumberFrom: https://github.com/gh0stkey/HaE/issues/3:
```
[^0-9]([1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx])|([1-9]\d{5}\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{2}[0-9Xx])[^0-9]
```
Email Address
Email Address:
```
([\w-]+(?:\.[\w-]+)*@(?:[\w](?:[\w-]*[\w])?\.)+[\w](?:[\w-]*[\w])?)