Skip to content

Commit

Permalink
Song/fix/shielding payload (yaklang#1597)
Browse files Browse the repository at this point in the history
* feat: 前端不查payload

* feat: webfuzzer显示最大数量1000000

* feat: 还原

* del: log
  • Loading branch information
song-xiao-lin authored Apr 19, 2024
1 parent 150f38e commit 3d26490
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1009,11 +1009,13 @@ export const HTTPFlowTable = React.memo<HTTPFlowTableProp>((props) => {

// 查询数据
updateQueryParams(query)

ipcRenderer
.invoke("QueryHTTPFlows", query)
.then((rsp: YakQueryHTTPFlowResponse) => {
const resData = rsp?.Data || []
const newData: HTTPFlow[] = getClassNameData(resData)

if (type === "top") {
if (newData.length <= 0) {
// 没有数据
Expand Down Expand Up @@ -1793,7 +1795,7 @@ export const HTTPFlowTable = React.memo<HTTPFlowTableProp>((props) => {
dataKey: "RequestSizeVerbose",
// fixed: "right",
enableDrag: false,
width: 200,
width: 200
}
const action: ColumnsTypeProps = {
title: "操作",
Expand Down
2 changes: 1 addition & 1 deletion app/renderer/src/main/src/pages/fuzzer/HTTPFuzzerPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ export const defaultAdvancedConfigValue: AdvancedConfigValueProps = {
}

// WebFuzzer表格最多显示多少数据
export const FuzzerTableMaxData = 20000
export const FuzzerTableMaxData = 1000000
export const defaultAdvancedConfigShow: AdvancedConfigShowProps = {
config: true,
rule: true
Expand Down

0 comments on commit 3d26490

Please sign in to comment.