cd /news/cybersecurity/tools · home topics cybersecurity article
[ARTICLE · art-9750] src=gist.github.com ↗ pub= topic=cybersecurity verified=true sentiment=· neutral

tools

Based on the provided text, the article contains the source code for a batch file titled "BLUE MOON V6.5". The program presents a text-based menu with options to launch web applications, generate random usernames and passwords for Roblox and Discord, create random codes, simulate an IP scanner, and activate a "Metals Mode" display.

read3 min views18 publishedMay 22, 2026

.bat

  This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.

Learn more about bidirectional Unicode characters

Show hidden characters

@echo off

title BLUE MOON V6.5

setlocal EnableDelayedExpansion

color 0A

:: ================= BOOT ================= :boot

cls

echo ========================================== echo BLUE MOON SYSTEM STARTING

echo ==========================================

ping localhost -n 2 >nul

goto menu

:: ================= MENU ================= :menu

cls

echo ========================================================== echo BLUE MOON V6.5

echo ========================================================== echo.

echo [1] APPS

echo [2] ROBLOX GENERATOR

echo [3] DISCORD GENERATOR

echo [4] RANDOM CODE GENERATOR

echo [5] IP SCANNER

echo [6] METALS MODE

echo [7] EXIT

echo.

set /p choice=Select option : 

if "%choice%"=="1" goto apps

if "%choice%"=="2" goto roblox

if "%choice%"=="3" goto discord

if "%choice%"=="4" goto gen

if "%choice%"=="5" goto scan

if "%choice%"=="6" goto metals

if "%choice%"=="7" exit

goto menu

:: ================= APPS ================= :apps

cls

echo ================= APPS ================= echo.

echo [1] Discord

echo [2] Roblox

echo [3] Spotify

echo [4] Google

echo.

set /p app=Select number : 

if "%app%"=="1" start https://discord.com

if "%app%"=="2" start https://www.roblox.com

if "%app%"=="3" start https://open.spotify.com

if "%app%"=="4" start https://google.com

goto menu

:: ================= ROBLOX GENERATOR ================= :roblox

cls

set names=Dragon Pixel Cyber Ghost Ninja Blaze Storm Neon Nova Shadow

set /a n=%random% %% 10 + 1

set i=0

for %%x in (%names%) do (

    set /a i+=1

    if !i!==!n! set name=%%x

)

set /a id=%random% %% 900000 + 100000

call :genpass

cls

echo ========================================================== echo ROBLOX PROFILE GENERATED

echo ========================================================== echo Username : !name!!id!

echo Password : !pass!

echo Status : ACTIVE

echo ========================================================== goto menu

:: ================= DISCORD GENERATOR ================= :discord

cls

set names=Alex Jordan Morgan Taylor Casey Sky Neo Pixel Zen Nova

set /a n=%random% %% 10 + 1

set i=0

for %%x in (%names%) do (

    set /a i+=1

    if !i!==!n! set name=%%x

)

set /a tag=%random% %% 9999

call :genpass

cls

echo ========================================================== echo DISCORD PROFILE GENERATED

echo ========================================================== echo Username : !name!#%tag%

echo Password : !pass!

echo Status : ONLINE

echo ========================================================== goto menu

:: ================= RANDOM CODE GENERATOR ================= :gen

cls

call :code

echo ================= GENERATOR ================= echo.

echo Generated Code : !code!

goto menu

:: ================= IP SCANNER ================= :scan

cls

echo ================= IP SCANNER ================= set /a ip1=%random% %% 223 + 1

set /a ip2=%random% %% 255

set /a ip3=%random% %% 255

set /a ip4=%random% %% 255

echo Detected IP : !ip1!.!ip2!.!ip3!.!ip4!

goto menu

:: ================= METALS MODE ================= :metals

cls

color 07

echo ========================================================== echo METALS MODE

echo ========================================================== echo.

echo [IRON]   SYSTEM OK

echo [STEEL]  PROCESS ACTIVE

echo [GOLD]   UI READY

echo [SILVER] BACKUP ON

echo.

echo STATUS: STABLE

echo ========================================================== goto menu

:: ================= 0000-0000-0000-0000 CODE ================= :code

set code=

for /L %%i in (1,1,4) do (

    set part=

    for /L %%a in (1,1,4) do (

        set /a r=!random! %% 10

        set part=!part!!r!

    )

    set code=!code!!part!-

)

set code=!code:~0,-1!

exit /b

:: ================= ULTRA PASSWORD (GLOBAL) ================= :genpass

set chars=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()

set /a len=%random% %% 11 + 20

set pass=

for /L %%i in (1,1,%len%) do (

    set /a r=!random! %% 72

    for %%b in (!r!) do set pass=!pass!!chars:~%%b,1!

)

exit /b

── more in #cybersecurity 4 stories · sorted by recency
── more on @blue moon 3 stories trending now
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain — perfect for shipping the agent you just read about.

$git push zahid main
Live at https://your-agent.zahid.host
Get free account → Pricing
from €0/mo · no card required
LIVE [news/tools] indexed:0 read:3min 2026-05-22 ·