Giter Site home page Giter Site logo

fast's People

Contributors

remitang avatar tux-panik avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar

fast's Issues

Add Ansible support

Ansible playbook for Ubuntu.
Using Cast for installing REMnux and SIFT. SIFT CLI is deprecated.
Lint with ansible-lint.
Ansible allow to support easier, other Linux distros in the future.

---
- name: FAST - Ubuntu
  hosts: localhost
  become: true
  connection: local

  tasks:
    - name: Update APT package index
      ansible.builtin.apt:
        update_cache: true

    - name: Install dependencies
      ansible.builtin.apt:
        name:
          - software-properties-common
          - apt-transport-https
          - ca-certificates
        state: present

    - name: Install Autopsy
      ansible.builtin.apt:
        name: autopsy
        state: present

    - name: Download CyberChef
      ansible.builtin.get_url:
        url: "https://gchq.github.io/CyberChef/CyberChef_v10.18.6.zip"
        dest: "/tmp/CyberChef_v10.18.6.zip"
        mode: '0644'

    - name: Create CyberChef directory on Desktop
      ansible.builtin.file:
        path: "/home/{{ lookup('env', 'SUDO_USER') }}/Desktop/CyberChef"
        state: directory
        mode: '0755'

    - name: Unzip CyberChef to Desktop/CyberChef
      ansible.builtin.unarchive:
        src: "/tmp/CyberChef_v10.18.6.zip"
        dest: "/home/{{ lookup('env', 'SUDO_USER') }}/Desktop/CyberChef"
        remote_src: true

    - name: Remove CyberChef zip file
      ansible.builtin.file:
        path: "/tmp/CyberChef_v10.18.6.zip"
        state: absent

    - name: Install Free Hex Editor (GHex)
      ansible.builtin.apt:
        name: ghex
        state: present

    - name: Install Wireshark
      ansible.builtin.apt:
        name: wireshark
        state: present

    - name: Download cast
      ansible.builtin.get_url:
        url: "https://github.com/ekristen/cast/releases/download/v0.14.30/cast-v0.14.30-linux-amd64.deb"
        dest: "/tmp/cast-v0.14.30-linux-amd64.deb"
        mode: '0644'

    - name: Install cast
      ansible.builtin.apt:
        deb: "/tmp/cast-v0.14.30-linux-amd64.deb"
        state: present

    - name: Set permissions for cast
      ansible.builtin.file:
        path: /usr/bin/cast
        mode: '0755'
      become: true

Install with :

sudo ansible-playbook Ubuntu.yml

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.