Skip to content

Commit

Permalink
iMore dependabot and version bumps (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
kazet authored Aug 1, 2023
1 parent 42a060a commit fe7d6f0
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,13 @@ updates:
directory: "/"
schedule:
interval: "weekly"

- package-ecosystem: "pip"
directory: "karton_ssl_checks"
schedule:
interval: "weekly"

- package-ecosystem: "pip"
directory: "karton_sqlmap"
schedule:
interval: "weekly"
2 changes: 1 addition & 1 deletion karton_dns_reaper/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM certpl/artemis:latest

RUN apk add git

RUN git clone https://github.com/punk-security/dnsReaper.git --branch 1.7.2 /dnsReaper
RUN git clone https://github.com/punk-security/dnsReaper.git --branch 1.9.4 /dnsReaper

RUN pip install -r /dnsReaper/requirements.txt

Expand Down
3 changes: 2 additions & 1 deletion karton_sqlmap/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ FROM certpl/artemis:latest

RUN apk add git

RUN bash -c "cd /; git clone https://github.com/sqlmapproject/sqlmap.git; cd sqlmap; git checkout 4357b0087d4152caba0bb04b702d9b119dfbc537"
COPY karton_sqlmap/requirements.txt /requirements_sqlmap.txt
RUN pip install -r /requirements.txt -r /requirements_sqlmap.txt

WORKDIR /opt/

Expand Down
3 changes: 1 addition & 2 deletions karton_sqlmap/karton_sqlmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ def _run() -> Optional[str]:

cmd = (
[
"python3",
"/sqlmap/sqlmap.py",
"sqlmap",
"--delay",
str(Config.Limits.SECONDS_PER_REQUEST),
"-u",
Expand Down
1 change: 1 addition & 0 deletions karton_sqlmap/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sqlmap==1.7.7

0 comments on commit fe7d6f0

Please sign in to comment.