-
-
Notifications
You must be signed in to change notification settings - Fork 438
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## How to contribute | ||
- First, fork this repository into your Github account | ||
- Second, clone repository | ||
- Finaly, writing code push and PR to me | ||
|
||
## Writing code | ||
I checking the quality of code through Codacy when PR/Merge/Push. If you want to consider code quality in advance, please check the link below (not perfect, but very helpful). | ||
|
||
https://goreportcard.com/report/github.com/hahwul/dalfox | ||
|
||
e.g: `https://goreportcard.com/report/github.com/{your github account}/dalfox` | ||
|
||
## Build | ||
``` | ||
go build | ||
``` | ||
|
||
## Case study | ||
### How to add testing vector of XSS | ||
- Add new vector to https://github.com/hahwul/dalfox/blob/master/pkg/scanning/payload.go | ||
- Optimize but can affect performance, so please add a general and non-overlapping pattern. | ||
|
||
### How to add new entity(e.g event handler) | ||
- Add new pattern to https://github.com/hahwul/dalfox/blob/master/pkg/scanning/entity.go |