Skip to content

Commit

Permalink
Add new checksum feature for more detection case
Browse files Browse the repository at this point in the history
  • Loading branch information
j3ssie committed Feb 1, 2021
1 parent 04f2d28 commit 6c165df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Please visit the [Official Documention](https://jaeles-project.github.io/) for m
jaeles scan -G -c 50 -s '/tmp/custom-signature/.*' -U list_of_urls.txt
jaeles scan -v -s '~/my-signatures/products/wordpress/.*' -u 'https://wp.example.com' -p 'root=[[.URL]]'
cat urls.txt | grep 'interesting' | jaeles scan -L 5 -c 50 -s 'fuzz/.*' -U list_of_urls.txt --proxy http://127.0.0.1:8080
jaeles server -s '/tmp/custom-signature/sensitive/.*' -L 2 --fi

```

Expand Down
3 changes: 2 additions & 1 deletion cmd/scan.go
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ func runScan(cmd *cobra.Command, _ []string) error {
defer p.Release()

for _, url := range urls {
wg.Add(1)

// calculate filtering result first if enabled from cli
baseJob := libs.Job{URL: url}
if options.EnableFiltering {
Expand All @@ -137,6 +137,7 @@ func runScan(cmd *cobra.Command, _ []string) error {
}
sign.Checksums = baseJob.Checksums

wg.Add(1)
// Submit tasks one by one.
job := libs.Job{URL: url, Sign: sign}
_ = p.Invoke(job)
Expand Down

0 comments on commit 6c165df

Please sign in to comment.