{"id":19083020,"url":"https://github.com/deep5050/flawfinder-action","last_synced_at":"2025-04-30T08:49:07.216Z","repository":{"id":65159492,"uuid":"258463081","full_name":"deep5050/flawfinder-action","owner":"deep5050","description":"A simple Github Action that checks for security flaws in your C/CPP codes and push the report back :wink:","archived":false,"fork":false,"pushed_at":"2020-11-02T17:06:13.000Z","size":38,"stargazers_count":2,"open_issues_count":1,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-03-14T20:04:41.623Z","etag":null,"topics":["actions","code-review","github-actions","security-audit","security-vulnerability"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/deep5050.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-04-24T09:13:16.000Z","updated_at":"2022-12-01T17:20:11.000Z","dependencies_parsed_at":"2023-01-13T15:43:32.872Z","dependency_job_id":null,"html_url":"https://github.com/deep5050/flawfinder-action","commit_stats":{"total_commits":21,"total_committers":1,"mean_commits":21.0,"dds":0.0,"last_synced_commit":"9e9bddcb6b480a72bc2c47015b675317a455468f"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deep5050%2Fflawfinder-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deep5050%2Fflawfinder-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deep5050%2Fflawfinder-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/deep5050%2Fflawfinder-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/deep5050","download_url":"https://codeload.github.com/deep5050/flawfinder-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223780087,"owners_count":17201287,"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":["actions","code-review","github-actions","security-audit","security-vulnerability"],"created_at":"2024-11-09T02:45:44.340Z","updated_at":"2024-11-09T02:45:44.959Z","avatar_url":"https://github.com/deep5050.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"![flawfinder-action](https://socialify.git.ci/deep5050/flawfinder-action/image?description=1\u0026descriptionEditable=A%20simple%20Github%20Action%20that%20checks%20for%20security%20flaws%20in%20your%20C%2FC%2B%2B%20codes%20and%20pushes%20the%20report%20back\u0026font=Source%20Code%20Pro\u0026logo=https%3A%2F%2Fi.imgur.com%2F96oxWx2.png\u0026owner=1\u0026pattern=Circuit%20Board\u0026theme=Light)\n\n\u003cp align=center\u003e                           \n  \u003cimg align=center  src=\"https://visitor-badge.laobi.icu/badge?page_id=deep5050.flawdinder-action\" alt=\"Visitors\"\u003e                     \n\u003c/p\u003e\n\n\n## what is flawfinder?\n[flawfinder](http://doc.gnu-darwin.org/flawfinder/), a simple program that examines C/C++ source code and reports possible security weaknesses (“flaws”) sorted by risk level.\n\n# Usage\nCreate a ``.yml`` file under ``.github/workflows`` with the following contents\n### Default configuration\n\n```yml\nname: flawfinder\non: [push]\n\njobs:\n  build:\n    name: flawfinder-action\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - name: flawfinder-action \n        uses: deep5050/flawfinder-action@master\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN}}\n```\n\n### Advanced configuration\n```yml\nname: flawfinder\non: [push]\n\njobs:\n  build:\n    name: flawfinder-action\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v2\n      - name: flawfinder-action \n        uses: deep5050/flawfinder-action@master\n        with:\n          github_token: ${{ secrets.GITHUB_TOKEN}}\n          report_type:\n          data_only:\n          never_ignore:\n          false_positive:\n          inputs_flag:\n          dot_directories:\n          allow_link:\n```\n\n#### Input Options\n``report type`` : ``html`` Which is default, generates an HTML report. ``text`` for plain text report.\n\n``data_only`` : ``enable`` Don't display the headers and footers of the analysis.\n\n``never_ignore`` : ``enable`` Never ignore security issues, even if they have an ``ignore'' directive in a comment.\n\n``false_positive`` : ``enable`` Do not include hits that are likely to be false  positives.\n\n``inputs_flag`` : ``enable`` Show only functions that obtain data from outside the program. this also sets minlevel to 0.\n\n``dot_directories`` : ``enable`` Scan for files even in directories whose names begin with . (dot) \n\n``allow_link`` : ``enable`` Allow symbolic links\n\nPlease refer to the [flawfinder doumentation](http://doc.gnu-darwin.org/flawfinder/) for further details.\n\n## License\n\n\u003eMIT License\n\n\u003eCopyright (c) 2020 Dipankar Pal\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n\n## Thanks\n\nIcons made by \u003ca href=\"https://www.flaticon.com/authors/freepik\" title=\"Freepik\"\u003eFreepik\u003c/a\u003e from \u003ca href=\"https://www.flaticon.com/\" title=\"Flaticon\"\u003e www.flaticon.com\u003c/a\u003e\n\nIcons made by \u003ca href=\"https://www.flaticon.com/authors/good-ware\" title=\"Good Ware\"\u003eGood Ware\u003c/a\u003e from \u003ca href=\"https://www.flaticon.com/\" title=\"Flaticon\"\u003e www.flaticon.com\u003c/a\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeep5050%2Fflawfinder-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdeep5050%2Fflawfinder-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdeep5050%2Fflawfinder-action/lists"}