Skip to content
View 9dl's full-sized avatar
  • Obscurity.cc
  • Germany
  • 18:02 (UTC +01:00)

Organizations

@Axion-Security

Block or report 9dl

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
9dl/README.md
package main

import (
    "fmt"
    "strings"
)

type Developer struct {
    Name              string
    Code              []string
    Interests         []string
    OperatingSystems  []string
    ToolsUsed         []string
    IDEs              []string
}

func (d Developer) DisplayProfile() {
    fmt.Printf("πŸ‘‹ Hello! I'm %s, a versatile developer with a passion for technology.\n\n", d.Name)
    
    fmt.Printf("πŸ’» Coding Languages:\n   %s\n\n", strings.Join(d.Code, ", "))
    fmt.Printf("🌐 Areas of Interest:\n   %s\n\n", strings.Join(d.Interests, ", "))
    fmt.Printf("πŸ–₯️ Operating Systems:\n   %s\n\n", strings.Join(d.OperatingSystems, ", "))
    fmt.Printf("πŸ› οΈ Tools & Technologies:\n   %s\n\n", strings.Join(d.ToolsUsed, ", "))
    fmt.Printf("πŸ–‹οΈ Preferred IDEs:\n   %s\n", strings.Join(d.IDEs, ", "))
}

func main() {
    developer := Developer{
        Name:             "9dl",
        Code:             []string{"Go (Golang)", "C#", "Next.js", "Python", "C++"},
        Interests:        []string{"Cybersecurity", "Reverse Engineering", "Backend Development", "Frontend Development & UI/UX"},
        OperatingSystems: []string{"Windows 11 with WSL2 (Kali Linux, Ubuntu)"},
        ToolsUsed:        []string{"Git Bash", "VMware Workstation", "MobaXterm", "PuTTY", "Postman API Platform"},
        IDEs:             []string{"JetBrains WebStorm", "JetBrains GoLand", "JetBrains CLion" "JetBrains Rider" "JetBrains Fleet"},
    }

    developer.DisplayProfile()
}

Visitor Counter:

Pinned Loading

  1. Websploit Websploit Public

    New Exploit could be used to gather Vulnerable Links ( PoC )

    NSIS 2

  2. NullOps-Suite NullOps-Suite Public

    Multifunctional Penetration Testing Tool developed in Go *24 Modules*

    Go 1

  3. RobotsSniffer RobotsSniffer Public

    Tool to analyze and parse website robots.txt for crawler rules.

    C#

  4. WhoAreYou WhoAreYou Public

    Multi-functional Vulnerability Testing Tool in C#

    C#

  5. Axion-Security/Atomic Axion-Security/Atomic Public

    Quantum Security Firmware for M5Stack CPlus Devices

    C++ 5

  6. Axion-Security/GoInjection Axion-Security/GoInjection Public

    Automated SQL Injection written in Golang

    Go 3