Skip to content

Commit

Permalink
upping readme, gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Skelsec committed Nov 30, 2023
1 parent 085b6de commit 1e8fa86
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 21 deletions.
29 changes: 14 additions & 15 deletions .github/workflows/python-windows-exe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name: Build Windows Executable - PyInstaller
on:
push:
branches:
- master # Trigger on push to master branch
- main # Trigger on push to master branch

jobs:
build:
Expand All @@ -30,13 +30,6 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: '3.9'

- name: Determine Version
id: version
run: |
$VERSION = python -c "import sys; sys.path.append('${{ github.event.repository.name }}'); import _version; print(_version.__version__)"
echo "PROJVERSION=$VERSION" >> $GITHUB_STATE
shell: powershell

- name: Install Dependencies
run: |
Expand All @@ -48,13 +41,15 @@ jobs:

- name: Compress executables
run: |
"C:\Program Files\7-Zip\7z.exe a secure.7z builder\pyinstaller\*.exe -pprotected"
"C:\Program Files\7-Zip\7z.exe" a secure.7z *.exe -pprotected
working-directory: ${{ github.workspace }}/builder/pyinstaller
shell: cmd

- name: Upload Executable
uses: actions/upload-artifact@v2
with:
name: executable
path: builder\pyinstaller\*.exe
#- name: Upload Executable
# uses: actions/upload-artifact@v2
# with:
# name: executable
# path: builder\pyinstaller\*.exe

- name: 'Set up Cloud SDK'
uses: 'google-github-actions/setup-gcloud@v1'
Expand All @@ -63,4 +58,8 @@ jobs:

- name: Upload Executables to GCS
run: |
gsutil cp builder\pyinstaller\*.exe gs://skelsec-github-foss/${{ github.event.repository.name }}/${{ github.core.saveState.PROJVERSION }}/
$PROJVERSION = python -c "import sys; sys.path.append('${{ github.event.repository.name }}'); import _version; print(_version.__version__)"
Write-Host "Detected Version: $PROJVERSION"
gsutil cp builder\pyinstaller\*.exe gs://skelsec-github-foss/${{ github.event.repository.name }}/$PROJVERSION/
gsutil cp builder\pyinstaller\*.7z gs://skelsec-github-foss/${{ github.event.repository.name }}/$PROJVERSION/
shell: powershell
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
![Supported Python versions](https://img.shields.io/badge/python-3.6+-blue.svg) [![Twitter](https://img.shields.io/twitter/follow/skelsec?label=skelsec&style=social)](https://twitter.com/intent/follow?screen_name=skelsec)
![Supported Python versions](https://img.shields.io/badge/python-3.7+-blue.svg) [![Twitter](https://img.shields.io/twitter/follow/skelsec?label=skelsec&style=social)](https://twitter.com/intent/follow?screen_name=skelsec)

## :triangular_flag_on_post: Sponsors

# minikerberos
`minikerberos` is a kerberos client library written in `Python>=3.6` it is the kerberos library used in other tools suchs as `pypykatz`, `aiosmb` and `msldap`. It also comes with multiple useful examples for pentesters who wish to perform security audits on the kerberos protocol.
If you like this project, consider sponsoring it on GitHub! [Sponsors](https://github.com/sponsors/skelsec/)

## :triangular_flag_on_post: Sponsors

If you want to sponsor this project, you can do it on GitHub now!
# minikerberos
`minikerberos` is a kerberos client library written in `Python>=3.6` it is the kerberos library used in other tools suchs as `pypykatz`, `aiosmb` and `msldap`. It also comes with multiple useful examples for pentesters who wish to perform security audits on the kerberos protocol.


## Installation

Install it via either cloning it from GitHub and using
Expand Down

0 comments on commit 1e8fa86

Please sign in to comment.