Skip to content
View xKiian's full-sized avatar
💯
Reverse engineering
💯
Reverse engineering

Highlights

  • Pro

Block or report xKiian

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
xKiian/README.md

Total time coded since Feb 28 2023

Profile Views Followers Stars

GitHub Streak

package xkian

import "fmt"

type Profile interface {
	Contact() string
	Languages() []string
	Coding() CodingProfile
}

type CodingProfile struct {
	Editors      []string
	Specialities []string
	Languages    map[string][]string
}

type Kian struct{}

func (Kian) Discord() string {
	return ".xkian"
}

func (Kian) Languages() []string {
	return []string{"German", "English"}
}

func (Kian) Coding() CodingProfile {
	return CodingProfile{
		Editors:      []string{"GoLand", "PyCharm", "VS Code"},
		Specialities: []string{"Reverse Engineering", "Automation"},
		Languages: map[string][]string{
			"pro":          {"Go", "Python"},
			"intermediate": {"C++"},
			"learning":     {"WebAssembly"},
		},
	}
}

func main() {
	var me Profile = Kian{}

	fmt.Println("discord:", me.Discord())
	fmt.Println("languages:", me.Languages())

	c := me.Coding()
	fmt.Println("editors:", c.Editors)
	fmt.Println("specialities:", c.Specialities)
	fmt.Println("coding languages:", c.Languages)
}

Pinned Loading

  1. awswaf awswaf Public

    AWS WAF Solver, full reverse implemented in 100% Python & Golang.

    Go 251 56

  2. cloudflare-jsd cloudflare-jsd Public

    Bypass Cloudflare's /h/b/jsd challenge using 100% python

    JavaScript 332 26

  3. vercel-botid vercel-botid Public

    Vercel BotID Solver "X-Is-Human" using 100% golang

    Go 46 1

  4. GeekedTest GeekedTest Public

    Geetest v4 slide, icon, gobang & ai solver - 100% python implementation - no browser needed

    Python 523 47

  5. binance-captcha-solver binance-captcha-solver Public

    Binance Captcha solver fully implemented in 100% python. Does not rely on any third party service

    Python 80 16

  6. ticketmaster-epsfc ticketmaster-epsfc Public

    ticketmaster PoW solver 🤷

    Go 15