• We just launched and are currently in beta. Join us as we build and grow the community.

URL:Email:Pas To User/Email:Passwords [PYTHON] SIMPLE

doinkedon

Cloud Misconfiguration Auditor
D Rep
0
0
0
Rep
0
D Vouches
0
0
0
Vouches
0
Posts
51
Likes
114
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 400 XP
Tool Was coded in python using ChatGPT it is simple but yet effective
Download link :
You must upgrade your account or reply in the thread to view hidden text.
Source Code
import tkinter as tk
from tkinter import filedialog
def remove_urls_and_save(input_file):
cleaned_lines = []
with open(input_file, 'r', encoding='utf-8') as file:
for line in file:
parts = line.strip().split(':')
if len(parts) >= 3:
user_pass = parts[-2] + ':' + parts[-1].split('@')[0]
cleaned_lines.append(user_pass)
output_file = "cleaned.txt"
with open(output_file, 'w', encoding='utf-8') as file:
file.write('\n'.join(cleaned_lines))
return len(cleaned_lines)
def browse_file():
filepath = filedialog.askopenfilename()
if filepath:
input_entry.delete(0, tk.END)
input_entry.insert(0, filepath)
def process_file():
input_file = input_entry.get()
if input_file:
num_lines_saved = remove_urls_and_save(input_file)
result_label.config(text=f"Lines saved: {num_lines_saved}")
root = tk.Tk()
root.title("URL and Credential Remover")
input_label = tk.Label(root, text="Input File:")
input_label.grid(row=0, column=0, padx=5, pady=5, sticky="w")
input_entry = tk.Entry(root, width=50)
input_entry.grid(row=0, column=1, padx=5, pady=5)
browse_button = tk.Button(root, text="Browse", command=browse_file)
browse_button.grid(row=0, column=2, padx=5, pady=5)
process_button = tk.Button(root, text="Process", command=process_file)
process_button.grid(row=1, column=1, padx=5, pady=5)
result_label = tk.Label(root, text="")
result_label.grid(row=2, column=0, columnspan=3, padx=5, pady=5)
root.mainloop()
This is a bump
Virustotal link https://www.virustotal.com/gui/file...1949f021b4c8a44625dfd734d8d729fe16a?nocache=1
 

432,645

312,569

312,578

Top