-
Notifications
You must be signed in to change notification settings - Fork 428
Expand file tree
/
Copy pathsqlmap.yaml
More file actions
37 lines (32 loc) · 976 Bytes
/
sqlmap.yaml
File metadata and controls
37 lines (32 loc) · 976 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
package:
name: sqlmap
version: 1.7.6
epoch: 0
description: "a tool that automates the process of detecting and exploiting SQL injection flaws"
copyright:
- license: GPL-2.0
dependencies:
runtime:
- python3
environment:
contents:
packages:
- python3
- busybox
pipeline:
- uses: git-checkout
with:
repository: https://github.com/sqlmapproject/sqlmap
tag: ${{package.version}}
expected-commit: 153a40bf137a9127265921bd6d8a3aca404d74bf
destination: sqlmap
- runs: |
mkdir -p "${{targets.destdir}}"/usr/share/app/sqlmap && mkdir -p "${{targets.destdir}}"/usr/bin
mv sqlmap/* "${{targets.destdir}}"/usr/share/app/sqlmap
ln -s /usr/share/app/sqlmap/sqlmap.py "${{targets.destdir}}"/usr/bin/sqlmap
find "${{targets.destdir}}"/usr/share/app/sqlmap \( -type d -name doc \) -exec rm -rf '{}' \+
- uses: strip
update:
enabled: true
github:
identifier: sqlmapproject/sqlmap