-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
180 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: puncia-actions | ||
|
||
on: | ||
schedule: | ||
- cron: '0 0 * * *' | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
puncia: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install Puncia | ||
run: | | ||
pip3 install puncia | ||
- name: Run Puncia | ||
run: | | ||
puncia bulk ${{ github.workspace }}/inputs.json ${{ github.workspace }}/ | ||
- name: Commit and push changes | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Puncia Actions" | ||
git add . | ||
git commit -m "$(date)" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
setup( | ||
name="puncia", | ||
version="0.14", | ||
version="0.15", | ||
author="A.R.P. Syndicate", | ||
author_email="[email protected]", | ||
keywords="subdomains subdomain exploits exploit arpsyndicate panthera uncia puncia snow leopard", | ||
|
@@ -14,7 +14,7 @@ | |
}, | ||
long_description=open("README.md").read(), | ||
long_description_content_type="text/markdown", | ||
description="The Panthera(P.)uncia of Cybersecurity - Subdomain & Exploit Hunter powered by AI", | ||
description="The Panthera(P.)uncia of Cybersecurity - Official CLI utility for Subdomain Center & Exploit Observer", | ||
packages=find_packages(), | ||
install_requires=[ | ||
"requests", | ||
|