Skip to content

Commit

Permalink
Bug fix: wrong call
Browse files Browse the repository at this point in the history
  • Loading branch information
Marven11 committed Dec 26, 2023
1 parent d755fc8 commit 37f5069
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions fenjing/webui.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
OS_POPEN_READ,
)
from .cracker import Cracker
from .options import Options
from .form import get_form, Form
from .full_payload_gen import FullPayloadGen
from .requester import Requester
Expand Down Expand Up @@ -139,9 +140,11 @@ def run(self):
self.cracker = Cracker(
self.submitter,
self.callback,
detect_mode=self.detect_mode,
environment=self.environment,
replaced_keyword_strategy=self.replaced_keyword_strategy,
options=Options(
detect_mode=self.detect_mode,
environment=self.environment,
replaced_keyword_strategy=self.replaced_keyword_strategy,
)
)
if not self.cracker.has_respond():
continue
Expand Down

0 comments on commit 37f5069

Please sign in to comment.