From 4f81cb1df504e330900f76a222fca2fb50556428 Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Sat, 28 Mar 2020 16:32:56 +0100 Subject: [PATCH 1/2] Create main.yml Workflow --- .github/workflows/main.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..7d8d465 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,30 @@ +# This is a basic workflow to help you get started with Actions + +name: CI + +# Controls when the action will run. Triggers the workflow on push or pull request +# events but only for the master branch +on: + push: + branches: + - master + - github-actions + pull_request: + branches: + - master + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + create-image: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it + + - name: Login to Dockerhub + run: echo ${{secrets.DOCKERHUB_PASSWORD}} | docker login -u ${{secrets.DOCKERHUB_USER}} --password-stdin + + - name: Build the image + run: docker build -t ${{secrets.DOCKERHUB_USER}}/kali-basic . + + - name: Upload image + run: docker push ${{secrets.DOCKERHUB_USER}}/kali-basic From 83288753c086156734183096d8dd346846e8bc7d Mon Sep 17 00:00:00 2001 From: Marcel Schwarz Date: Sat, 28 Mar 2020 18:05:37 +0100 Subject: [PATCH 2/2] Add readme --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..fa52620 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Kali Image + +## Build time +The image is rebuilt every day at 6 pm UTC. + +## Packages +### Basic utils +* htop +* vim, nano +* git +* python3-pip +* iputils-ping, traceroute + +### Pentest Tools +* nmap +* sqlmap +* metasploit-framework +* gobuster +* tcpdump +* exploitdb +* python-impacket \ No newline at end of file