Skip to content

Commit 048866b

Browse files
committed
puncia[0.30]
1 parent 11776ee commit 048866b

File tree

3 files changed

+14
-13
lines changed

3 files changed

+14
-13
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ Puncia utilizes three of our intelligent APIs to gather the results - <br>
8686
8787
## Noteworthy Mentions
8888
89+
- [Passive Subdomain Enumeration: Uncovering More Subdomains than Subfinder & Amass](https://osintteam.com/passive-subdomain-enumeration-uncovering-more-subdomains-than-subfinder-amass/)
8990
- [Around 1000 exploitable cybersecurity vulnerabilities that MITRE & NIST ‘might’ have missed but China or Russia didn’t.](https://blog.arpsyndicate.io/over-a-1000-vulnerabilities-that-mitre-nist-might-have-missed-but-china-or-russia-did-not-871b2364a526)
9091
- [Utilizing GitHub Actions for gathering Subdomain & Exploit Intelligence](https://blog.arpsyndicate.io/utilizing-github-actions-for-gathering-subdomain-exploit-intelligence-bbc79c19bb85)
9192
- [Introducing Exploit Observer — More than Shodan Exploits, Less than Vulners](https://blog.arpsyndicate.io/introducing-exploit-observer-more-than-shodan-exploits-less-than-vulners-23eaea466e4a)

puncia/__main__.py

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -189,22 +189,22 @@ def query_api(mode, query, output_file=None, cid=None, apikey=""):
189189
existing_data_clusters.extend(response.get("clusters", []))
190190
existing_data["clusters"] = list(set(existing_data_clusters))
191191
existing_data["clusters"].sort()
192-
if "aliases" in existing_data:
193-
existing_data_clusters = existing_data.get("aliases", [])
194-
existing_data_clusters.extend(response.get("aliases", []))
195-
existing_data["aliases"] = list(set(existing_data_clusters))
196-
existing_data["aliases"].sort()
192+
if "related" in existing_data:
193+
existing_data_related = existing_data.get("related", [])
194+
existing_data_related.extend(response.get("related", []))
195+
existing_data["related"] = list(set(existing_data_related))
196+
existing_data["related"].sort()
197197
if "products" in existing_data:
198-
existing_data_clusters = existing_data.get("products", [])
199-
existing_data_clusters.extend(response.get("products", []))
200-
existing_data["products"] = list(set(existing_data_clusters))
198+
existing_data_products = existing_data.get("products", [])
199+
existing_data_products.extend(response.get("products", []))
200+
existing_data["products"] = list(set(existing_data_products))
201201
existing_data["products"].sort()
202202
total_entries = 0
203203
for lang in existing_data["entries"]:
204204
total_entries = len(existing_data["entries"][lang]) + total_entries
205-
if "priority" in existing_data:
206-
existing_data["priority"] = (
207-
response.get("priority", 1) + existing_data["priority"]
205+
if "popularity" in existing_data:
206+
existing_data["popularity"] = (
207+
response.get("popularity", 1) + existing_data["popularity"]
208208
) / 2
209209
if "vedas-timestamp" in response:
210210
existing_data["vedas-timestamp"] = response["vedas-timestamp"]
@@ -252,7 +252,7 @@ def add_component(name, version):
252252
def main():
253253
try:
254254
print("---------")
255-
print("Panthera(P.)uncia [v0.29]")
255+
print("Panthera(P.)uncia [v0.30]")
256256
print("A.R.P. Syndicate [https://www.arpsyndicate.io]")
257257
print("---------")
258258

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="puncia",
5-
version="0.29",
5+
version="0.30",
66
author="A.R.P. Syndicate",
77
author_email="ayush@arpsyndicate.io",
88
keywords="information discovery cyber intelligence llm ai chat subdomains subdomain exploits exploit sbom cyclonedx arpsyndicate panthera uncia puncia snow leopard",

0 commit comments

Comments
 (0)