blitcp 4.0.2__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.
- blitcp-4.0.2/.gitignore +52 -0
- blitcp-4.0.2/CHANGELOG.md +1017 -0
- blitcp-4.0.2/LICENSE +202 -0
- blitcp-4.0.2/NOTICE +44 -0
- blitcp-4.0.2/PKG-INFO +144 -0
- blitcp-4.0.2/README.md +102 -0
- blitcp-4.0.2/blitcp.py +15516 -0
- blitcp-4.0.2/blitcp_gui.py +4957 -0
- blitcp-4.0.2/locales/de/LC_MESSAGES/blitcp.mo +0 -0
- blitcp-4.0.2/locales/de/LC_MESSAGES/blitcp.po +969 -0
- blitcp-4.0.2/locales/el/LC_MESSAGES/blitcp.mo +0 -0
- blitcp-4.0.2/locales/el/LC_MESSAGES/blitcp.po +969 -0
- blitcp-4.0.2/locales/es/LC_MESSAGES/blitcp.mo +0 -0
- blitcp-4.0.2/locales/es/LC_MESSAGES/blitcp.po +969 -0
- blitcp-4.0.2/locales/it/LC_MESSAGES/blitcp.mo +0 -0
- blitcp-4.0.2/locales/it/LC_MESSAGES/blitcp.po +969 -0
- blitcp-4.0.2/locales/ja/LC_MESSAGES/blitcp.mo +0 -0
- blitcp-4.0.2/locales/ja/LC_MESSAGES/blitcp.po +969 -0
- blitcp-4.0.2/locales/zh_CN/LC_MESSAGES/blitcp.mo +0 -0
- blitcp-4.0.2/locales/zh_CN/LC_MESSAGES/blitcp.po +969 -0
- blitcp-4.0.2/packaging/blitcp_locales/__init__.py +3 -0
- blitcp-4.0.2/pyproject.toml +81 -0
blitcp-4.0.2/.gitignore
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
REPORT.md
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.pyc
|
|
4
|
+
# Local test artifacts (not part of the tool)
|
|
5
|
+
blue1
|
|
6
|
+
downloads1
|
|
7
|
+
languages
|
|
8
|
+
# Test files and dev shims kept local only, not published to GitHub
|
|
9
|
+
test_*.py
|
|
10
|
+
pentest_scenarios.py
|
|
11
|
+
fs_detect.py
|
|
12
|
+
check_exploits.py
|
|
13
|
+
# TLS material (Cloudflare Origin Cert + private key for fast-copy.dev)
|
|
14
|
+
*.pem
|
|
15
|
+
*.key
|
|
16
|
+
*.crt
|
|
17
|
+
|
|
18
|
+
# fast-copy credentials live next to the script — never commit them
|
|
19
|
+
credentials.json
|
|
20
|
+
fastcopy-creds.json
|
|
21
|
+
|
|
22
|
+
# Google Cloud service-account key(s) — never commit
|
|
23
|
+
fastcopy-498019-33a083612ff5.json
|
|
24
|
+
*-service-account*.json
|
|
25
|
+
gcs-*.json
|
|
26
|
+
keys.txt
|
|
27
|
+
credentials.json.bak.*
|
|
28
|
+
|
|
29
|
+
# Local-only UAT & monitoring tooling (kept out of the repo by decision)
|
|
30
|
+
uat.py
|
|
31
|
+
uat_*.py
|
|
32
|
+
find_my_code.py
|
|
33
|
+
find_my_mentions.py
|
|
34
|
+
license_monitor.sh
|
|
35
|
+
license_monitor_logs/
|
|
36
|
+
|
|
37
|
+
# Build & release artifacts
|
|
38
|
+
build/
|
|
39
|
+
dist/
|
|
40
|
+
fast_copy.tar.gz
|
|
41
|
+
node_modules/
|
|
42
|
+
|
|
43
|
+
# Local state, backups and superseded site snapshots — never commit
|
|
44
|
+
.fc/
|
|
45
|
+
.claude/
|
|
46
|
+
gcs_fastcopies/
|
|
47
|
+
k8s/.fast_copy_manifest.json
|
|
48
|
+
k8s/*.tar.gz
|
|
49
|
+
k8s/fast-copy-landing-backup-*.tar.gz
|
|
50
|
+
k8s/fast-copy-site/
|
|
51
|
+
k8s/fast-copy-contact-worker/dist/
|
|
52
|
+
k8s/traffic/__pycache__/
|