Skip to content
View 0N3R0's full-sized avatar
👽
Thinking.. How do I get back from ISS?
👽
Thinking.. How do I get back from ISS?

Organizations

@omegastrux

Block or report 0N3R0

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 is supported. This note will only be visible to you.
Report abuse

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

Report abuse
0n3r0/README.md
from typing import Dict, List

class _0N3R0_:
    """
    Python Developer & Security Researcher.
    Expertise in async scraping, handling
    bot-detection environments & web/mobile/desktop RE.
    """
    def __init__(self):
        self.name: str = "Dawid"
        self.age: int = 20
        self.location: str = "Poland (CEST)"
        self.total_programming_experience_years: int = 4

        self.spoken_languages: Dict[str, str] = {
            "Polish": "Native",
            "English": "B2 (Professional Working Proficiency)"
        }

        self.languages: Dict[str, List[str]] = {
            "advanced": ["Python", "JavaScript", "HTML", "CSS"],
            "intermediate_or_improving": ["TypeScript"],
            "basic_academic_exposure_only": ["C", "C++", "Rust"]
        }

    def web_automation_and_reverse_engineering(self) -> Dict[str, List[str]]:
        return {
            "advanced_web_reverse_engineering": [
                "Deobfuscating heavily protected client-side JavaScript.",
                "Reconstructing undocumented APIs and authentication token logic."
            ],
            "bot_detection_telemetry_knowledge": [
                "Analyzing cross-matching algorithms between User-Agents and User IPs.",
                "Differentiating behavioral patterns between residential and datacenter proxies.",
                "Inspecting protocol-level signatures, including JA3/JA4 TLS fingerprinting."
            ],
            "preferred_libraries": ["nodriver", "zendriver", "httpx", "BeautifulSoup4", "lxml", "asyncio"]
        }

    def mobile_and_desktop_analysis(self) -> Dict[str, List[str]]:
        return {
            "mobile_ecosystem": [
                "Static analysis of Android applications using JADX",
                "Learning dynamic instrumentation and hooking with Frida"
            ],
            "desktop_binary_analysis": [
                "Ghidra (Very early stage / currently learning fundamentals)"
            ]
        }

    def security_research_and_active_learning(self) -> Dict[str, List[str]]:
        return {
            "active_training": [
                "Solving Red Teaming CTFs on TryHackMe (THM)",
                "Analyzing difficult code structures to improve core RE skills"
            ],
            "reconnaissance_and_scanning": [
                "Network asset fingerprinting via Shodan",
                "General OSINT"
            ],
            "current_research_focus": [
                "Analyzing advanced bot-detection telemetry and anti-bot environments",
                "Engineering high-performance, asynchronous proxy testing tool"
            ]
        }

    def toolkit_and_environments(self) -> List[str]:
        return [
            "Burp Suite", "Chrome DevTools (Deep Source & Network payload analysis)",
            "JADX", "Frida", "Ghidra", "Shodan", "Censys"
        ]

    def web_development_methodology(self) -> str:
        """
        While core framework implementation is not my primary focus, I can successfully
        build and deploy full web applications from scratch by utilizing documentation
        and AI assistance for rapid prototyping.
        """
        return "Capable of adaptive full-stack development when required."

    def contact(self) -> str:
        return "https://linkedin.com/in/dawid-gawliczek"

Pinned Loading

  1. omegastrux/nodriver-cf-verify omegastrux/nodriver-cf-verify Public

    A lightweight, asynchronous extension for nodriver and zendriver that detects and verifies Cloudflare Turnstile challenges.

    Python 23 3

  2. ProxySea ProxySea Public

    Async-first, ultra-fast Python library for scraping, detecting, and testing public HTTP/HTTPS/SOCKS4/SOCKS5 proxies with modular OOP design and built-in logging.

    Python 1

  3. WindyWMS WindyWMS Public

    WindyWMS is a lightweight Warehouse Management System MVP built with NestJS and React. It features secure user authentication, CRUD operations for packages, and an automated tracking system that us…

    TypeScript