{"id":18609539,"url":"https://github.com/secure-software-engineering/secucheck-core","last_synced_at":"2025-04-10T22:31:27.490Z","repository":{"id":45147192,"uuid":"276752034","full_name":"secure-software-engineering/secucheck-core","owner":"secure-software-engineering","description":"Taint Analysis on top of Soot. ","archived":false,"fork":false,"pushed_at":"2024-03-25T12:38:19.000Z","size":38108,"stargazers_count":8,"open_issues_count":1,"forks_count":3,"subscribers_count":11,"default_branch":"SCC-1.1.0","last_synced_at":"2024-04-20T08:57:16.687Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","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/secure-software-engineering.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,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2020-07-02T21:52:35.000Z","updated_at":"2023-12-15T20:20:41.000Z","dependencies_parsed_at":"2024-03-11T13:47:36.103Z","dependency_job_id":"65b5a1ef-abc3-466f-9d27-b5f6d43c1b4e","html_url":"https://github.com/secure-software-engineering/secucheck-core","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/secure-software-engineering%2Fsecucheck-core","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/secure-software-engineering%2Fsecucheck-core/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/secure-software-engineering%2Fsecucheck-core/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/secure-software-engineering%2Fsecucheck-core/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/secure-software-engineering","download_url":"https://codeload.github.com/secure-software-engineering/secucheck-core/tar.gz/refs/heads/SCC-1.1.0","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223449847,"owners_count":17146984,"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":[],"created_at":"2024-11-07T03:06:23.496Z","updated_at":"2024-11-07T03:06:24.204Z","avatar_url":"https://github.com/secure-software-engineering.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# What is secucheck-core?\nThis is the core taint analysis of the SecuCheck tool which can be found in [this repository](https://github.com/secure-software-engineering/secucheck/) which also contains further documentation. SecuCheck integrates two data-solvers: Boomerang 3.x, an implementation of SPDS and FlowDroid, an implementation of IFDS.\n\nBoomerang 3.x is the default solver. Our tests are based on Boomerang 3.x. For WebGoat, the catalog, the demo-project and spring-petclinic and it finds all the TaintFlows.\n\n## How to build secucheck-core manually?\n- secucheck-core uses Boomerang DemandDriven analysis feature which is not yet realeased. Therefore, we need to build the Boomerang manually to the local maven before building SecuCheck. \n \n- Clone the Boomernag repository using the below command\n```shell script\ngit clone https://github.com/CodeShield-Security/SPDS.git\n```\n\n- Change the branch to develop using the below command. Recently used boomerang commit to build SecuCheck is 361a6bc33f7e8311398532a5c444c9e9cc358b0d\n```shell script\ngit checkout develop\n```\n\n- Build Boomerang using the below command\n```shell script\nmvn clean install -DskipTests\n```\n\n- Clone secuchek-core\n```shell script\ngit clone https://github.com/secure-software-engineering/secucheck-core.git\n```\n\n- change path to root directory of secucheck-core project\n```shell script\ncd secucheck-core\n```\n\n- change the branch to SCC-1.1.0 or SCC-1.0.0\n```shell script\ngit checkout SCC-1.1.0\n```\n\n- build the project \n```shell script\nmvn clean install\n```\n\n## secucheck-core structure\n| Project | Description | can use in client side? |\n| ------- | ----------- | ----------------------- |\n| de.fraunhofer.iem.secucheck.analysis | Core analysis API to use secucheck-core analysis | Yes |\n| de.fraunhofer.iem.secucheck.analysis.configuration | Lets the client configure secucheck-core analysis | Yes |\n| de.fraunhofer.iem.secucheck.analysis.datastructure | used to represent the analysis results | Yes |\n| de.fraunhofer.iem.secucheck.analysis.implementation | Implements the different solver (internal to secucheck-core) | No |\n| de.fraunhofer.iem.secucheck.analysis.query | TaintFlow query independent of other TaintFlowQuery language | Yes | \n| de.fraunhofer.iem.secucheck.analysis.result | Taint analysis results classes | Yes | \n| de.fraunhofer.iem.secucheck.analysis.SingleFlowAnalysis | Interface for taint analysis for single taintflow specification | No\n\n## Required maven dependency to use secucheck-core at client side.\n- de.fraunhofer.iem.secucheck.analysis\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ede.fraunhofer.iem.secucheck\u003c/groupId\u003e\n    \u003cversion\u003e0.0.1-SNAPSHOT\u003c/version\u003e\n    \u003cartifactId\u003ede.fraunhofer.iem.secucheck.analysis\u003c/artifactId\u003e\n\u003c/dependency\u003e\n```\n\n- de.fraunhofer.iem.secucheck.analysis.configuration\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ede.fraunhofer.iem.secucheck\u003c/groupId\u003e\n    \u003cartifactId\u003ede.fraunhofer.iem.secucheck.analysis.configuration\u003c/artifactId\u003e\n    \u003cversion\u003e0.0.1-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n- de.fraunhofer.iem.secucheck.analysis.result\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ede.fraunhofer.iem.secucheck\u003c/groupId\u003e\n    \u003cartifactId\u003ede.fraunhofer.iem.secucheck.analysis.result\u003c/artifactId\u003e\n    \u003cversion\u003e0.0.1-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n- de.fraunhofer.iem.secucheck.analysis.query\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ede.fraunhofer.iem.secucheck\u003c/groupId\u003e\n    \u003cartifactId\u003ede.fraunhofer.iem.secucheck.analysis.query\u003c/artifactId\u003e\n    \u003cversion\u003e0.0.1-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n- de.fraunhofer.iem.secucheck.analysis.datastructures\n```xml\n\u003cdependency\u003e\n    \u003cgroupId\u003ede.fraunhofer.iem.secucheck\u003c/groupId\u003e\n    \u003cartifactId\u003ede.fraunhofer.iem.secucheck.analysis.datastructures\u003c/artifactId\u003e\n    \u003cversion\u003e0.0.1-SNAPSHOT\u003c/version\u003e\n\u003c/dependency\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsecure-software-engineering%2Fsecucheck-core","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsecure-software-engineering%2Fsecucheck-core","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsecure-software-engineering%2Fsecucheck-core/lists"}