# vulnFinder **Repository Path**: ChiZhung/vuln-finder ## Basic Information - **Project Name**: vulnFinder - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-04-09 - **Last Updated**: 2021-06-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ## Source Codes Vulnerability Finder Introduction: This is a twin project of Source Codes Vulnerability Detection. Another project named vulnDBGen_py3 used to build a dataset of source codes vulnerability and relative aux data. This project is used to find loopholes by depending on the data yielding by vulnDBGen_py3. ### How to use me? 1. Installs all dependencies. ```shell script pip3 install -r requirements.txt ``` 2. Different usage ways 1. local test ```shell script # get more details by running -h python3 finder.py -h ``` 2. server-client based in rpc. * starts the server by ```shell script # see the help python3 server.py -h # start the server python3 server.py ``` * launch a request by using cli ```shell script # see the help python3 cli.py -h # run the cli according by cli-usage in help. ```