├── .gitignore ├── LICENSE ├── README.md ├── client ├── murphysec-darwin-amd64 ├── murphysec-linux-amd64 └── murphysec-windows-amd64.exe ├── configs ├── __init__.py └── msg_template.json ├── libs ├── git.py └── murphy.py ├── message └── send.py ├── scan_all.py └── webapi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/README.md -------------------------------------------------------------------------------- /client/murphysec-darwin-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/client/murphysec-darwin-amd64 -------------------------------------------------------------------------------- /client/murphysec-linux-amd64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/client/murphysec-linux-amd64 -------------------------------------------------------------------------------- /client/murphysec-windows-amd64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/client/murphysec-windows-amd64.exe -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/configs/__init__.py -------------------------------------------------------------------------------- /configs/msg_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/configs/msg_template.json -------------------------------------------------------------------------------- /libs/git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/libs/git.py -------------------------------------------------------------------------------- /libs/murphy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/libs/murphy.py -------------------------------------------------------------------------------- /message/send.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/message/send.py -------------------------------------------------------------------------------- /scan_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/scan_all.py -------------------------------------------------------------------------------- /webapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murphysecurity/murphysec-gitlab-scanner/HEAD/webapi.py --------------------------------------------------------------------------------