From a04a3c389503a5a294f019254e9021fd8f56cda8 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 13 Aug 2024 09:42:22 +0000 Subject: [PATCH] Update api docs --- docs/api/bin.md | 6 +- docs/api/cli.md | 26 ++++++ docs/api/codec.md | 198 +++++++++++++++++++++--------------------- docs/api/crawler.md | 4 +- docs/api/fuzz.md | 10 +-- docs/api/ja3.md | 12 +-- docs/api/java.md | 18 ++-- docs/api/mmdb.md | 6 +- docs/api/openai.md | 8 +- docs/api/risk.md | 28 +++--- docs/api/simulator.md | 2 +- docs/api/suricata.md | 6 +- docs/api/systemd.md | 4 +- docs/api/yakit.md | 16 ++-- docs/api/yso.md | 92 ++++++++++---------- 15 files changed, 231 insertions(+), 205 deletions(-) diff --git a/docs/api/bin.md b/docs/api/bin.md index c3f6cac94..ddddb8983 100644 --- a/docs/api/bin.md +++ b/docs/api/bin.md @@ -28,7 +28,7 @@ #### 定义 -`Read(data any, descriptors ...*PartDescriptor) ([]ResultIf , error )` +`Read(data any, descriptors ...*PartDescriptor) ([]ResultIf any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -39,8 +39,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []ResultIf | `` | | -| error | `` | | +| []ResultIf | `any` | | +| error | `any` | | ### toBool diff --git a/docs/api/cli.md b/docs/api/cli.md index fb4e75eb1..870ece4be 100755 --- a/docs/api/cli.md +++ b/docs/api/cli.md @@ -41,6 +41,7 @@ | [cli.setMultipleSelect](#setmultipleselect) |SetMultipleSelect 是一个选项函数,设置参数是否可以多选 此选项仅在`cli.StringSlice`中生效 | | [cli.setRequired](#setrequired) |setRequired 是一个选项函数,设置参数是否必须 | | [cli.setSelectOption](#setselectoption) |setSelectOption 是一个选项函数,设置参数的下拉框选项 此选项仅在`cli.StringSlice`中生效 | +| [cli.setShortName](#setshortname) |setShortName 是一个选项函数,设置参数的短名称 | | [cli.setVerboseName](#setverbosename) |setVerboseName 是一个选项函数,设置参数的中文名 | | [cli.showGroup](#showgroup) || | [cli.showParams](#showparams) || @@ -995,6 +996,31 @@ cli.StringSlice("targets", cli.setSelectOption("下拉框选项" | r1 | `SetCliExtraParam` | | +### setShortName + +#### 详细描述 +setShortName 是一个选项函数,设置参数的短名称 +Example: +``` +cli.String("target", cli.setShortName("t")) +``` +在命令行可以使用`-t`代替`--target` + +#### 定义 + +`setShortName(shortName string) SetCliExtraParam` + +#### 参数 +|参数名|参数类型|参数解释| +|:-----------|:---------- |:-----------| +| shortName | `string` | | + +#### 返回值 +|返回值(顺序)|返回值类型|返回值解释| +|:-----------|:---------- |:-----------| +| r1 | `SetCliExtraParam` | | + + ### setVerboseName #### 详细描述 diff --git a/docs/api/codec.md b/docs/api/codec.md index 558737fa1..ea50bbca3 100755 --- a/docs/api/codec.md +++ b/docs/api/codec.md @@ -137,7 +137,7 @@ #### 定义 -`AESCBCDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`AESCBCDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -149,8 +149,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESCBCDecryptWithPKCS7Padding @@ -160,7 +160,7 @@ #### 定义 -`AESCBCDecryptWithPKCS7Padding(key []byte, i any, iv []byte) ([]byte , error )` +`AESCBCDecryptWithPKCS7Padding(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -172,8 +172,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESCBCDecryptWithZeroPadding @@ -183,7 +183,7 @@ #### 定义 -`AESCBCDecryptWithZeroPadding(key []byte, i any, iv []byte) ([]byte , error )` +`AESCBCDecryptWithZeroPadding(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -195,8 +195,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESCBCEncrypt @@ -206,7 +206,7 @@ #### 定义 -`AESCBCEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`AESCBCEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -218,8 +218,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESCBCEncryptWithPKCS7Padding @@ -229,7 +229,7 @@ #### 定义 -`AESCBCEncryptWithPKCS7Padding(key []byte, i any, iv []byte) ([]byte , error )` +`AESCBCEncryptWithPKCS7Padding(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -241,8 +241,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESCBCEncryptWithZeroPadding @@ -252,7 +252,7 @@ #### 定义 -`AESCBCEncryptWithZeroPadding(key []byte, i any, iv []byte) ([]byte , error )` +`AESCBCEncryptWithZeroPadding(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -264,8 +264,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESDecrypt @@ -275,7 +275,7 @@ #### 定义 -`AESDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`AESDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -287,8 +287,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESECBDecrypt @@ -298,7 +298,7 @@ #### 定义 -`AESECBDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`AESECBDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -310,8 +310,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESECBDecryptWithPKCS7Padding @@ -321,7 +321,7 @@ #### 定义 -`AESECBDecryptWithPKCS7Padding(key []byte, i any, iv []byte) ([]byte , error )` +`AESECBDecryptWithPKCS7Padding(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -333,8 +333,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESECBDecryptWithZeroPadding @@ -344,7 +344,7 @@ #### 定义 -`AESECBDecryptWithZeroPadding(key []byte, i any, iv []byte) ([]byte , error )` +`AESECBDecryptWithZeroPadding(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -356,8 +356,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESECBEncrypt @@ -367,7 +367,7 @@ #### 定义 -`AESECBEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`AESECBEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -379,8 +379,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESECBEncryptWithPKCS7Padding @@ -390,7 +390,7 @@ #### 定义 -`AESECBEncryptWithPKCS7Padding(key []byte, i any, iv []byte) ([]byte , error )` +`AESECBEncryptWithPKCS7Padding(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -402,8 +402,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESECBEncryptWithZeroPadding @@ -413,7 +413,7 @@ #### 定义 -`AESECBEncryptWithZeroPadding(key []byte, i any, iv []byte) ([]byte , error )` +`AESECBEncryptWithZeroPadding(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -425,8 +425,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESEncrypt @@ -436,7 +436,7 @@ #### 定义 -`AESEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`AESEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -448,8 +448,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### AESGCMDecrypt @@ -637,7 +637,7 @@ #### 定义 -`DESCBCDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`DESCBCDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -649,8 +649,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### DESCBCEncrypt @@ -660,7 +660,7 @@ #### 定义 -`DESCBCEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`DESCBCEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -672,8 +672,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### DESDecrypt @@ -683,7 +683,7 @@ #### 定义 -`DESDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`DESDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -695,8 +695,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### DESECBDecrypt @@ -750,7 +750,7 @@ #### 定义 -`DESEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`DESEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -762,8 +762,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### DecodeASCII @@ -950,7 +950,7 @@ always true. #### 定义 -`DoubleDecodeUrl(i string) (string , error )` +`DoubleDecodeUrl(i string) (string any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -960,8 +960,8 @@ always true. #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| string | `` | | -| error | `` | | +| string | `any` | | +| error | `any` | | ### DoubleEncodeUrl @@ -2228,7 +2228,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4CBCDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4CBCDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2240,8 +2240,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4CBCEncrypt @@ -2251,7 +2251,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4CBCEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4CBCEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2263,8 +2263,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4CFBDecrypt @@ -2274,7 +2274,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4CFBDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4CFBDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2286,8 +2286,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4CFBEncrypt @@ -2297,7 +2297,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4CFBEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4CFBEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2309,8 +2309,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4EBCDecrypt @@ -2320,7 +2320,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4EBCDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4EBCDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2332,8 +2332,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4EBCEncrypt @@ -2343,7 +2343,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4EBCEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4EBCEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2355,8 +2355,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4ECBDecrypt @@ -2366,7 +2366,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4ECBDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4ECBDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2378,8 +2378,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4ECBEncrypt @@ -2389,7 +2389,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4ECBEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4ECBEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2401,8 +2401,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4GCMDecrypt @@ -2497,7 +2497,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4OFBDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4OFBDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2509,8 +2509,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### Sm4OFBEncrypt @@ -2520,7 +2520,7 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 定义 -`Sm4OFBEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`Sm4OFBEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2532,8 +2532,8 @@ enc, err := tls.EncryptWithPkcs1v15(pemBytes, "hello") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### StrconvQuote @@ -2589,7 +2589,7 @@ one-character string.) #### 定义 -`TripleDESCBCDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`TripleDESCBCDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2601,8 +2601,8 @@ one-character string.) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### TripleDESCBCEncrypt @@ -2612,7 +2612,7 @@ one-character string.) #### 定义 -`TripleDESCBCEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`TripleDESCBCEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2624,8 +2624,8 @@ one-character string.) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### TripleDESDecrypt @@ -2635,7 +2635,7 @@ one-character string.) #### 定义 -`TripleDESDecrypt(key []byte, i any, iv []byte) ([]byte , error )` +`TripleDESDecrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2647,8 +2647,8 @@ one-character string.) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### TripleDESECBDecrypt @@ -2702,7 +2702,7 @@ one-character string.) #### 定义 -`TripleDESEncrypt(key []byte, i any, iv []byte) ([]byte , error )` +`TripleDESEncrypt(key []byte, i any, iv []byte) ([]byte any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -2714,8 +2714,8 @@ one-character string.) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []byte | `` | | -| error | `` | | +| []byte | `any` | | +| error | `any` | | ### UTF8ToGB18030 diff --git a/docs/api/crawler.md b/docs/api/crawler.md index 5e9685821..db63974a9 100755 --- a/docs/api/crawler.md +++ b/docs/api/crawler.md @@ -584,7 +584,7 @@ crawler.Start("https://example.com", crawler.proxy("http://127.0.0.1 #### 定义 -`responseTimeout(c *Config)` +`responseTimeout(c *Config) any` #### 参数 |参数名|参数类型|参数解释| @@ -594,7 +594,7 @@ crawler.Start("https://example.com", crawler.proxy("http://127.0.0.1 #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### timeout diff --git a/docs/api/fuzz.md b/docs/api/fuzz.md index 1187181d9..2d5455e8f 100755 --- a/docs/api/fuzz.md +++ b/docs/api/fuzz.md @@ -289,7 +289,7 @@ fuzz #### 定义 -`UrlsToHTTPRequests(target ...any) (*FuzzHTTPRequestBatch , error )` +`UrlsToHTTPRequests(target ...any) (*FuzzHTTPRequestBatch any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -299,8 +299,8 @@ fuzz #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| *FuzzHTTPRequestBatch | `` | | -| error | `` | | +| *FuzzHTTPRequestBatch | `any` | | +| error | `any` | | ### WithConcurrentLimit @@ -470,7 +470,7 @@ fuzz #### 定义 -`showTag(config *buildFuzzHTTPRequestConfig)` +`showTag(config *buildFuzzHTTPRequestConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -480,6 +480,6 @@ fuzz #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | diff --git a/docs/api/ja3.md b/docs/api/ja3.md index af606c4b4..68d555cfe 100755 --- a/docs/api/ja3.md +++ b/docs/api/ja3.md @@ -36,7 +36,7 @@ #### 定义 -`ParseJA3(ja3FullString string) (*JA3 , error )` +`ParseJA3(ja3FullString string) (*JA3 any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -46,8 +46,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| *JA3 | `` | | -| error | `` | | +| *JA3 | `any` | | +| error | `any` | | ### ParseJA3S @@ -57,7 +57,7 @@ #### 定义 -`ParseJA3S(ja3sFullString string) (*JA3S , error )` +`ParseJA3S(ja3sFullString string) (*JA3S any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -67,8 +67,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| *JA3S | `` | | -| error | `` | | +| *JA3S | `any` | | +| error | `any` | | ### ParseJA3ToClientHelloSpec diff --git a/docs/api/java.md b/docs/api/java.md index 8dfd0c46d..6f593792e 100755 --- a/docs/api/java.md +++ b/docs/api/java.md @@ -43,7 +43,7 @@ #### 定义 -`FromJson(raw []byte) ([]JavaSerializable , error )` +`FromJson(raw []byte) ([]JavaSerializable any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -53,8 +53,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []JavaSerializable | `` | | -| error | `` | | +| []JavaSerializable | `any` | | +| error | `any` | | ### MarshalJavaObjects @@ -611,7 +611,7 @@ #### 定义 -`ParseHexJavaObjectStream(raw string) ([]JavaSerializable , error )` +`ParseHexJavaObjectStream(raw string) ([]JavaSerializable any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -621,8 +621,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []JavaSerializable | `` | | -| error | `` | | +| []JavaSerializable | `any` | | +| error | `any` | | ### ParseJavaObjectStream @@ -632,7 +632,7 @@ #### 定义 -`ParseJavaObjectStream(raw []byte) ([]JavaSerializable , error )` +`ParseJavaObjectStream(raw []byte) ([]JavaSerializable any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -642,8 +642,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []JavaSerializable | `` | | -| error | `` | | +| []JavaSerializable | `any` | | +| error | `any` | | ### ToJson diff --git a/docs/api/mmdb.md b/docs/api/mmdb.md index 575b22323..60002b31c 100755 --- a/docs/api/mmdb.md +++ b/docs/api/mmdb.md @@ -14,7 +14,7 @@ #### 定义 -`Open(file string) (*Reader , error )` +`Open(file string) (*Reader any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -24,8 +24,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| *Reader | `` | | -| error | `` | | +| *Reader | `any` | | +| error | `any` | | ### QueryIPCity diff --git a/docs/api/openai.md b/docs/api/openai.md index 74242abbc..4ad5f4ea7 100755 --- a/docs/api/openai.md +++ b/docs/api/openai.md @@ -392,7 +392,7 @@ openai.functionRequired("location")) #### 定义 -`localAPIKey(client *Client)` +`localAPIKey(client *Client) any` #### 参数 |参数名|参数类型|参数解释| @@ -402,7 +402,7 @@ openai.functionRequired("location")) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### model @@ -656,7 +656,7 @@ openai.userMessage("What is the weather like today?"), #### 定义 -`yakDomain(client *Client)` +`yakDomain(client *Client) any` #### 参数 |参数名|参数类型|参数解释| @@ -666,6 +666,6 @@ openai.userMessage("What is the weather like today?"), #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | diff --git a/docs/api/risk.md b/docs/api/risk.md index f35ca4cbc..87a8922b4 100755 --- a/docs/api/risk.md +++ b/docs/api/risk.md @@ -57,7 +57,7 @@ #### 定义 -`CheckDNSLogByToken(token string, timeout ...float64) ([]*tpb.DNSLogEvent , error )` +`CheckDNSLogByToken(token string, timeout ...float64) ([]*tpb.DNSLogEvent any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -68,8 +68,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []*tpb.DNSLogEvent | `` | | -| error | `` | | +| []*tpb.DNSLogEvent | `any` | | +| error | `any` | | ### CheckHTTPLogByToken @@ -79,7 +79,7 @@ #### 定义 -`CheckHTTPLogByToken(token string, timeout ...float64) ([]*tpb.HTTPRequestTriggerNotification , error )` +`CheckHTTPLogByToken(token string, timeout ...float64) ([]*tpb.HTTPRequestTriggerNotification any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -90,8 +90,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []*tpb.HTTPRequestTriggerNotification | `` | | -| error | `` | | +| []*tpb.HTTPRequestTriggerNotification | `any` | | +| error | `any` | | ### CheckICMPTriggerByLength @@ -101,7 +101,7 @@ #### 定义 -`CheckICMPTriggerByLength(i int) (*tpb.ICMPTriggerNotification , error )` +`CheckICMPTriggerByLength(i int) (*tpb.ICMPTriggerNotification any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -111,8 +111,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| *tpb.ICMPTriggerNotification | `` | | -| error | `` | | +| *tpb.ICMPTriggerNotification | `any` | | +| error | `any` | | ### CheckRandomTriggerByToken @@ -122,7 +122,7 @@ #### 定义 -`CheckRandomTriggerByToken(t string) (*tpb.RandomPortTriggerEvent , error )` +`CheckRandomTriggerByToken(t string) (*tpb.RandomPortTriggerEvent any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -132,8 +132,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| *tpb.RandomPortTriggerEvent | `` | | -| error | `` | | +| *tpb.RandomPortTriggerEvent | `any` | | +| error | `any` | | ### CheckServerReachable @@ -652,7 +652,7 @@ #### 定义 -`ignore(r *schema.Risk)` +`ignore(r *schema.Risk) any` #### 参数 |参数名|参数类型|参数解释| @@ -662,7 +662,7 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### level diff --git a/docs/api/simulator.md b/docs/api/simulator.md index 52e0c3f87..3d64f0645 100755 --- a/docs/api/simulator.md +++ b/docs/api/simulator.md @@ -7,7 +7,7 @@ htmlChangeMode|(simulator.loginDetectMode) 1| leaklessDefault|(simulator.LeaklessMode) 0| leaklessOff|(simulator.LeaklessMode) -1| leaklessOn|(simulator.LeaklessMode) 1| -simple|(map[string]interface {}) map[string]interface {}{"bodyModifyTarget": "body", "bodyReplaceTarget": "bodyReplace", "createBrowser": (func(...simple.BrowserConfigOpt) *simple.VBrowser)(0x26c92c0), "headersModifyTarget": "headers", "headless": (func(bool) simple.BrowserConfigOpt)(0x26c8d00), "hostModifyTarget": "host", "noSandBox": (func(bool) simple.BrowserConfigOpt)(0x26c8c80), "proxy": (func(string, ...string) simple.BrowserConfigOpt)(0x26c8ac0), "requestModify": (func(string, simple.ModifyTarget, interface {}) simple.BrowserConfigOpt)(0x26c9020), "responseModify": (func(string, simple.ModifyTarget, interface {}) simple.BrowserConfigOpt)(0x26c8d80), "wsAddress": (func(string) simple.BrowserConfigOpt)(0x26c89e0)}| +simple|(map[string]interface {}) map[string]interface {}{"bodyModifyTarget": "body", "bodyReplaceTarget": "bodyReplace", "createBrowser": (func(...simple.BrowserConfigOpt) *simple.VBrowser)(0x26d9840), "headersModifyTarget": "headers", "headless": (func(bool) simple.BrowserConfigOpt)(0x26d9280), "hostModifyTarget": "host", "noSandBox": (func(bool) simple.BrowserConfigOpt)(0x26d9200), "proxy": (func(string, ...string) simple.BrowserConfigOpt)(0x26d9040), "requestModify": (func(string, simple.ModifyTarget, interface {}) simple.BrowserConfigOpt)(0x26d95a0), "responseModify": (func(string, simple.ModifyTarget, interface {}) simple.BrowserConfigOpt)(0x26d9300), "wsAddress": (func(string) simple.BrowserConfigOpt)(0x26d8f60)}| urlChangeMode|(simulator.loginDetectMode) 0| |函数名|函数描述/介绍| diff --git a/docs/api/suricata.md b/docs/api/suricata.md index f7893f06b..0b6ff8f2c 100755 --- a/docs/api/suricata.md +++ b/docs/api/suricata.md @@ -81,7 +81,7 @@ #### 定义 -`ParseSuricata(data string, envs ...string) ([]*Rule , error )` +`ParseSuricata(data string, envs ...string) ([]*Rule any, error any)` #### 参数 |参数名|参数类型|参数解释| @@ -92,8 +92,8 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| []*Rule | `` | | -| error | `` | | +| []*Rule | `any` | | +| error | `any` | | ### TrafficGenerator diff --git a/docs/api/systemd.md b/docs/api/systemd.md index 6e92d474f..739117312 100755 --- a/docs/api/systemd.md +++ b/docs/api/systemd.md @@ -274,7 +274,7 @@ #### 定义 -`service_kill9(c *SystemdServiceConfig)` +`service_kill9(c *SystemdServiceConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -284,7 +284,7 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### service_kill_mode diff --git a/docs/api/yakit.md b/docs/api/yakit.md index a2135d685..94f9cc2f7 100755 --- a/docs/api/yakit.md +++ b/docs/api/yakit.md @@ -69,12 +69,12 @@ #### 定义 -`AutoInitYakit()` +`AutoInitYakit() any` #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### Debug @@ -120,7 +120,7 @@ #### 定义 -`EnableTable(tableName string, columns []string)` +`EnableTable(tableName string, columns []string) any` #### 参数 |参数名|参数类型|参数解释| @@ -131,7 +131,7 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### EnableText @@ -156,7 +156,7 @@ #### 定义 -`EnableWebsiteTrees(targets string)` +`EnableWebsiteTrees(targets string) any` #### 参数 |参数名|参数类型|参数解释| @@ -166,7 +166,7 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### Error @@ -926,7 +926,7 @@ #### 定义 -`StatusCard(id string, data any, tags ...string)` +`StatusCard(id string, data any, tags ...string) any` #### 参数 |参数名|参数类型|参数解释| @@ -938,7 +938,7 @@ #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### Stream diff --git a/docs/api/yso.md b/docs/api/yso.md index f918d92a4..62dc67615 100755 --- a/docs/api/yso.md +++ b/docs/api/yso.md @@ -2221,7 +2221,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.evilClassName("EvilClass")) #### 定义 -`obfuscationClassConstantPool(config *ClassGenConfig)` +`obfuscationClassConstantPool(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2231,7 +2231,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.evilClassName("EvilClass")) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### springEchoBody @@ -2241,7 +2241,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.evilClassName("EvilClass")) #### 定义 -`springEchoBody(config *ClassGenConfig)` +`springEchoBody(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2251,7 +2251,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.evilClassName("EvilClass")) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### springHeader @@ -2326,7 +2326,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useSpringEchoTemplate(),yso.springParam(& #### 定义 -`springRuntimeExecAction(config *ClassGenConfig)` +`springRuntimeExecAction(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2336,7 +2336,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useSpringEchoTemplate(),yso.springParam(& #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### tcpReverseHost @@ -2446,7 +2446,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseTemplate(),yso.tcpReverseHos #### 定义 -`threeBytesCharString(ctx *yserx.MarshalContext)` +`threeBytesCharString(ctx *yserx.MarshalContext) any` #### 参数 |参数名|参数类型|参数解释| @@ -2456,7 +2456,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseTemplate(),yso.tcpReverseHos #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### twoBytesCharString @@ -2466,7 +2466,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseTemplate(),yso.tcpReverseHos #### 定义 -`twoBytesCharString(ctx *yserx.MarshalContext)` +`twoBytesCharString(ctx *yserx.MarshalContext) any` #### 参数 |参数名|参数类型|参数解释| @@ -2476,7 +2476,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseTemplate(),yso.tcpReverseHos #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useBase64BytesClass @@ -2578,7 +2578,7 @@ gadgetObj,err = yso.GetCommonsBeanutils1JavaObject(yso.useBytesEvilClass(bytesCo #### 定义 -`useClassMultiEchoTemplate(config *ClassGenConfig)` +`useClassMultiEchoTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2588,7 +2588,7 @@ gadgetObj,err = yso.GetCommonsBeanutils1JavaObject(yso.useBytesEvilClass(bytesCo #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useClassParam @@ -2619,7 +2619,7 @@ gadgetObj,err = yso.GetCommonsBeanutils1JavaObject(yso.useBytesEvilClass(bytesCo #### 定义 -`useConstructorExecutor(config *ClassGenConfig)` +`useConstructorExecutor(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2629,7 +2629,7 @@ gadgetObj,err = yso.GetCommonsBeanutils1JavaObject(yso.useBytesEvilClass(bytesCo #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useDNSLogEvilClass @@ -2669,7 +2669,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useDnslogEvilClass("dnslog.com")) #### 定义 -`useDNSlogTemplate(config *ClassGenConfig)` +`useDNSlogTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2679,7 +2679,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useDnslogEvilClass("dnslog.com")) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useEchoBody @@ -2689,7 +2689,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useDnslogEvilClass("dnslog.com")) #### 定义 -`useEchoBody(config *ClassGenConfig)` +`useEchoBody(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2699,7 +2699,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useDnslogEvilClass("dnslog.com")) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useHeaderEchoEvilClass @@ -2709,7 +2709,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useDnslogEvilClass("dnslog.com")) #### 定义 -`useHeaderEchoEvilClass(config *ClassGenConfig)` +`useHeaderEchoEvilClass(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2719,7 +2719,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useDnslogEvilClass("dnslog.com")) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useHeaderEchoTemplate @@ -2729,7 +2729,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useDnslogEvilClass("dnslog.com")) #### 定义 -`useHeaderEchoTemplate(config *ClassGenConfig)` +`useHeaderEchoTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2739,7 +2739,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useDnslogEvilClass("dnslog.com")) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useHeaderParam @@ -2784,7 +2784,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useSpringEchoTemplate(),yso.springHeader( #### 定义 -`useModifyTomcatMaxHeaderSizeTemplate(config *ClassGenConfig)` +`useModifyTomcatMaxHeaderSizeTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2794,7 +2794,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useSpringEchoTemplate(),yso.springHeader( #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useMultiEchoEvilClass @@ -2804,7 +2804,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useSpringEchoTemplate(),yso.springHeader( #### 定义 -`useMultiEchoEvilClass(config *ClassGenConfig)` +`useMultiEchoEvilClass(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2814,7 +2814,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useSpringEchoTemplate(),yso.springHeader( #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useParam @@ -2884,7 +2884,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useProcessBuilderExecEvilClass("whoam #### 定义 -`useProcessBuilderExecTemplate(config *ClassGenConfig)` +`useProcessBuilderExecTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2894,7 +2894,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useProcessBuilderExecEvilClass("whoam #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useProcessImplExecEvilClass @@ -2934,7 +2934,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useProcessImplExecEvilClass("whoami&# #### 定义 -`useProcessImplExecTemplate(config *ClassGenConfig)` +`useProcessImplExecTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2944,7 +2944,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useProcessImplExecEvilClass("whoami&# #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useRuntimeExecEvilClass @@ -2984,7 +2984,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useRuntimeExecEvilClass("whoami") #### 定义 -`useRuntimeExecTemplate(config *ClassGenConfig)` +`useRuntimeExecTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -2994,7 +2994,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useRuntimeExecEvilClass("whoami") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useSleepEvilClass @@ -3004,7 +3004,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useRuntimeExecEvilClass("whoami") #### 定义 -`useSleepEvilClass(config *ClassGenConfig)` +`useSleepEvilClass(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -3014,7 +3014,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useRuntimeExecEvilClass("whoami") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useSleepTemplate @@ -3024,7 +3024,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useRuntimeExecEvilClass("whoami") #### 定义 -`useSleepTemplate(config *ClassGenConfig)` +`useSleepTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -3034,7 +3034,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useRuntimeExecEvilClass("whoami") #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useSleepTime @@ -3072,7 +3072,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useSleepTemplate(),yso.useSleepTime(5)) / #### 定义 -`useSpringEchoTemplate(config *ClassGenConfig)` +`useSpringEchoTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -3082,7 +3082,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useSleepTemplate(),yso.useSleepTime(5)) / #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useTcpReverseEvilClass @@ -3165,7 +3165,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseShellEvilClass(host,8080)) #### 定义 -`useTcpReverseShellTemplate(config *ClassGenConfig)` +`useTcpReverseShellTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -3175,7 +3175,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseShellEvilClass(host,8080)) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useTcpReverseTemplate @@ -3185,7 +3185,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseShellEvilClass(host,8080)) #### 定义 -`useTcpReverseTemplate(config *ClassGenConfig)` +`useTcpReverseTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -3195,7 +3195,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseShellEvilClass(host,8080)) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useTemplate @@ -3225,7 +3225,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseShellEvilClass(host,8080)) #### 定义 -`useTomcatEchoEvilClass(config *ClassGenConfig)` +`useTomcatEchoEvilClass(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -3235,7 +3235,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseShellEvilClass(host,8080)) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | | ### useTomcatEchoTemplate @@ -3245,7 +3245,7 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseShellEvilClass(host,8080)) #### 定义 -`useTomcatEchoTemplate(config *ClassGenConfig)` +`useTomcatEchoTemplate(config *ClassGenConfig) any` #### 参数 |参数名|参数类型|参数解释| @@ -3255,6 +3255,6 @@ yso.GetCommonsBeanutils1JavaObject(yso.useTcpReverseShellEvilClass(host,8080)) #### 返回值 |返回值(顺序)|返回值类型|返回值解释| |:-----------|:---------- |:-----------| -| r1 | `` | | +| r1 | `any` | |