mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 02:06:46 +00:00
* fix url encoding issues * complete requested changes and improvements * fix missing issue-tracker-config.yaml * fuzz: deepcopy and use urlutil.Params
19 lines
287 B
Bash
Executable File
19 lines
287 B
Bash
Executable File
#!/bin/bash
|
|
|
|
echo "::group::Build nuclei"
|
|
rm nuclei 2>/dev/null
|
|
cd ../v2/cmd/nuclei
|
|
go build .
|
|
mv nuclei ../../../integration_tests/nuclei
|
|
echo "::endgroup::"
|
|
cd ../../../integration_tests
|
|
pwd
|
|
./integration-test -protocol $1 -template $2
|
|
|
|
if [ $? -eq 0 ]
|
|
then
|
|
exit 0
|
|
else
|
|
exit 1
|
|
fi
|