Skip to content

Instantly share code, notes, and snippets.

View ayoubzulfiqar's full-sized avatar
💫
Lord of Mysteries

Sensei ayoubzulfiqar

💫
Lord of Mysteries
View GitHub Profile
@ayoubzulfiqar
ayoubzulfiqar / cascadia.md
Created April 22, 2026 09:33
Cascadia Context

This file is a merged representation of a subset of the codebase, containing files not matching ignore patterns, combined into a single document by Repomix. The content has been processed where comments have been removed, empty lines have been removed, line numbers have been added, content has been formatted for parsing in markdown style, content has been compressed (code blocks are separated by ⋮---- delimiter), security check has been disabled.

File Summary

Purpose

This file contains a packed representation of a subset of the repository's contents that is considered the most important context. It is designed to be easily consumable by AI systems for analysis, code review, or other automated processes.

@ayoubzulfiqar
ayoubzulfiqar / game_provider.md
Created April 21, 2026 06:06
Game Providers

Based on current community standards and safety megathreads for 2026, here is a comprehensive list of reputable game repackers and providers.

⚠️ Critical Safety Warning

Many sites have "clones" (e.g., .org, .co, .com versions of FitGirl) that often contain malware. Always verify the domain extension before downloading. Using uBlock Origin is highly recommended to block malicious redirects on these sites. [1, 2]

1. Trusted Game Repackers

Repackers take existing cracked games and compress them heavily to save download bandwidth. [2, 3]

Repacker Name [4, 5, 6, 7, 8] Official Website Link Key Features
FitGirl Repacks fitgirl-repacks.site Extreme compression; smallest download sizes but longest installation times.
DODI Repacks dodi-repacks.site Faster installation than FitGirl; balanced compression.
@ayoubzulfiqar
ayoubzulfiqar / DockerGuide.md
Last active February 12, 2026 09:05
All the DOCKER guide you really need
@ayoubzulfiqar
ayoubzulfiqar / zsh.sh
Created January 31, 2026 12:56
Zsh Profile Configuration
#!/bin/bash
echo "🚀 INITIATING SENSEI MASTER ENVIRONMENT SYNC..."
# --- 1. Helper: Install Packages ---
install_pkg() {
if ! command -v $1 &> /dev/null; then
echo "📦 Installing $1..."
if command -v apt &> /dev/null; then
sudo apt update && sudo apt install -y $1

1. Process Hiding Techniques

A. Direct Kernel Object Manipulation (DKOM)

The most effective but requires a driver:

// Kernel driver to hide process (simplified)
NTSTATUS HideProcess(PEPROCESS Process) {
    PLIST_ENTRY prev = Process->ActiveProcessLinks.Blink;
    PLIST_ENTRY next = Process->ActiveProcessLinks.Flink;
@ayoubzulfiqar
ayoubzulfiqar / security.py
Created December 25, 2025 10:07
Security Audit Script for Pyhton [Scan the "PYTHON" Code for Vulnerabilties]
import argparse
import json
import re
import sys
from dataclasses import asdict, dataclass
from datetime import datetime
from pathlib import Path
from typing import Dict, List, Optional, Tuple
@ayoubzulfiqar
ayoubzulfiqar / android_permissions.xml
Created December 9, 2025 09:24
Android Permissions List XML
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.BODY_SENSORS"/>
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/> <!-- Android 13+ -->
<uses-permission android:name="android.permission.READ_CALENDAR"/>
<uses-permission android:name="android.permission.READ_CONTACTS"/>
<uses-permission android:name="android.permission.READ_CALL_LOG"/>
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
@ayoubzulfiqar
ayoubzulfiqar / proxify.py
Last active December 4, 2025 13:14
Reverse Proxy Test Script
import argparse
import asyncio
import concurrent.futures
import gzip
import io
# import hashlib
import json
import logging
@ayoubzulfiqar
ayoubzulfiqar / DNSUnlocker.ps1
Last active November 24, 2025 14:11
DNS Unlock All Website Using GoodbyeDPI ( Deep Pocket Inspection ) With AutoTaskScheduler.
<#
.SYNOPSIS
Enhanced GoodbyeDPI Auto-Installation and Configuration Script
.DESCRIPTION
This script automates the setup of GoodbyeDPI for automatic startup with enhanced features:
- Automatic download of GoodbyeDPI
- Multiple mode selection
- Comprehensive error handling
- Logging and monitoring
- Health checks and self-repair
@ayoubzulfiqar
ayoubzulfiqar / flutter_rules.md
Last active April 29, 2026 06:50
Flutter Rules for AI

Complete Flutter & Dart Best Practices Guide with Official Documentation References

Overview

This guide provides comprehensive, up-to-date best practices for Flutter and Dart development with direct links to official documentation, ensuring you're always following the latest standards and recommendations from Google and the Flutter team.

1. Dart Language Fundamentals & Null Safety

Sound Null Safety (Dart 3.0+)

**Starting with Dart 3.0, null safety is mandatory and sound. All code must be fully null-safe. **