Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
erlvulnscan — Concurrent network scanner for CVE-2015-1635 | Kitploit
Tools/GitHubGitHub/technion/erlvulnscan
ReconnaissanceVulnerability ScannersInformation GatheringWeb SecurityNetwork SecurityPenetration Testing
GitHubtechnion/erlvulnscan

erlvulnscan

Concurrent network scanner for CVE-2015-1635

View Repository
1038 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

Webbased concurrent scanner for CVE-2015-1635.

Live implementation running here. This demonstration website is used for development of this project and it stability is not guaranteed.

Information on this project is written here. As the "TODO" list documented there has been completed this code is now in a stable state.

Code documentation can be found here.

Development and deployment

Clone the repository

root@kitploit:~
git clone https://github.com/technion/erlvulnscan.git

Get prerequisiites

root@kitploit:~
./rebar3 get-deps

Compile

root@kitploit:~
./rebar3 compile

Static analysis

root@kitploit:~
./rebar3 built-plt #First time only
./rebar3 dialyzer

Generate release

root@kitploit:~
./rebar3 generate

Create edocs (only necessary after API change as these are synced to git)

root@kitploit:~
./rebar3 doc

Run test harness (EUnit and Common Test both implemented)

root@kitploit:~
./rebar3 eunit
./rebar3 ct

Observing the cache whille attached to running process

root@kitploit:~
ets:match(simple_cache, '$1').

The "logs" directory can be accessed to identify two sources of tests by aliasing it to a URL. Accessing this directory without a subfolder will show the results of the CT test suite. Accessing view.png will show the PhantomJS output from the frontend test.

Building the frontend

The frontend is built using Webpack plugins. From the frontend/ directory:

Install the requirements:

root@kitploit:~
npm install

To build the frontend:

root@kitploit:~
webpack

nginx setup

These rules were used for routing:

root@kitploit:~
location /netscan {
    proxy_pass http://localhost:8080;
}
Download Tool