├── .directory ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── codeql-analysis.yml │ └── python-package.yml ├── .gitignore ├── LICENSE ├── README.md ├── Vailyn ├── core ├── .directory ├── App.py ├── Cli.py ├── Shell.py ├── __init__.py ├── colors.py ├── config.py ├── doc │ ├── VERSION │ └── logo.png ├── docker │ └── Dockerfile ├── initfiles │ ├── .gitignore │ └── sample ├── methods │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── attack.cpython-37.pyc │ │ ├── cache.cpython-37.pyc │ │ ├── cookie.cpython-37.pyc │ │ ├── filecheck.cpython-37.pyc │ │ ├── inpath.cpython-37.pyc │ │ ├── list.cpython-37.pyc │ │ ├── loot.cpython-37.pyc │ │ ├── parser.cpython-37.pyc │ │ ├── print.cpython-37.pyc │ │ ├── query.cpython-37.pyc │ │ ├── select.cpython-37.pyc │ │ ├── session.cpython-37.pyc │ │ ├── tor.cpython-37.pyc │ │ └── tree.cpython-37.pyc │ ├── attack.py │ ├── cache.py │ ├── cookie.py │ ├── crawler.py │ ├── error.py │ ├── filecheck.py │ ├── list.py │ ├── loot.py │ ├── notify.py │ ├── parser.py │ ├── print.py │ ├── progress.py │ ├── select.py │ ├── session.py │ ├── tor.py │ ├── tree.py │ └── version.py ├── payload-cache │ └── sample-cache │ │ ├── nullbytes.cache │ │ └── payloads.cache ├── qt5 │ ├── Cookie.ui │ ├── Error.ui │ ├── Info.ui │ ├── Main.ui │ ├── Payload.ui │ ├── PayloadShow.ui │ ├── Question.ui │ ├── Target.ui │ └── icons │ │ ├── Vailyn.png │ │ ├── add.svg │ │ ├── apply.svg │ │ ├── attacks.png │ │ ├── cancel.svg │ │ ├── check.png │ │ ├── checkq.png │ │ ├── delete.svg │ │ ├── down.svg │ │ ├── help.svg │ │ ├── info.svg │ │ ├── settings.png │ │ ├── tid.png │ │ ├── vailynava.png │ │ └── window-close.svg └── variables.py ├── dicts ├── .directory ├── .gitignore ├── dirs2 ├── files2 ├── testdirs └── testfiles-loose ├── lib ├── .directory └── user-agents.txt ├── loot └── .directory ├── requirements.txt └── ·› ├── .directory ├── .gitignore └── requirements-windows.txt /.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/.directory -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/README.md -------------------------------------------------------------------------------- /Vailyn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/Vailyn -------------------------------------------------------------------------------- /core/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/.directory -------------------------------------------------------------------------------- /core/App.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/App.py -------------------------------------------------------------------------------- /core/Cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/Cli.py -------------------------------------------------------------------------------- /core/Shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/Shell.py -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/colors.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/config.py -------------------------------------------------------------------------------- /core/doc/VERSION: -------------------------------------------------------------------------------- 1 | 5.0.0-0 2 | -------------------------------------------------------------------------------- /core/doc/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/doc/logo.png -------------------------------------------------------------------------------- /core/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/docker/Dockerfile -------------------------------------------------------------------------------- /core/initfiles/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !sample 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /core/initfiles/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/initfiles/sample -------------------------------------------------------------------------------- /core/methods/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/methods/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/attack.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/attack.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/cache.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/cache.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/cookie.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/cookie.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/filecheck.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/filecheck.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/inpath.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/inpath.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/list.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/list.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/loot.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/loot.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/parser.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/parser.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/print.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/print.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/query.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/query.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/select.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/select.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/session.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/session.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/tor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/tor.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/__pycache__/tree.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/__pycache__/tree.cpython-37.pyc -------------------------------------------------------------------------------- /core/methods/attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/attack.py -------------------------------------------------------------------------------- /core/methods/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/cache.py -------------------------------------------------------------------------------- /core/methods/cookie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/cookie.py -------------------------------------------------------------------------------- /core/methods/crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/crawler.py -------------------------------------------------------------------------------- /core/methods/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/error.py -------------------------------------------------------------------------------- /core/methods/filecheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/filecheck.py -------------------------------------------------------------------------------- /core/methods/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/list.py -------------------------------------------------------------------------------- /core/methods/loot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/loot.py -------------------------------------------------------------------------------- /core/methods/notify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/notify.py -------------------------------------------------------------------------------- /core/methods/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/parser.py -------------------------------------------------------------------------------- /core/methods/print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/print.py -------------------------------------------------------------------------------- /core/methods/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/progress.py -------------------------------------------------------------------------------- /core/methods/select.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/select.py -------------------------------------------------------------------------------- /core/methods/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/session.py -------------------------------------------------------------------------------- /core/methods/tor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/tor.py -------------------------------------------------------------------------------- /core/methods/tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/tree.py -------------------------------------------------------------------------------- /core/methods/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/methods/version.py -------------------------------------------------------------------------------- /core/payload-cache/sample-cache/nullbytes.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/payload-cache/sample-cache/payloads.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/payload-cache/sample-cache/payloads.cache -------------------------------------------------------------------------------- /core/qt5/Cookie.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/Cookie.ui -------------------------------------------------------------------------------- /core/qt5/Error.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/Error.ui -------------------------------------------------------------------------------- /core/qt5/Info.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/Info.ui -------------------------------------------------------------------------------- /core/qt5/Main.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/Main.ui -------------------------------------------------------------------------------- /core/qt5/Payload.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/Payload.ui -------------------------------------------------------------------------------- /core/qt5/PayloadShow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/PayloadShow.ui -------------------------------------------------------------------------------- /core/qt5/Question.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/Question.ui -------------------------------------------------------------------------------- /core/qt5/Target.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/Target.ui -------------------------------------------------------------------------------- /core/qt5/icons/Vailyn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/Vailyn.png -------------------------------------------------------------------------------- /core/qt5/icons/add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/add.svg -------------------------------------------------------------------------------- /core/qt5/icons/apply.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/apply.svg -------------------------------------------------------------------------------- /core/qt5/icons/attacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/attacks.png -------------------------------------------------------------------------------- /core/qt5/icons/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/cancel.svg -------------------------------------------------------------------------------- /core/qt5/icons/check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/check.png -------------------------------------------------------------------------------- /core/qt5/icons/checkq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/checkq.png -------------------------------------------------------------------------------- /core/qt5/icons/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/delete.svg -------------------------------------------------------------------------------- /core/qt5/icons/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/down.svg -------------------------------------------------------------------------------- /core/qt5/icons/help.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/help.svg -------------------------------------------------------------------------------- /core/qt5/icons/info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/info.svg -------------------------------------------------------------------------------- /core/qt5/icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/settings.png -------------------------------------------------------------------------------- /core/qt5/icons/tid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/tid.png -------------------------------------------------------------------------------- /core/qt5/icons/vailynava.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/vailynava.png -------------------------------------------------------------------------------- /core/qt5/icons/window-close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/qt5/icons/window-close.svg -------------------------------------------------------------------------------- /core/variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/core/variables.py -------------------------------------------------------------------------------- /dicts/.directory: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Icon=/home/vainlystrain/Downloads/attacks2.png 3 | -------------------------------------------------------------------------------- /dicts/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/dicts/.gitignore -------------------------------------------------------------------------------- /dicts/dirs2: -------------------------------------------------------------------------------- 1 | actions/ 2 | lib/ 3 | views/ 4 | -------------------------------------------------------------------------------- /dicts/files2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/dicts/files2 -------------------------------------------------------------------------------- /dicts/testdirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/dicts/testdirs -------------------------------------------------------------------------------- /dicts/testfiles-loose: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/dicts/testfiles-loose -------------------------------------------------------------------------------- /lib/.directory: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Icon=/home/vainlystrain/Pictures/dagger.png 3 | -------------------------------------------------------------------------------- /lib/user-agents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/lib/user-agents.txt -------------------------------------------------------------------------------- /loot/.directory: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Icon=/home/vainlystrain/Pictures/andere.png 3 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/requirements.txt -------------------------------------------------------------------------------- /·›/.directory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/·›/.directory -------------------------------------------------------------------------------- /·›/.gitignore: -------------------------------------------------------------------------------- 1 | priv/ 2 | -------------------------------------------------------------------------------- /·›/requirements-windows.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VainlyStrain/Vailyn/HEAD/·›/requirements-windows.txt --------------------------------------------------------------------------------