Skip to content

Commit

Permalink
puncia[0.24]
Browse files Browse the repository at this point in the history
  • Loading branch information
g147 committed Aug 22, 2024
1 parent 66a2858 commit 01006ac
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion puncia/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ def query_api(mode, query, output_file=None, cid=None, akey=""):
existing_data["priority"] = (
response.get("priority", 1) + existing_data["priority"]
) / 2
if "vedas-timestamp" in response:
existing_data["vedas-timestamp"] = response["vedas-timestamp"]
if "aliases" in response:
existing_data["aliases"] = response["aliases"]
if len(existing_data["description"]) > 0:
if "description" in response and len(response["description"]) > 0:
existing_data["description"] = response["description"]
Expand Down Expand Up @@ -163,7 +167,7 @@ def add_component(name, version):
def main():
try:
print("---------")
print("Panthera(P.)uncia [v0.23]")
print("Panthera(P.)uncia [v0.24]")
print("A.R.P. Syndicate [https://www.arpsyndicate.io]")
print("---------")

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

setup(
name="puncia",
version="0.23",
version="0.24",
author="A.R.P. Syndicate",
author_email="ayush@arpsyndicate.io",
keywords="subdomains subdomain exploits exploit arpsyndicate panthera uncia puncia snow leopard",
keywords="subdomains subdomain exploits exploit sbom cyclonedx arpsyndicate panthera uncia puncia snow leopard",
url="https://github.com/ARPSyndicate/puncia",
project_urls={
"A.R.P. Syndicate": "https://www.arpsyndicate.io",
Expand Down

0 comments on commit 01006ac

Please sign in to comment.