Skip to content

Commit

Permalink
binaries reorg
Browse files Browse the repository at this point in the history
  • Loading branch information
xmendez committed Nov 21, 2017
1 parent 73482e1 commit 020cbe2
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 14 deletions.
6 changes: 0 additions & 6 deletions wfencode.py → src/wfencode.py
Original file line number Diff line number Diff line change
@@ -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__':
Expand Down
6 changes: 0 additions & 6 deletions wfpayload.py → src/wfpayload.py
Original file line number Diff line number Diff line change
@@ -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__':
Expand Down
6 changes: 6 additions & 0 deletions src/wfuzz-cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env python

from wfuzz.wfuzz import main

if __name__ == '__main__':
main()
File renamed without changes.
2 changes: 2 additions & 0 deletions wfencode
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
python src/wfencode.py $@
2 changes: 2 additions & 0 deletions wfpayload
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
python src/wfpayload.py $@
3 changes: 1 addition & 2 deletions wfuzz
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
#!/bin/sh
cd src
python -m wfuzz $@
python src/wfuzz-cli.py $@
2 changes: 2 additions & 0 deletions wxfuzz
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
python src/wxfuzz.py $@

0 comments on commit 020cbe2

Please sign in to comment.