binaries reorg

This commit is contained in:
javi 2017-11-21 23:18:04 +01:00
parent 73482e1499
commit 020cbe2d7c
8 changed files with 13 additions and 14 deletions

View File

@ -1,10 +1,4 @@
#!/usr/bin/env python
import sys
import os
sys.path.insert(0, os.path.abspath('src'))
from wfuzz.wfuzz import main_encoder
if __name__ == '__main__':

View File

@ -1,10 +1,4 @@
#!/usr/bin/env python
import sys
import os
sys.path.insert(0, os.path.abspath('src'))
from wfuzz.wfuzz import main_filter
if __name__ == '__main__':

6
src/wfuzz-cli.py Normal file
View File

@ -0,0 +1,6 @@
#!/usr/bin/env python
from wfuzz.wfuzz import main
if __name__ == '__main__':
main()

2
wfencode Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
python src/wfencode.py $@

2
wfpayload Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
python src/wfpayload.py $@

3
wfuzz
View File

@ -1,3 +1,2 @@
#!/bin/sh
cd src
python -m wfuzz $@
python src/wfuzz-cli.py $@

2
wxfuzz Executable file
View File

@ -0,0 +1,2 @@
#!/bin/sh
python src/wxfuzz.py $@