{"id":20608569,"url":"https://github.com/logicalhacking/dasca","last_synced_at":"2025-08-19T05:04:29.101Z","repository":{"id":32899529,"uuid":"36494206","full_name":"logicalhacking/DASCA","owner":"logicalhacking","description":" DASCA combines dynamic and static techniques for analysing code for finding security (i.e., vulnerabilities), safety, or reliability problems.","archived":false,"fork":false,"pushed_at":"2019-02-27T20:29:14.000Z","size":2656,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-08-19T05:03:18.091Z","etag":null,"topics":["android","cordova","eclipse","java","sast","static-analysis","wala"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"epl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/logicalhacking.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":"CITATION","codeowners":null,"security":null,"support":null}},"created_at":"2015-05-29T09:21:26.000Z","updated_at":"2022-02-16T13:17:43.000Z","dependencies_parsed_at":"2022-09-23T17:22:26.085Z","dependency_job_id":null,"html_url":"https://github.com/logicalhacking/DASCA","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/logicalhacking/DASCA","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logicalhacking%2FDASCA","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logicalhacking%2FDASCA/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logicalhacking%2FDASCA/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logicalhacking%2FDASCA/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/logicalhacking","download_url":"https://codeload.github.com/logicalhacking/DASCA/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/logicalhacking%2FDASCA/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271103202,"owners_count":24699646,"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","status":"online","status_checked_at":"2025-08-19T02:00:09.176Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["android","cordova","eclipse","java","sast","static-analysis","wala"],"created_at":"2024-11-16T10:11:03.545Z","updated_at":"2025-08-19T05:04:29.016Z","avatar_url":"https://github.com/logicalhacking.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# DASCA\n\n## Installation\n\n### Prerequisites\n\n* Java 8 (Java 9 or later is currently *not* supported)\n* Eclipse Oxygen, including the following additional packages:\n  * From the Eclipse Marketplace:\n    * The Plug-in Development Environment (PDE)\n    * JavaScript Development Tools (JSDT)\n    * Gradle Integration (Buildship)\n  * From the [Scala IDE Update Site](http://scala-ide.org/download/current.html)\n    * [Scala IDE and Scalatest Runner (the latter is optional)](http://download.scala-ide.org/sdk/lithium/e47/scala212/stable/site)\n* The native libraries and the JNI packages for [CVC3](http://cs.nyu.edu/acsys/cvc3/). \n  On a Debian-based Linux system, you need to install the package `libcvc3-5-jni`. CVC3 is \n  only required for the sub-project `com.logicalhacking.dasca.dataflow` and the \n  corresponding tests.\n  \nNote, if you install the [Eclipse for Java EE Developers](http://www.eclipse.org/downloads/packages/release/2018-09/r/eclipse-ide-java-ee-developers),\nyou should get a version that includes already PDE, JSDT, and Buildship. Thus, you only need \nto add the Scala IDE.\n\n### Checkout\n\nThe repository can be cloned as usual:\n\n``` sh\ngit clone https://git.logicalhacking.com/DASCA/DASCA.git\n```\n\nNote, if you authorized to access the confidential test cases of \nDASCA, you can obtain them by executing\n\n``` sh\ngit submodule update --init --recursive\n```\n\n### Configuration (optional)\n\nThe dataflow analysis can be configured in various ways in the \n`com.logicalhacking.dasca.dataflow/config/main.config` file. Most importantly, \nif you experience problems or want to optimize the performance (e.g., by \nanalyzing the programs based on a different Java version), you might need to \nconfigure the location of the Java JDK. The JDK used as part of the static \nanalysis is configured in the file \n`com.logicalhacking.dasca.dataflow/config/main.config`, e.g.\n\n``` sh\ncd DASCA/\necho \"java_runtime_dir = \u003cPATH-TO-JDK\u003e\" \u003e\u003e ./com.logicalhacking.dasca.dataflow/config/main.config\n```\n\nDon't forget to adjust the path to the Java JDK accordingly, i.e.,\nthe `\u003cPATH-TO-JDK\u003e` should point to the directory containing the file\n`rt.lib`.\n\n### How to Compile\n\nFirst check that the variable `JAVA_HOME` is configured correctly, to ensure \nthat Java 8 is used, e.g.:\n\n``` sh\nexport JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64\nexport PATH=$JAVA_HOME/bin:$PATH\n```\n\nThe project can be compiled using gradle\n\n``` sh\n./gradlew clean assemble test\n```\n\n### Import into Eclipse\n\nAll projects can be imported into a (fresh) Eclipse workspace\nusing `File -\u003e Import -\u003e Gradle -\u003e Existing Gradle Projects`:\n\n 1. Select the `DASCA` folder as source for the import\n 2. Import all offered projects\n\n\n\n## Team\n\nMain contact: [Achim D. Brucker](http://www.brucker.ch/)\n\n### Contributors\n\n* Thomas Deuster\n* [Michael Herzberg](http://www.dcs.shef.ac.uk/cgi-bin/makeperson?M.Herzberg)\n* Tim Herres\n\n## License\n\nThis project is licensed under the Eclipse Public License 2.0.\n\nSPDX-License-Identifier: EPL-2.0\n\n## Master Repository\n\nThe master git repository for this project is hosted by the [Software\nAssurance \u0026 Security Research Team](https://logicalhacking.com) at\n\u003chttps://git.logicalhacking.com/DASCA/DASCA\u003e.\n\n## Publications\n\n* Achim D. Brucker and Michael Herzberg. [On the Static Analysis of\n  Hybrid Mobile Apps: A Report on the State of Apache Cordova\n  Nation.](https://www.brucker.ch/bibliography/download/2016/brucker.ea-cordova-security-2016.pdf)\n  In International Symposium on Engineering Secure Software\n  and Systems (ESSoS). Lecture Notes in Computer Science (9639), pages\n  72-88, Springer-Verlag, 2016.\n  https://www.brucker.ch/bibliography/abstract/brucker.ea-cordova-security-2016\n  doi: [10.1007/978-3-319-30806-7_5](http://dx.doi.org/10.1007/978-3-319-30806-7_5)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flogicalhacking%2Fdasca","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flogicalhacking%2Fdasca","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flogicalhacking%2Fdasca/lists"}