Skip to content

Instantly share code, notes, and snippets.

View minanagehsalalma's full-sized avatar
🍒
Meow ?

mina nageh salama minanagehsalalma

🍒
Meow ?
  • no i won't tell you
View GitHub Profile
@minanagehsalalma
minanagehsalalma / pin.ps1
Last active August 6, 2025 02:00
Enable MANIFEST V2 by pinning chrome version 138
[CmdletBinding()]
param(
[Parameter(Mandatory=$true)]
[string]$PortableDir, # e.g. C:\Users\ASUS\Downloads\Compressed\GoogleChromePortable
[string]$ProfileDir = "C:\Chrome138Profile",
[switch]$DisableUpdater # Optional: stop & disable Google Update services/tasks
)
$ErrorActionPreference = 'Stop'
@minanagehsalalma
minanagehsalalma / RTX_5070_TI_v6.2.6.Benchmark
Created August 1, 2025 23:49
RTX 5070 TI Hashcat 6.2.6 Benchmark
~$ nvidia-smi
Fri Aug 1 23:43:49 2025
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 570.133.07 Driver Version: 570.133.07 CUDA Version: 12.8 |
|-----------------------------------------+------------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 NVIDIA GeForce RTX 5070 Ti On | 00000000:01:00.0 Off | N/A |
@minanagehsalalma
minanagehsalalma / RTX_5070_v6.2.6.Benchmark
Last active August 1, 2025 23:36
RTX 5070 Hashcat 6.2.6 Benchmark
~$ nvidia-smi
Fri Aug 1 23:24:07 2025
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 570.144 Driver Version: 570.144 CUDA Version: 12.8 |
|-----------------------------------------+------------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 NVIDIA GeForce RTX 5070 On | 00000000:83:00.0 Off | N/A |
@minanagehsalalma
minanagehsalalma / RTX_5060_TI_v6.2.6.Benchmark
Created August 1, 2025 23:21
RTX 5060 TI Hashcat 6.2.6 Benchmark
~$ nvidia-smi
Fri Aug 1 22:57:17 2025
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 570.169 Driver Version: 570.169 CUDA Version: 12.8 |
|-----------------------------------------+------------------------+----------------------+
| GPU Name Persistence-M | Bus-Id Disp.A | Volatile Uncorr. ECC |
| Fan Temp Perf Pwr:Usage/Cap | Memory-Usage | GPU-Util Compute M. |
| | | MIG M. |
|=========================================+========================+======================|
| 0 NVIDIA GeForce RTX 5060 Ti On | 00000000:01:00.0 Off | N/A |
@minanagehsalalma
minanagehsalalma / Missionbot.md
Last active August 1, 2025 17:05
Synack Mission Bot Setup

A) Stop old service & fetch a fresh build

# Stop any old instance (ignore errors if it didn't exist)
sudo systemctl disable --now mbot.service 2>/dev/null || true

# Prepare clean workspace
cd ~
@minanagehsalalma
minanagehsalalma / BenchResults.md
Last active July 31, 2025 17:05
Free DNS Adblockers Benchmarks
(function URLScout(){
const PANEL_ID = "__url_scout_panel__";
const STYLE_ID = "__url_scout_style__";
const SEEN_KEY = "__url_scout_seen__";
// --- helpers -------------------------------------------------------------
const likelyStart = (s)=> /^(https?:|wss?:|data:|blob:|mailto:|tel:|\/|\.\/|\.\.\/|\/\/)/i.test(s||"");
const urlRe = /(https?:\/\/[^\s"'`<>]+|wss?:\/\/[^\s"'`<>]+|\/\/[^\s"'`<>]+|\/(?:[A-Za-z0-9\-._~!$&'()*+,;=:@\/?%#])+)/g;
const srcsetSplit = (v)=> (v||"").split(',').map(x=>x.trim().split(/\s+/)[0]).filter(Boolean);
@minanagehsalalma
minanagehsalalma / WhatsAppSyncFix.ps1
Created April 11, 2025 01:16
WhatsApp Syncing Chats 1% Stuck fix with no data loss nor resetting (a full troubleshooting suite)
# WhatsApp Sync Fix Script Suite
# Purpose: Fix WhatsApp syncing issues without losing messages
# Compatible with: WhatsApp from Microsoft Store on Windows 10
<#
.SYNOPSIS
A comprehensive script suite to fix WhatsApp synchronization issues on Windows 10.
.DESCRIPTION
This script performs several actions to fix WhatsApp syncing problems:
- Terminates WhatsApp processes
@minanagehsalalma
minanagehsalalma / DockerFix.ps1
Created April 6, 2025 23:11
Fix Docker Engine stopped WSL error powershell script
# Run as Administrator
if (-NOT ([Security.Principal.WindowsPrincipal][Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")) {
Write-Warning "Please run this script as Administrator"
break
}
Write-Host "Fixing WSL2 and Docker Desktop installation..." -ForegroundColor Green
# Enable required Windows features
Write-Host "Step 1: Enabling required Windows features..." -ForegroundColor Cyan