Skip to content

Commit 4cacf1a

Browse files
authored
Create python-package.yml
1 parent a1678bb commit 4cacf1a

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

.github/workflows/python-package.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: vulnerability-testing-tool
2+
version: 0.1.0
3+
description: >
4+
A Python-based automated vulnerability testing tool designed to identify potential security weaknesses in web applications.
5+
6+
author:
7+
name: Your Name
8+
email: your.email@example.com
9+
url: https://github.com/yourusername
10+
11+
license: MIT
12+
13+
dependencies:
14+
- requests
15+
- tqdm
16+
- termcolor
17+
- tabulate
18+
19+
scripts:
20+
- name: run
21+
command: python vulnerability_tester.py
22+
23+
readme: README.md
24+
25+
package:
26+
include:
27+
- vulnerability_tester.py
28+
- xss.txt
29+
- rfi.txt
30+
- lfi.txt
31+
- cmd_injection.txt
32+
- open_redirect.txt
33+
- host_header_injection.txt
34+
- csrf.txt
35+
- subdomain_takeover.txt
36+
- clickjacking.txt
37+
- ssrf.txt
38+
exclude:
39+
- .gitignore
40+
- .DS_Store
41+
- __pycache__/

0 commit comments

Comments
 (0)