Skip to content

Commit 407d86e

Browse files
committed
v1.0
1 parent e0deb02 commit 407d86e

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</h1>
44

55
<p align="center">
6-
This tool is a Python script that removes all traces from software, browsers, and the system (files, caches, histories, logs, and registry) with secure data overwriting.
6+
This tool is a Python script that removes all traces from software, browsers, and the system (files, caches, histories, logs, and registry) with secure data overwriting to prevent forensic analysis.
77
</p>
88

99
<h2>🚀 Features:</h2>
@@ -85,7 +85,7 @@
8585
<h2>👨‍💻 Credits:</h2>
8686

8787
<ul>
88-
<li>Developed by: <b>loxy0dev</b></li>
88+
<li>Developed by: <b>loxy0devlp</b></li>
8989
<li>GitHub: <a href="https://github.com/loxy0devlp">github.com/loxy0devlp</a></li>
9090
<li>GunsLol: <a href="https://guns.lol/loxy0dev">guns.lol/loxy0dev</a></li>
9191
<li>License: <b>MIT License</b></li>

cleaner.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
# Copyright (c) Cleaner by Loxy0dev
1+
# Copyright (c) Cleaner by Loxy0devlp
2+
# Licensed under the MIT License.
3+
# See LICENSE file in the project root for full license text.
24

35
import os, colorama, ctypes, sys, tempfile, pathlib, string, json, shutil
46

57
credits = {
68
"tool_name" : "Cleaner",
79
"tool_version" : "1.0",
10+
"tool_license" : "MIT License",
11+
"tool_github" : "github.com/loxy0devlp/Cleaner",
812
"developer" : "loxy0dev",
9-
"github" : "github.com/loxy0devlp/Cleaner",
1013
"gunslol" : "guns.lol/loxy0dev"
1114
}
1215

@@ -35,7 +38,7 @@
3538
\ \___| |_\ ___/ / __ \| | \ ___/| | \/
3639
\________/____/\_____>______/___|__/\_____>__|
3740
38-
{white + credits['github']}
41+
{white + credits["tool_github"]}
3942
"""
4043

4144
path_folder_tool = os.path.dirname(os.path.abspath(__file__))
@@ -177,7 +180,7 @@ def DeleteSubkeys(category_name, key, subkey_path, registry_key):
177180
while True:
178181
try:
179182
subkey_name = winreg.EnumKey(k, i)
180-
DeleteSubkeys(k, subkey_name)
183+
DeleteSubkeys(category_name, k, subkey_name, registry_key)
181184
except: break
182185
i += 1
183186
winreg.DeleteKey(key, subkey_path)

0 commit comments

Comments
 (0)