Skip to content
This repository has been archived by the owner on Aug 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #111 from projectdiscovery/dev
Browse files Browse the repository at this point in the history
v2.8.7
  • Loading branch information
ehsandeep authored Jan 15, 2023
2 parents fd346b7 + dae288e commit 52dc43b
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 16 deletions.
1 change: 1 addition & 0 deletions docs/kr/templating-guide/helper-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
| line_starts_with(str string, prefix ...string) bool | 문자열의 줄이 주어진 부분 문자열로 시작하는지 확인합니다. | `line_starts_with("Hi\nHello", "He")` | `true` |
| ends_with(str string, suffix ...string) bool | 문자열이 주어진 부분 문자열로 끝나는지 확인합니다. | `ends_with("Hello", "lo")` | `true` |
| line_ends_with(str string, suffix ...string) bool | 문자열의 줄이 주어진 부분 문자열로 끝나는지 확인합니다. | `line_ends_with("Hello\nHi", "lo")` | `true` |

#### Deserialization helper functions

Nuclei는 [ysoserial](https://github.com/frohoff/ysoserial)에서 몇몇 일반적인 gadget에 대한 페이로드 생성을 허용합니다.
Expand Down
1 change: 1 addition & 0 deletions docs/template-examples/helper-functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,5 @@ requests:
75: {{ends_with("Hello", "lo")}}
76: {{line_starts_with("Hi\nHello", "He")}}
77: {{line_ends_with("Hello\nHi", "lo")}}
78: {{ip_format("169.254.169.254", 4)}}
```
Loading

0 comments on commit 52dc43b

Please sign in to comment.