Dockerized IntelOwl-ng, Web client for Intel Owl.
10K+
:warning: 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)
status, observable_classification, file_mimetype and is_sample.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.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
v10.xv6.2.xv6.6.xRun 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.
develop branch that contains the most recent changes.$ git checkout -b myfeature develop
$ yarn prettier:write
$ yarn lint
Fix the linting issues, if there are any.
Content type
Image
Digest
Size
3.3 MB
Last updated
over 4 years ago
docker pull intelowlproject/intelowl_ng:developPulls:
40
Last week