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

v2.8.7 #111

Merged
merged 5 commits into from
Jan 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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