⚠️ This repository has been archived. IntelOwl has a new GUI written in React.js and its code lives inside the main repository only.
Official web client for Intel Owl, a scalable API which gathers threat intelligence data about a particular file or observable (ip, domain, url, hash) by querying many different analyzers and services that are externally or internally available.
Built with Angular 10 on top of ngx-admin.
Live Demo hosted on firebase. (Last Updated for IntelOwl v3.0.0)
- A dashboard to display different visualizations of Job data, with the following features:
- Tabular view of all jobs which can be filtered, sorted or searched through.
- Pie charts for visualizing job data on the basis of
status
,observable_classification
,file_mimetype
andis_sample
. - Clicking on any slice on the Pie Chart will filter the jobs list based on the selected classification.
- “Save as PNG” feature for the graphs.
- Job result can be viewed as a nested list or prettified JSON.
analyzer_config.json
from IntelOwl in a tabular view which can be filtered, sorted or searched through. Along with this, there's also a dendogram-tree view.- Requesting new analysis/scans with simple-to-use forms. They take care of warnings for you and also lets you specify tags to group different analysis' together.
IntelOwl-ng's Docker image on Dockerhub is a data-only image. In other terms, it's a scratch image that contains only the final production build artifacts and cannot be started as a container. This makes the image super light-weight i.e. ~7 mb uncompressed and we can use Docker's multi-stage builds to inject these build artifacts into another base container such as nginx
. Official example from Intel Owl repository.
You should never need to build/start this docker image yourself, you should always use the docker-compose files from main IntelOwl repository.
For a development server, we make use of proxy configuration given in proxy.config.json to make calls to the backend server.
Therefore, this application requires Intel Owl running on http://localhost:80
(by default). If you wish to change this URL, you can do so by changing
the target
parameter in proxy.config.json.
$ git clone https://github.com/intelowlproject/intelowl-ng
$ cd intelowl-ng/
Install the packages described in the package.json
and
verify that it works:
intelowl-ng$ yarn install
or,
intelowl-ng$ npm install
Run npm start
or yarn start
for a dev server. Navigate to http://localhost:4200/
. The app will
automatically reload if you change any of the source files. Shut it down manually with Ctrl-C.
dist/ compiled version
e2e/ end-to-end tests
src/ project source code
|- app/ app components
| |- @core/ core module (singleton services and single-use components)
| |- models/models.ts various interfaces used
| |- services/ injectable services
| |- @theme/ reusable theme module, reusable components, directives, pipes.
| |- styles/ ngx-admin themes and global scss variables
| |- pages/ app's primary modules and components
| |- app.component.* app root component (shell)
| |- app.module.ts app root module definition
| |- app-routing.module.ts app routes
|- assets/ app assets (images, etc.)
|- environments/ values for various build environments
|- index.html html entry point
|- main.ts app entry point
|- polyfills.ts polyfills needed by Angular
+- test.ts unit tests entry point
README.md project docs and coding guides
Dockerfile multi-staged Dockerfile
- Angular -
v10.x
- Nebular -
v6.2.x
- ngx-admin
- RxJS -
v6.6.x
- Eva Icons
- Bootstrap 4
- ng2-smart-table
Run ng generate component component-name
to generate a new component.
You can also use ng generate directive/pipe/service/class/module
.
Run ng build
or yarn build
to build the project. The build artifacts will be
stored in the dist/
directory. Use the --prod
flag for a production build.
To get more help on the angular-cli use ng --help
or go check out the Angular-CLI README.
- Please create a new branch based on the
develop
branch that contains the most recent changes.
$ git checkout -b myfeature develop
- Run this before committing your changes to git.
$ yarn prettier:write
$ yarn lint
Fix the linting issues, if there are any.
- Read this before submitting a pull request.