Skip to content

Commit e86b67c

Browse files
[0.1.0] Add pyinstaller compilation files
1 parent 79647f5 commit e86b67c

File tree

3 files changed

+129
-0
lines changed

3 files changed

+129
-0
lines changed

file_version_info.txt

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# UTF-8
2+
#
3+
4+
VSVersionInfo(
5+
ffi=FixedFileInfo(
6+
filevers=(1, 0, 0, 0),
7+
prodvers=(1, 0, 0, 0),
8+
mask=0x3f,
9+
flags=0x0,
10+
OS=0x4,
11+
fileType=0x1,
12+
subtype=0x0,
13+
date=(0, 0)
14+
),
15+
kids=[
16+
StringFileInfo(
17+
[
18+
StringTable(
19+
u'000004b0',
20+
[StringStruct(u'CompanyName', u'MauriceLambert'),
21+
StringStruct(u'FileDescription', u'This executable implements an advenced ReverseShell.'),
22+
StringStruct(u'FileVersion', u'0.1.0'),
23+
StringStruct(u'InternalName', u'ReverseShell'),
24+
StringStruct(u'LegalCopyright', u'ReverseShell Copyright (C) 2023 Maurice Lambert'),
25+
StringStruct(u'OriginalFilename', u'ReverseShell.exe'),
26+
StringStruct(u'ProductName', u'ReverseShell'),
27+
StringStruct(u'ProductVersion', u'0.1.0')])
28+
]),
29+
VarFileInfo([VarStruct(u'Translation', [0, 1200])])
30+
]
31+
)
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
block_cipher = None
5+
6+
7+
a = Analysis(
8+
["clients\\shellclienthttpsencrypt_advanced_0_1_0.py"],
9+
pathex=[],
10+
binaries=[],
11+
datas=[],
12+
hiddenimports=[],
13+
hookspath=[],
14+
hooksconfig={},
15+
runtime_hooks=[],
16+
excludes=[],
17+
win_no_prefer_redirects=False,
18+
win_private_assemblies=False,
19+
cipher=block_cipher,
20+
noarchive=False,
21+
)
22+
23+
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
24+
25+
exe = EXE(
26+
pyz,
27+
a.scripts,
28+
[],
29+
exclude_binaries=True,
30+
name="ReverseShell",
31+
debug=False,
32+
bootloader_ignore_signals=False,
33+
strip=True,
34+
upx=True,
35+
console=False,
36+
disable_windowed_traceback=True,
37+
target_arch=None,
38+
codesign_identity=None,
39+
entitlements_file=None,
40+
version="file_version_info.txt",
41+
icon="ReverseShell.ico",
42+
)
43+
coll = COLLECT(
44+
exe,
45+
a.binaries,
46+
a.zipfiles,
47+
a.datas,
48+
strip=False,
49+
upx=True,
50+
upx_exclude=[],
51+
name="ReverseShell",
52+
)
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
block_cipher = None
5+
6+
7+
a = Analysis(
8+
["clients\\shellclienthttpsencrypt_advanced_0_1_0.py"],
9+
pathex=[],
10+
binaries=[],
11+
datas=[],
12+
hiddenimports=[],
13+
hookspath=[],
14+
hooksconfig={},
15+
runtime_hooks=[],
16+
excludes=[],
17+
win_no_prefer_redirects=False,
18+
win_private_assemblies=False,
19+
cipher=block_cipher,
20+
noarchive=False,
21+
)
22+
23+
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
24+
25+
exe = EXE(
26+
pyz,
27+
a.scripts,
28+
a.binaries,
29+
a.zipfiles,
30+
a.datas,
31+
[],
32+
name="ReverseShell",
33+
debug=False,
34+
bootloader_ignore_signals=False,
35+
strip=True,
36+
upx=True,
37+
upx_exclude=[],
38+
runtime_tmpdir=None,
39+
console=False,
40+
disable_windowed_traceback=True,
41+
target_arch=None,
42+
codesign_identity=None,
43+
entitlements_file=None,
44+
version="file_version_info.txt",
45+
icon="ReverseShell.ico",
46+
)

0 commit comments

Comments
 (0)