bbot 2.3.0.5328rc0__py3-none-any.whl → 2.3.0.5336rc0__py3-none-any.whl
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.
Potentially problematic release.
This version of bbot might be problematic. Click here for more details.
- bbot/__init__.py +1 -1
- bbot/core/helpers/libmagic.py +34 -36
- bbot/scanner/scanner.py +1 -1
- {bbot-2.3.0.5328rc0.dist-info → bbot-2.3.0.5336rc0.dist-info}/METADATA +1 -1
- {bbot-2.3.0.5328rc0.dist-info → bbot-2.3.0.5336rc0.dist-info}/RECORD +8 -8
- {bbot-2.3.0.5328rc0.dist-info → bbot-2.3.0.5336rc0.dist-info}/LICENSE +0 -0
- {bbot-2.3.0.5328rc0.dist-info → bbot-2.3.0.5336rc0.dist-info}/WHEEL +0 -0
- {bbot-2.3.0.5328rc0.dist-info → bbot-2.3.0.5336rc0.dist-info}/entry_points.txt +0 -0
bbot/__init__.py
CHANGED
bbot/core/helpers/libmagic.py
CHANGED
|
@@ -15,54 +15,52 @@ def get_compression(mime_type):
|
|
|
15
15
|
mime_type = mime_type.lower()
|
|
16
16
|
# from https://github.com/cdgriffith/puremagic/blob/master/puremagic/magic_data.json
|
|
17
17
|
compression_map = {
|
|
18
|
-
"application/gzip": "gzip", # Gzip compressed file
|
|
19
|
-
"application/zip": "zip", # Zip archive
|
|
20
|
-
"application/x-bzip2": "bzip2", # Bzip2 compressed file
|
|
21
|
-
"application/x-xz": "xz", # XZ compressed file
|
|
22
|
-
"application/x-7z-compressed": "7z", # 7-Zip archive
|
|
23
|
-
"application/vnd.rar": "rar", # RAR archive
|
|
24
|
-
"application/x-lzma": "lzma", # LZMA compressed file
|
|
25
|
-
"application/x-compress": "compress", # Unix compress file
|
|
26
|
-
"application/zstd": "zstd", # Zstandard compressed file
|
|
27
|
-
"application/x-lz4": "lz4", # LZ4 compressed file
|
|
28
|
-
"application/x-tar": "tar", # Tar archive
|
|
29
|
-
"application/x-zip-compressed-fb2": "zip", # Zip archive (FB2)
|
|
30
|
-
"application/epub+zip": "zip", # EPUB book (Zip archive)
|
|
31
|
-
"application/pak": "pak", # PAK archive
|
|
32
|
-
"application/x-lha": "lha", # LHA archive
|
|
33
18
|
"application/arj": "arj", # ARJ archive
|
|
34
|
-
"application/vnd.ms-cab-compressed": "cab", # Microsoft Cabinet archive
|
|
35
|
-
"application/x-sit": "sit", # StuffIt archive
|
|
36
19
|
"application/binhex": "binhex", # BinHex encoded file
|
|
37
|
-
"application/
|
|
38
|
-
"application/x-alz": "alz", # ALZip archive
|
|
39
|
-
"application/x-tgz": "tgz", # Gzip compressed Tar archive
|
|
40
|
-
"application/x-gzip": "gzip", # Gzip compressed file
|
|
41
|
-
"application/x-lzip": "lzip", # Lzip compressed file
|
|
42
|
-
"application/x-zstd-compressed-tar": "zstd", # Zstandard compressed Tar archive
|
|
43
|
-
"application/x-lz4-compressed-tar": "lz4", # LZ4 compressed Tar archive
|
|
44
|
-
"application/vnd.comicbook+zip": "zip", # Comic book archive (Zip)
|
|
45
|
-
"application/vnd.palm": "palm", # Palm OS data
|
|
20
|
+
"application/epub+zip": "zip", # EPUB book (Zip archive)
|
|
46
21
|
"application/fictionbook2+zip": "zip", # FictionBook 2.0 (Zip)
|
|
47
22
|
"application/fictionbook3+zip": "zip", # FictionBook 3.0 (Zip)
|
|
23
|
+
"application/gzip": "gzip", # Gzip compressed file
|
|
24
|
+
"application/java-archive": "zip", # Java Archive (JAR)
|
|
25
|
+
"application/pak": "pak", # PAK archive
|
|
26
|
+
"application/vnd.android.package-archive": "zip", # Android package (APK)
|
|
27
|
+
"application/vnd.comicbook-rar": "rar", # Comic book archive (RAR)
|
|
28
|
+
"application/vnd.comicbook+zip": "zip", # Comic book archive (Zip)
|
|
29
|
+
"application/vnd.ms-cab-compressed": "cab", # Microsoft Cabinet archive
|
|
30
|
+
"application/vnd.palm": "palm", # Palm OS data
|
|
31
|
+
"application/vnd.rar": "rar", # RAR archive
|
|
32
|
+
"application/x-7z-compressed": "7z", # 7-Zip archive
|
|
33
|
+
"application/x-ace": "ace", # ACE archive
|
|
34
|
+
"application/x-alz": "alz", # ALZip archive
|
|
35
|
+
"application/x-arc": "arc", # ARC archive
|
|
36
|
+
"application/x-archive": "ar", # Unix archive
|
|
37
|
+
"application/x-bzip2": "bzip2", # Bzip2 compressed file
|
|
38
|
+
"application/x-compress": "compress", # Unix compress file
|
|
48
39
|
"application/x-cpio": "cpio", # CPIO archive
|
|
40
|
+
"application/x-gzip": "gzip", # Gzip compressed file
|
|
41
|
+
"application/x-itunes-ipa": "zip", # iOS application archive (IPA)
|
|
49
42
|
"application/x-java-pack200": "pack200", # Java Pack200 archive
|
|
43
|
+
"application/x-lha": "lha", # LHA archive
|
|
44
|
+
"application/x-lrzip": "lrzip", # Long Range ZIP
|
|
45
|
+
"application/x-lz4-compressed-tar": "lz4", # LZ4 compressed Tar archive
|
|
46
|
+
"application/x-lz4": "lz4", # LZ4 compressed file
|
|
47
|
+
"application/x-lzip": "lzip", # Lzip compressed file
|
|
48
|
+
"application/x-lzma": "lzma", # LZMA compressed file
|
|
50
49
|
"application/x-par2": "par2", # PAR2 recovery file
|
|
50
|
+
"application/x-qpress": "qpress", # Qpress archive
|
|
51
51
|
"application/x-rar-compressed": "rar", # RAR archive
|
|
52
|
-
"application/
|
|
53
|
-
"application/x-webarchive": "zip", # Web archive (Zip)
|
|
54
|
-
"application/vnd.android.package-archive": "zip", # Android package (APK)
|
|
55
|
-
"application/x-itunes-ipa": "zip", # iOS application archive (IPA)
|
|
52
|
+
"application/x-sit": "sit", # StuffIt archive
|
|
56
53
|
"application/x-stuffit": "sit", # StuffIt archive
|
|
57
|
-
"application/x-
|
|
58
|
-
"application/x-
|
|
54
|
+
"application/x-tar": "tar", # Tar archive
|
|
55
|
+
"application/x-tgz": "tgz", # Gzip compressed Tar archive
|
|
56
|
+
"application/x-webarchive": "zip", # Web archive (Zip)
|
|
59
57
|
"application/x-xar": "xar", # XAR archive
|
|
60
|
-
"application/x-
|
|
58
|
+
"application/x-xz": "xz", # XZ compressed file
|
|
59
|
+
"application/x-zip-compressed-fb2": "zip", # Zip archive (FB2)
|
|
61
60
|
"application/x-zoo": "zoo", # Zoo archive
|
|
62
|
-
"application/x-arc": "arc", # ARC archive
|
|
63
61
|
"application/x-zstd-compressed-tar": "zstd", # Zstandard compressed Tar archive
|
|
64
|
-
"application/
|
|
65
|
-
"application/
|
|
62
|
+
"application/zip": "zip", # Zip archive
|
|
63
|
+
"application/zstd": "zstd", # Zstandard compressed file
|
|
66
64
|
}
|
|
67
65
|
|
|
68
66
|
return compression_map.get(mime_type, "")
|
bbot/scanner/scanner.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
bbot/__init__.py,sha256=
|
|
1
|
+
bbot/__init__.py,sha256=64_F2PE18hTp73HNgaDhvsf-5sGFJgIhexCXhwya6Nw,130
|
|
2
2
|
bbot/cli.py,sha256=-9d6yCAYZaP0lIOCja-fSk3MiNclc-kbEgos10jYNUQ,10440
|
|
3
3
|
bbot/core/__init__.py,sha256=l255GJE_DvUnWvrRb0J5lG-iMztJ8zVvoweDOfegGtI,46
|
|
4
4
|
bbot/core/config/__init__.py,sha256=zYNw2Me6tsEr8hOOkLb4BQ97GB7Kis2k--G81S8vofU,342
|
|
@@ -28,7 +28,7 @@ bbot/core/helpers/dns/mock.py,sha256=Ztkp2aOuwDJ0NTQSlAk2H0s3Stx9wIM22Qm3VtqWMKM
|
|
|
28
28
|
bbot/core/helpers/files.py,sha256=GqrwNGJljUvGSzaOW5-Y357hkt7j88dOYbzQxJGsdTc,5787
|
|
29
29
|
bbot/core/helpers/helper.py,sha256=t6bv_wwI_MYlVpBAh9_c318rRSKGmoejx6qO9JOldbI,8423
|
|
30
30
|
bbot/core/helpers/interactsh.py,sha256=Q9IHUzH-T7e1s4YTHevHe-VJj1Mokv0EHY16UZJdl8M,12627
|
|
31
|
-
bbot/core/helpers/libmagic.py,sha256=
|
|
31
|
+
bbot/core/helpers/libmagic.py,sha256=RHx1WZ4KJlfSLSeb6NYW_Rel7WmuZUl5ebofASrc0HY,3461
|
|
32
32
|
bbot/core/helpers/misc.py,sha256=fphXVSGtW70m2xdUCPDdISLtLwIG1v_cL6RxgNGmJNk,87757
|
|
33
33
|
bbot/core/helpers/names_generator.py,sha256=Sj_Q-7KQyElEpalzlUadSwaniESqrIVVEle9ycPIiho,10322
|
|
34
34
|
bbot/core/helpers/ntlm.py,sha256=P2Xj4-GPos2iAzw4dfk0FJp6oGyycGhu2x6sLDVjYjs,2573
|
|
@@ -223,7 +223,7 @@ bbot/scanner/preset/conditions.py,sha256=hFL9cSIWGEsv2TfM5UGurf0c91cyaM8egb5IngB
|
|
|
223
223
|
bbot/scanner/preset/environ.py,sha256=-wbFk1YHpU8IJLKVw23Q3btQTICeX0iulURo7D673L0,4732
|
|
224
224
|
bbot/scanner/preset/path.py,sha256=Q29MO8cOEn690yW6bB08P72kbZ3C-H_TOEoXuwWnFM8,2274
|
|
225
225
|
bbot/scanner/preset/preset.py,sha256=QHUKc2raBArcdzn3op7BhLJHJpb5yjDsQumOvvOw85E,40058
|
|
226
|
-
bbot/scanner/scanner.py,sha256=
|
|
226
|
+
bbot/scanner/scanner.py,sha256=YPvu4KMKLAM_P-kzww5JdvX6JMVHC0gq6P0kUOt1_X8,53884
|
|
227
227
|
bbot/scanner/stats.py,sha256=re93sArKXZSiD0Owgqk2J3Kdvfm3RL4Y9Qy_VOcaVk8,3623
|
|
228
228
|
bbot/scanner/target.py,sha256=UORJIdyUeBKUmL2U-2kF9YBhR6v-17V_SCjv_AuIJgU,11469
|
|
229
229
|
bbot/scripts/docs.py,sha256=kg2CzovmUVGJx9hBZjAjUdE1hXeIwC7Ry3CyrnE8GL8,10782
|
|
@@ -410,8 +410,8 @@ bbot/wordlists/raft-small-extensions-lowercase_CLEANED.txt,sha256=ruUQwVfia1_m2u
|
|
|
410
410
|
bbot/wordlists/top_open_ports_nmap.txt,sha256=LmdFYkfapSxn1pVuQC2LkOIY2hMLgG-Xts7DVtYzweM,42727
|
|
411
411
|
bbot/wordlists/valid_url_schemes.txt,sha256=VciB-ww0y-O8Ii1wpTR6rJzGDiC2r-dhVsIJApS1ZYU,3309
|
|
412
412
|
bbot/wordlists/wordninja_dns.txt.gz,sha256=DYHvvfW0TvzrVwyprqODAk4tGOxv5ezNmCPSdPuDUnQ,570241
|
|
413
|
-
bbot-2.3.0.
|
|
414
|
-
bbot-2.3.0.
|
|
415
|
-
bbot-2.3.0.
|
|
416
|
-
bbot-2.3.0.
|
|
417
|
-
bbot-2.3.0.
|
|
413
|
+
bbot-2.3.0.5336rc0.dist-info/LICENSE,sha256=GzeCzK17hhQQDNow0_r0L8OfLpeTKQjFQwBQU7ZUymg,32473
|
|
414
|
+
bbot-2.3.0.5336rc0.dist-info/METADATA,sha256=8uDNDLBuulreOPW5vhd6ZaD5x94NcyjyAxbW7W-8hOU,17239
|
|
415
|
+
bbot-2.3.0.5336rc0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
416
|
+
bbot-2.3.0.5336rc0.dist-info/entry_points.txt,sha256=cWjvcU_lLrzzJgjcjF7yeGuRA_eDS8pQ-kmPUAyOBfo,38
|
|
417
|
+
bbot-2.3.0.5336rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|