Skip to content

Instantly share code, notes, and snippets.

------ Obfuscation ------
FUD Windows Crypter
Crypto Calculator
Junk-Code-Generator
.Net Compressor
.NET.Reactor Cracked
.NetShrink.v2.5 Cracked
[ Dev-PoinT Crypter ]
Aegis Crypter

🌐 API Resources by Category

📱 Phone Number & Verification

Service URL Description Pricing
Numverify https://numverify.com Global Phone Number Validation & Lookup JSON API. Supports 232 countries. 250 requests FREE
Twillo https://www.twilio.com/docs/lookup/api Provides a way to retrieve additional information about a phone number Free or $0.01 per request (for caller lookup)
Plivo https://www.plivo.com/lookup/ Determine carrier, number type, format, and country for any phone number worldwide from $0.04 per request
GetContact https://github.com/kovinevmv/getcontact Find info about user by phone number from $6.89 in months/100 requests

Organized Repository and Tool Collection: Code Obfuscation

🛠️ Analysis / Reverse Engineering Tools

  • IDA Pro
  • Ghidra
  • Binary Ninja
  • Hopper Disassembler
  • x64dbg
  • OllyDbg
  • Immunity Debugger
@gostrafx
gostrafx / Tracking Mouse Pointer.py
Last active April 3, 2025 02:13
Tracking Mouse Pointer Borderless Window with Movement Controls
import os
import tkinter as tk
import pyautogui
from PIL import Image, ImageTk, ImageOps
from screeninfo import get_monitors
class BorderlessApp:
def __init__(self, root):
self.root = root
self.root.title("Tracking Mouse Pointer")
@gostrafx
gostrafx / C# TTS.cs
Last active April 3, 2025 02:17
C# Text to Speech Synthesis
using System;
using System.Speech.Synthesis;
class Program
{
private static void Main(string[] args)
{
// dotnet add package System.Speech
using (var speechSynthesizer = new SpeechSynthesizer())
{
@gostrafx
gostrafx / PriorityQueue.cs
Created February 17, 2025 14:43 — forked from adammyhre/PriorityQueue.cs
Double Key Priority Queue for Unity C#
using System;
using System.Collections.Generic;
using UnityUtils;
public class PriorityQueue<T> {
class KeyNodeComparer : IComparer<(Key, T)> {
public int Compare((Key, T) x, (Key, T) y) {
return x.Item1 < y.Item1 ? -1 : x.Item1 > y.Item1 ? 1 : 0;
}
}
@gostrafx
gostrafx / InspectorLock.cs
Created February 16, 2025 06:34 — forked from adammyhre/InspectorLock.cs
Lock Inspector Icon and Transform Constrain Proportion Icon in Unity
using System.Reflection;
using UnityEditor;
using UnityEngine;
/// <summary>
/// Toggles the Inspector lock state and the Constrain Proportions lock state.
/// </summary>
public static class LockInspector {
static readonly MethodInfo flipLocked;
static readonly PropertyInfo constrainProportions;
@gostrafx
gostrafx / FolderTypeFix.reg
Created September 10, 2024 02:00 — forked from unitycoder/FolderTypeFix.reg
Make Windows Folder Browsing Faster (by disabling folder type detection)
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\SOFTWARE\Classes\Local Settings\Software\Microsoft\Windows\Shell\Bags\AllFolders\Shell]
"FolderType"="NotSpecified"