Skip to content

Commit

Permalink
Update cracker.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
craeckor authored Oct 6, 2023
1 parent 00e1f76 commit 310530e
Showing 1 changed file with 23 additions and 71 deletions.
94 changes: 23 additions & 71 deletions .github/workflows/cracker.yml
Original file line number Diff line number Diff line change
@@ -1,76 +1,28 @@
name: Cracker-RDP
name: Generate xml sitemap

on: [push, workflow_dispatch]
on:
push:
branches: [ main ]

jobs:
build:

runs-on: windows-latest
sitemap_job:
runs-on: ubuntu-latest
name: Generate a sitemap

steps:
- name: Download
run: Invoke-WebRequest https://bin.equinox.io/c/4VmDzA7iaHb/ngrok-stable-windows-amd64.zip -OutFile ngrok.zip
- name: Extract
run: Expand-Archive ngrok.zip
- name: Auth
run: .\ngrok\ngrok.exe authtoken $Env:NGROK_AUTH_TOKEN
env:
NGROK_AUTH_TOKEN: ${{ secrets.NGROK_AUTH_TOKEN }}
- name: Enable TS
run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server'-name "fDenyTSConnections" -Value 0
- run: Enable-NetFirewallRule -DisplayGroup "Remote Desktop"
- run: Set-ItemProperty -Path 'HKLM:\System\CurrentControlSet\Control\Terminal Server\WinStations\RDP-Tcp' -name "UserAuthentication" -Value 1
- run: Set-LocalUser -Name "runneradmin" -Password (ConvertTo-SecureString -AsPlainText "P@ssw0rd!" -Force)
- name: Run
run: Start-Process .\ngrok\ngrok.exe -ArgumentList "tcp 3389"
- name: sleep1
run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- name: sleep2
run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- name: sleep3
run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- run: sleep 1000
- name: Checkout the repo
uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Generate the sitemap
id: sitemap
uses: cicirello/generate-sitemap@v1
with:
base-url-path: https://uupdump.craeckor.ch/

- name: Output stats
run: |
echo "sitemap-path = ${{ steps.sitemap.outputs.sitemap-path }}"
echo "url-count = ${{ steps.sitemap.outputs.url-count }}"
echo "excluded-count = ${{ steps.sitemap.outputs.excluded-count }}"

0 comments on commit 310530e

Please sign in to comment.