Skip to content
View Mester-Oxdan's full-sized avatar

Highlights

  • Pro

Block or report Mester-Oxdan

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

Mester-Oxdan

Mistakes are the light that reveals dark world, only those who dare to fix, can understand their shape for long.


█ TECH KRIEGFORGE 🔥

Languages

Python C C++ HTML5 CSS3 Javascript PHP SQLite


Tools

Linux Kali Linux Git VS Code Visual Studio Unreal Engine


█ Analytics/Stats


Russian Way In

яндекс навигатор - я родился

лунтик фраза - помогатор

фексос дем демич папа у меня хто? - фиксик

пиноккио пила пилить - дерево

вегибатор помогатор хто я? - угощение

хочешь покажу - детей


**порядок дорожного движения

**фиолетовая мелочь

**русский алфавит

**числа цезарь

**A1Z26 33-18-15...

**парами влюбление а ты волк одинокий делений

**Base64 в нашем коде на развороте

**не ливай число поменяй

import hashlib
import base64

cipher_map = [chr(i) for i in range(ord('а'), ord('я')+1)]
cipher_map.insert(6, 'ё')

def rotate_cipher(text, rotation=33):
    result = ""
    for char in text:
        if char in cipher_map:
            idx = (cipher_map.index(char) + rotation) % len(cipher_map)
            result += cipher_map[idx]
        else:
            result += char
    return result

encoded_strings = [
    "VkNoTjN4SDM=",
    "RU5HM0Y1U0g=",
    "SDR4Tm5WQ1I=",
    "dGhpc2lzbm90aXQ="
]

for encoded in encoded_strings:
    try:
        decoded = base64.b64decode(encoded).decode('utf-8', errors='ignore')
        rotated = rotate_cipher(decoded, 17)
        hashed = hashlib.md5(rotated.encode()).hexdigest()
        
        if hashed.startswith('a3f'):
            print(f"Possible key: {hashed[:8]}")
        else:
            print(f"Invalid: {hashed[:8]}")
    except:
        print(f"Failed: {encoded}")

numbers = [17, 16, 14, 16, 4, 1, 20, 16, 18, 5, 6, 18, 6, 3, 16]
total = sum(numbers)

if total % 2 == 0:
    print("Even sum detected - wrong path")
else:
    print("Odd sum - continue")

def convert_to_invite(val):
    alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"
    result = ""
    while val > 0:
        result += alphabet[val % 36]
        val //= 36
    return result[::-1]

invite_code = convert_to_invite(total)
print(f"Generated code: {invite_code}")
print(f"discord.gg/{invite_code}")

The Way In

Our desire is a bait, who follows get in the trap - barrier

The way out only 1, takes determination to follow the track - underground

Skeleton say before eat, Bone appétit! His name is - Papa Dreemurr

Water falls, quiet is here your investigations lead to justice feast - Fish

The story ends, king is here, with determination leads to justice and peace - lazy sh*t


**Order matters key in the trust

**ASCII is the art, make it number 1

**first and last always subtracts

**Modulo 26: ? % 26 = ???

**Ronaldo is the goat, lives at base 64th

**Caesar is the lord the one who conquer Europe

import base64
import hashlib

def vortex_cipher(text, cycles=3):
    result = text
    for _ in range(cycles):
        rotated = ""
        for i, char in enumerate(result):
            if char.isalpha():
                base = ord('A') if char.isupper() else ord('a')
                shift = i % 5 + 7
                rotated += chr((ord(char) - base + shift) % 26 + base)
            else:
                rotated += char
        result = rotated[::-1]
    return result

encoded_strings = [
    "T2JmM3Y0djR3",
    "UXpEa2F3TzNw",
    "V1dKc2JtRnV",
    "Ykc5allXeG9",
    "ZEdsbWRtRms=",
    "bUZ3YVd4c1lY",
    "anJFZzVmVm0=",
    "eW1Gc2JtRjB",
    "aHR0cHM6Ly95b3V0dS5iZS9kUXc0dzlXZ1hjUQ=="
]

for encoded in encoded_strings:
    try:
        decoded = base64.b64decode(encoded).decode('utf-8', errors='ignore')
        transformed = vortex_cipher(decoded, 2)
        hashed = hashlib.sha256(transformed.encode()).hexdigest()[:8]
        
        if hashed == "a1b2c3d4":
            print(f"Found: {transformed}")
        else:
            print(f"Hash {hashed}")
    except:
        print(f"Failed on {encoded}")

values = [117, 98, 108, 70, 80]
product = 1
for v in values:
    product *= v if v != 0 else 1

final_code = base64.b64encode(str(product % 100000).encode()).decode()
print(f"discord.gg/{final_code}")

Stay Determined ❤️


You’re filled with determination.

Profile Views

Popular repositories Loading

  1. HARLEM-WEB HARLEM-WEB Public

    HARLEM-WEB

    Python

  2. Oxdan-Dragon-Python Oxdan-Dragon-Python Public

    Oxdan-Dragon-Python

    C

  3. Oxdan-Dragon-C Oxdan-Dragon-C Public

    Oxdan-Dragon-C

    C

  4. OXDAN-WEBSITE OXDAN-WEBSITE Public

    OXDAN-WEBSITE

    HTML

  5. Mester-Oxdan Mester-Oxdan Public

  6. github-readme-stats github-readme-stats Public

    Forked from anuraghazra/github-readme-stats

    ⚡ Dynamically generated stats for your github readmes

    JavaScript