{"id":13762845,"url":"https://github.com/OWASP/glue","last_synced_at":"2025-05-10T15:32:00.772Z","repository":{"id":3141021,"uuid":"41494312","full_name":"OWASP/glue","owner":"OWASP","description":"Application Security Automation","archived":false,"fork":false,"pushed_at":"2023-09-05T21:43:17.000Z","size":8923,"stargazers_count":528,"open_issues_count":73,"forks_count":111,"subscribers_count":38,"default_branch":"master","last_synced_at":"2025-05-04T17:47:34.358Z","etag":null,"topics":["ci-cd","devsecops","owasp","tool"],"latest_commit_sha":null,"homepage":"","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/OWASP.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2015-08-27T15:15:30.000Z","updated_at":"2025-04-23T13:13:36.000Z","dependencies_parsed_at":"2024-01-16T13:06:41.916Z","dependency_job_id":null,"html_url":"https://github.com/OWASP/glue","commit_stats":{"total_commits":294,"total_committers":21,"mean_commits":14.0,"dds":0.6428571428571428,"last_synced_commit":"87033800b03330fa9b4a6ce3d11dc2a799f60919"},"previous_names":["owasp/pipeline"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OWASP%2Fglue","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OWASP%2Fglue/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OWASP%2Fglue/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/OWASP%2Fglue/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/OWASP","download_url":"https://codeload.github.com/OWASP/glue/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253102631,"owners_count":21854501,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ci-cd","devsecops","owasp","tool"],"created_at":"2024-08-03T14:00:58.958Z","updated_at":"2025-05-10T15:32:00.389Z","avatar_url":"https://github.com/OWASP.png","language":"Ruby","readme":"\n[![Twitter](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/owaspglue)\n[![Ruby Gem](https://img.shields.io/gem/dtv/rails.svg)](https://rubygems.org/gems/owasp-glue) [![Dockerhub](https://img.shields.io/docker/stars/owasp/glue.svg)](https://hub.docker.com/r/owasp/glue/)\n[![Travis](https://img.shields.io/travis/USER/REPO.svg)](https://travis-ci.org/OWASP/glue)\n\n\n\u003cimg src=\"./glue.png\" width=\"120\"/\u003e\n\n# OWASP Glue\n\nGlue is a framework for running a series of tools.  Generally, it is intended as a backbone for automating a security analysis pipeline of tools.\n\n# Recommended Usage\n\nFor those wishing to run Glue, we recommend using the docker image because\nit should have the other tools it uses available already and configured.\nSee the documentation for more info.  [Glue Docker Documentation](./DOCKER.md)\n\nFor those interested in how to use Glue in a DevOps context, see\n[Glue DevOps Integration Options](./DEVOPS.md)\n\nCheckout the [Playground](./PLAYGROUND.md) to get a better understanding of Glue's features and how you can use them.\n\n# Local run\n\n`docker run owasp/glue`\n\n# Installation for Development\n\n```\ngit clone https://github.com/owasp/glue\ncd glue                     -- RVM will set to 2.3.1 with Gemset Glue\ngem install bundler\nbundle install\n```\n\n## Running in Development\n\n```\ncd lib\n../bin/glue -h\n```\n\n# Extending Glue\n\nGlue is intended to be extended through added \"tasks\".  To add a new tool,\ncopy an existing task and tweak to make it work for the tool in question.\n\n# Usage\n\n`Glue \u003coptions\u003e \u003ctarget\u003e`\n\n## Options\n\nCommon options include:\n```\n-d for debug\n-f for format (takes \"json\", \"csv\", \"jira\")\n```\n\nFor a full list of options, use `Glue --help` or see the [OPTIONS.md](./OPTIONS.md) file.\n\n## Target\n\nThe target can be:\n* Filesystem (which is analyzed in place)\n* Git repo (which is cloned for analysis)\n* Other types of images (.iso, docker, etc. are experimental)\n\n\n# Dependencies\n\n* clamav\n* hashdeep\n* rm (*nix)\n* git\n* mount (*nix)\n* docker\n\n# Development\n\nTo run the code, run the following from the root directory:\n\n`\u003eruby bin/Glue \u003coptions\u003e target`\n\nTo build a gem, just run:\n\n`gem build Glue.gemspec`\n\n\n# Integration\n\n## Git Hooks\n\nFirst, grab the hook from the code.\n```\nmeditation:hooks mk$ cp /area53/owasp/Glue/hooks/pre-commit .\n```\n\nThen make it executable.\n```\nmeditation:hooks mk$ chmod +x pre-commit\n```\n\nMake sure the shell you are committing in can see docker.\n```\nmeditation:hooks mk$ eval \"$(docker-machine env default)\"\n```\n\nNow go test and make a change and commit a file.\nThe result should be that Glue runs against your\ncode and will not allow commits unless the results\nare clean. (Which is not necessarily a reasonable\nexpectation)\n\n\n# Configuration files\n\nFor advanced usage scenarios, you can save your configuration and use it at runtime.\n\n# Authors\n\nMatt Konda\nAlex Lock\nRafa Perez\n\n# License\n\nApache 2:  http://www.apache.org/licenses/LICENSE-2.0\n","funding_links":[],"categories":["Weapons","Vulnerable Test Targets"],"sub_categories":["Tools"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOWASP%2Fglue","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FOWASP%2Fglue","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FOWASP%2Fglue/lists"}