Skip to content

Commit

Permalink
WAF filter syntax change (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazet authored Oct 31, 2024
1 parent 408e663 commit f00b396
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions karton_sqlmap/karton_sqlmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
from artemis import http_requests, load_risk_class
from artemis.binds import Service, TaskStatus, TaskType
from artemis.config import Config
from artemis.karton_utils import check_connection_to_base_url_and_save_error
from artemis.module_base import ArtemisBase
from artemis.modules.data.static_extensions import STATIC_EXTENSIONS
from artemis.task_utils import get_target_url
Expand Down Expand Up @@ -272,7 +271,7 @@ def _expand_urls_for_scanning(url: str) -> List[Tuple[str, str]]:
)

def run(self, current_task: Task) -> None:
if not check_connection_to_base_url_and_save_error(self.db, current_task):
if not self.check_connection_to_base_url_and_save_error(current_task):
return

url = get_target_url(current_task)
Expand Down

0 comments on commit f00b396

Please sign in to comment.