Skip to content

Commit

Permalink
fix(hyperborea-legends): update workflow, add shebangs
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexMoshkov committed Oct 29, 2023
1 parent 2b25420 commit 98ed0e5
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/generate_workflows.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,15 @@
"rustest"
]

CHECKERS = ["example"]
CHECKERS = [
"example",
"hyperborea-legends",
]

SPLOITS = ["example"]
SPLOITS = [
"example",
"hyperborea-legends"
]

TEMPLATE = """
name: Check {service}
Expand Down
2 changes: 2 additions & 0 deletions checkers/hyperborea-legends/hyperborea-legends.checker.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3.11

import base64
import traceback
import uuid
Expand Down
2 changes: 2 additions & 0 deletions sploits/hyperborea-legends/hyperborea-legends.1.sploit.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env python3.11

import sys
import time
import uuid
Expand Down

0 comments on commit 98ed0e5

Please sign in to comment.