Skip to content

Commit

Permalink
[ci] fix flag format in check_sploit script
Browse files Browse the repository at this point in the history
  • Loading branch information
danilkaz committed Nov 3, 2023
1 parent 76cb89e commit 8201f9d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_perune.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
check_sploit_perune:
name: Check sploit perune
runs-on: ubuntu-20.04
if: ${{ false }}
if: ${{ true }}
steps:
- name: Checkout repo
uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/generate_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"funficfy",
"hyperborea-legends",
"memos",
"perune",
"rusi-trainer",
"rustest",
"werk",
Expand Down
2 changes: 1 addition & 1 deletion tools/check_sploit.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
SERVICE_NAME = sys.argv[1]
HOST = sys.argv[2]
FLAG_ID = "flag-id"
TEST_FLAG = "=" + "".join(random.choice(string.ascii_lowercase) for _ in range(32))
TEST_FLAG = "".join(random.choice(string.ascii_uppercase) for _ in range(31)) + "="


print(f"Checking sploit using flag '{TEST_FLAG}'")
Expand Down

0 comments on commit 8201f9d

Please sign in to comment.