Skip to content
View BLACK-ZER-0's full-sized avatar

Block or report BLACK-ZER-0

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
BLACK-ZER-0/README.md

Member of TEAM SHADOW STRIKER × BANGLADESH CYBER SQUAD


👤 About Me

  • Ethical Hacker
  • Termux Tool Developer
  • Python Automation Expert
  • Bangladesh Cyber Security Community Member
  • Creator of multiple high-performance CLI tools

🎯 Interests

  • Pentesting
  • Network Scanning
  • Website Hacking
  • UI/UX CLI designing
  • Security Research

🔗 Connect With Me

GitHub
Facebook
Telegram


🧰 Tools I Build

  • Termux Security Tools
  • Firewall Detector
  • DDOS Assist Engines
  • FB/IG/Gmail automation tools
  • Network Scanner
  • Fast OSINT utilities
  • API-based Bangladeshi number tools


🛠️ Tech Stack


📊 GitHub Stats


📈 Contribution Graph


🚀 Highlighted Code Snippets

🐍 Python – Spinner Loader

import sys, time, itertools

spinner = itertools.cycle(['⠋','⠙','⠹','⠸','⠼','⠴','⠦','⠧','⠇','⠏'])

def spin(text):
    for _ in range(40):
        sys.stdout.write(f"\r{text} " + next(spinner))
        sys.stdout.flush()
        time.sleep(0.08)
    print(f"\r{text} ✔")

spin("Initializing BLACK-ZER-0")

🐚 Shell – Spinner Loader

#!/bin/bash

spinner=('' '' '' '' '' '' '' '' '' '')

spin() {
    local text="$1"
   for i in {1..40}; do
        printf "\r%s %s" "$text" "${spinner[i % ${#spinner[@]}]}"
        sleep 0.08
    done
    printf "\r%s ✔\n" "$text"
}

spin "Initializing"

🌀 Go – Spinner Loader

package main

import (
	"fmt"
	"time"
)

func main() {
	spinner := []string{"⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"}
	text := "Initializing"

	for i := 0; i < 40; i++ {
		fmt.Printf("\r%s %s", text, spinner[i % len(spinner)])
		time.Sleep(80 * time.Millisecond)
	}
	fmt.Printf("\r%s ✔\n", text)
}

🛸 JAVA Script - Spinner Loader

const spinner = ['⠋','⠙','⠹','⠸','⠼','⠴','⠦','⠧','⠇','⠏'];
const text = "Initializing";

let i = 0;
const interval = setInterval(() => {
   process.stdout.write(`\r${text} ${spinner[i % spinner.length]}`);
   i++;
   if (i === 40) {
       clearInterval(interval);
       process.stdout.write(`\r${text} ✔\n`);
   }
}, 80);

🧭 C - Spinner Loader

#include <stdio.h>
#include <unistd.h>

int main() {
    const char *spinner[] = {"⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"};
    const char *text = "Initializing";

    for (int i = 0; i < 40; i++) {
        printf("\r%s %s", text, spinner[i % 10]);
        fflush(stdout);
        usleep(80000); // 80ms
    }

    printf("\r%s ✔\n", text);
    return 0;
}

⚙️ RUST - Spinner Loader

use std::{thread, time::Duration, io::{self, Write}};

fn main() {
    let spinner = ["⠋","⠙","⠹","⠸","⠼","⠴","⠦","⠧","⠇","⠏"];
    let text = "Initializing";

    for i in 0..40 {
        print!("\r{} {}", text, spinner[i % spinner.len()]);
        io::stdout().flush().unwrap();
        thread::sleep(Duration::from_millis(80));
    }

    print!("\r{} ✔\n", text);
}

💠 RUBY - Spinner Loader

spinner = ['⠋','⠙','⠹','⠸','⠼','⠴','⠦','⠧','⠇','⠏']
text = "Initializing"

40.times do |i|
  print "\r#{text} #{spinner[i % spinner.length]}"
  STDOUT.flush
  sleep 0.08
end

puts "\r#{text} ✔"

🌐 HTML/CSS – Minimal Black Zero Card

<div style="padding:20px;background:#111;border-radius:12px;color:white;width:300px;">
  <h2>BLACK-ZER-0</h2>
  <p>TEAM SHADOW STRIKER × BANGLADESH CYBER SQUAD</p>
</div>

🛡️ Teams

🔥 TEAM SHADOW STRIKER

🇧🇩 BANGLADESH CYBER SQUAD


⭐ If you like my profile, support with a star!

Built with ❤️ by BLACK-ZER-0

Pinned Loading

  1. CAM-HUNTER CAM-HUNTER Public

    A CCTV CAM hunting tool

    Python 4

  2. MJOLNIR-DDoS MJOLNIR-DDoS Public

    A DDoS tool

    Shell 2 2

  3. SUB-FINDER SUB-FINDER Public

    A SubFinder tool

    Python 1

  4. Fire-Eye Fire-Eye Public

    Forked from TEAMBCS/Fire-Eye

    A next-generation Firewall, CDN & WAF Fingerprinting Framework for Security Researchers, Bug Hunters, and Penetration Testers.

    Python 1

  5. Para-M-Scope Para-M-Scope Public

    Forked from TEAMBCS/Para-M-Scope

    Next-Generation Parameter Mapping & Discovery Engine

    Python

  6. Pic-INSPECTOR Pic-INSPECTOR Public

    Advanced Image Metadata & OCR Analyzer (Forensics / Security Tool)

    Python 1