mirror of
https://github.com/ysoftdevs/wapifuzz.git
synced 2026-01-11 22:30:35 +01:00
Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c0193b7514 | ||
|
|
189afcc8f9 |
@@ -12,7 +12,7 @@ script:
|
||||
- sudo ln -s /usr/local/bin/python3.7 /usr/local/bin/python3
|
||||
- sudo ln -s /usr/local/bin/pip3.7 /usr/local/bin/pip3
|
||||
- export PATH="/usr/local/bin:$PATH"
|
||||
- sudo pip3 install --upgrade pip && sudo pip3 install git+https://github.com/jtpereyda/boofuzz.git && sudo pip3 install junit-xml && sudo pip3 install virtualenv
|
||||
- sudo pip3 install --upgrade pip && sudo pip3 install boofuzz==0.1.6 && sudo pip3 install junit-xml && sudo pip3 install virtualenv
|
||||
- find ~/build/ysoftdevs/wapifuzz/ -type f -exec dos2unix {} \;
|
||||
- find ~/build/ysoftdevs/wapifuzz/ -type f -name "*.sh" -exec chmod u+x {} \;
|
||||
- cd ~/build/ysoftdevs/wapifuzz/parser/ && dotnet restore && dotnet test
|
||||
|
||||
2
run.ps1
2
run.ps1
@@ -63,7 +63,7 @@ Write-Host "Upgrade Python 3 pip (needed for crypto lib)"
|
||||
pip install --upgrade pip
|
||||
|
||||
Write-Host "Installing specific dependencies"
|
||||
pip install git+https://github.com/jtpereyda/boofuzz.git
|
||||
pip install boofuzz==0.1.6
|
||||
pip install junit-xml
|
||||
Write-Host "Starting fuzz testing"
|
||||
python ./fuzzer/wapifuzz.py ${config} ${API_REQUESTS_JSON} ${JUNIT_TEST_REPORT} ${payloads}
|
||||
|
||||
2
run.sh
2
run.sh
@@ -76,7 +76,7 @@ ${PIP3_BIN} install virtualenv
|
||||
${PYTHON3_BIN} -m virtualenv env
|
||||
echo "Started fuzzing"
|
||||
. ./env/bin/activate ; \
|
||||
pip install --upgrade pip ; pip install git+https://github.com/jtpereyda/boofuzz.git ; pip install junit-xml ; \
|
||||
pip install --upgrade pip ; pip install boofuzz==0.1.6 ; pip install junit-xml ; \
|
||||
python fuzzer/wapifuzz.py ${WAPIFUZZ_CONFIG} ${API_REQUESTS_JSON} ${JUNIT_TEST_REPORT} ${CUSTOM_PAYLOADS_FILE}
|
||||
FUZZER_ERROR_CODE=$?
|
||||
if [ "$FUZZER_ERROR_CODE" -eq "2" ]; then
|
||||
|
||||
Reference in New Issue
Block a user