Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove shell=True from scripts #2257

Merged
merged 3 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -411,9 +411,10 @@ ControlNet dataset is used to specify the mask. The mask images should be the RG
### 2024/04/10 (v23.1.5)
- Fix issue with Textual Inversion configuration file selection.
- Upgrade to gradio 4.19.2 to fix several high security risks associated to earlier versions. Hoping this will not introduce undorseen issues.
- Upgrade to gradio 4.19.2 to fix several high security risks associated to earlier versions. This is a major upgrade, moving from 3.x to 4.x. Hoping this will not introduce undorseen issues.
- Upgrade transformers to 4.38.0 to fix a low severity security issue.
- Add explicit --do_not_share parameter to kohya_gui.py to avoid sharing the GUI on platforms like Kaggle.
- Remove shell=True from subprocess calls to avoid security issues when using the GUI.
### 2024/04/08 (v23.1.4)
Expand Down
1 change: 1 addition & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ rik="rik"
koo="koo"
yos="yos"
wn="wn"
parm = "parm"


[files]
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/basic_caption_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def caption_images(
)

# Run the command based on the operating system
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

# Check if overwrite option is enabled
if overwrite:
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/blip_caption_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def caption_images(
)

# Run the command in the sd-scripts folder context
subprocess.run(run_cmd, shell=True, env=env, cwd=f"{scriptdir}/sd-scripts")
subprocess.run(run_cmd, env=env, cwd=f"{scriptdir}/sd-scripts")

# Add prefix and postfix
add_pre_postfix(
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/class_command_executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def execute_command(self, run_cmd: str, **kwargs):
if self.process and self.process.poll() is None:
log.info("The command is already running. Please wait for it to finish.")
else:
self.process = subprocess.Popen(run_cmd, shell=True, **kwargs)
self.process = subprocess.Popen(run_cmd, **kwargs)

def kill_command(self):
"""
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/convert_lcm_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def convert_lcm(name, model_path, lora_scale, model_type):
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

# Return a success message
log.info("Done extracting...")
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/convert_model_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def convert_model(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)


###
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/extract_lora_from_dylora_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def extract_dylora(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

log.info("Done extracting DyLoRA...")

Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/extract_lora_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def extract_lora(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)


###
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/extract_lycoris_locon_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def extract_lycoris_locon(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

log.info("Done extracting...")

Expand Down
6 changes: 4 additions & 2 deletions kohya_gui/finetune_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,10 +517,11 @@ def train_model(
env["PYTHONPATH"] = (
rf"{scriptdir}{os.pathsep}{scriptdir}/sd-scripts{os.pathsep}{env.get('PYTHONPATH', '')}"
)
env["TF_ENABLE_ONEDNN_OPTS"] = "0"

if not print_only:
# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

# create images buckets
if generate_image_buckets:
Expand Down Expand Up @@ -550,10 +551,11 @@ def train_model(
env["PYTHONPATH"] = (
rf"{scriptdir}{os.pathsep}{scriptdir}/sd-scripts{os.pathsep}{env.get('PYTHONPATH', '')}"
)
env["TF_ENABLE_ONEDNN_OPTS"] = "0"

if not print_only:
# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

image_num = len(
[
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/git_caption_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def caption_images(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

# Add prefix and postfix
add_pre_postfix(
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/group_images_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def group_images(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

log.info("...grouping done")

Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/merge_lora_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -452,6 +452,6 @@ def merge_lora(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

log.info("Done merging...")
2 changes: 1 addition & 1 deletion kohya_gui/merge_lycoris_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def merge_lycoris(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

log.info("Done merging...")

Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/resize_lora_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def resize_lora(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

log.info("Done resizing...")

Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/svd_merge_lora_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def svd_merge_lora(
)

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)


###
Expand Down
2 changes: 1 addition & 1 deletion kohya_gui/wd14_caption_gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def caption_images(
env["TF_ENABLE_ONEDNN_OPTS"] = "0"

# Run the command
subprocess.run(run_cmd, shell=True, env=env)
subprocess.run(run_cmd, env=env)

# Add prefix and postfix
add_pre_postfix(
Expand Down