Skip to content

Instantly share code, notes, and snippets.

View AxDSan's full-sized avatar
🏠
Working from home

0x90 AxDSan

🏠
Working from home
View GitHub Profile
@AxDSan
AxDSan / Program.cs
Created April 25, 2017 17:42
mild deobfuscator for TestObfuscated.exe from dnPatch
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using dnpatch;
using dnlib;
using MadMilkman.Ini;
using System.IO;
using dnlib.DotNet.Emit;
@AxDSan
AxDSan / es.lua
Last active October 21, 2017 19:44
Spanish localization for AUI
----------------------------------------
-- Spanish localization for Advanced UI --
-- Translated by @AxD --
----------------------------------------
AUI.L10n["aui"] = "AUI"
AUI.L10n["general"] = "General"
AUI.L10n["acount_wide"] = "A Nivel Cuenta"
AUI.L10n["acount_wide_tooltip"] = "Guarda la configuración para todos los personajes."
AUI.L10n["preview"] = "Vista Previa"
@AxDSan
AxDSan / main.cpp
Created October 8, 2017 16:31
Suspend Processes
#include <windows.h>
#include <iostream>
#include <WinBase.h>
#include <TlHelp32.h>
#include <tchar.h>
#include <cstring>
#include <string>
bool Suspended = false;
bool Found = false;
@AxDSan
AxDSan / orgyparty-checker.py
Created October 21, 2017 19:43
Python script to check if there are any `corgiorgy` available from a list of words
# DEPENDS: Selenium Driver
# NOTE: PhantomJS must be present in your PATH
from selenium import webdriver
browser_engine = webdriver.PhantomJS()
main_url_ = "http://"
main_url__ = ".corgiorgy.com"
words = "very through just form much great think say help low line before turn cause same mean differ move right boy old too does tell sentence set three want air well also play small end put home read hand port large spell add even land here must big high such follow act why ask men change went light kind off need house picture try us again animal point mother world near build self earth father head stand own page should country found answer school grow study still learn plant cover food sun four thought keep eye never last door between city tree cross since hard start might story saw far sea draw left late run don't while press close night real life few"
@AxDSan
AxDSan / get_checksum.py
Created April 3, 2018 17:07
A Rust CrackMe Password Checksum Generator and a failed BruteForcer (it just takes too much time XD)
import binascii
import itertools
import sys
def add_hex(A, B):
A = "0"+A
B = "0"+B
#Remember all pattern include carry in variable d.
i2h = dict(zip(range(16), "0123456789abcdef"))
a = [(i,j) for i in "0123456789abcdef" for j in "0123456789abcdef"]
// ==UserScript==
// @name eBay: [For Parts Only] Enhancer
// @namespace http://tampermonkey.net/
// @version 0.1
// @description This simple script tries to enhance what eBay did not do, what I think it was supposed to be done from the beginning.
// @author 0x90
// @match http*://*.ebay.com/sch/*
// @grant none
// @require https://code.jquery.com/jquery-3.3.1.min.js
// ==/UserScript==
@AxDSan
AxDSan / script.js
Created November 7, 2018 22:24
Shows webshop prices as USD - GameZBD
// ==UserScript==
// @name GamezBD Webshop Cash to USD
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author 0x90
// @match http://gamezbd.net/webshop*
// @require https://cdn.jsdelivr.net/npm/jquery@3.3.1/dist/jquery.min.js
// @grant none
// ==/UserScript==
Verifying my Blockstack ID is secured with the address 16hiSA5U5JaH6u7ZNz8MhdErpa1Gfd8Ygd https://explorer.blockstack.org/address/16hiSA5U5JaH6u7ZNz8MhdErpa1Gfd8Ygd
@AxDSan
AxDSan / omz.zshrc
Created July 12, 2019 21:07
OH-MY-ZSH Configuration Stuff After a Clean Installation
ZSH_THEME="powerlevel9k/powerlevel9k"
POWERLEVEL9K_MODE="nerdfont-complete"
POWERLEVEL9K_DISABLE_PROMPT=true
POWERLEVEL9K_PROMPT_ON_NEWLINE=true
POWERLEVEL9K_MULTILINE_LAST_PROMPT_PREFIX="▶ "
POWERLEVEL9K_MULTILINE_FIRST_PROMPT_PREFIX=""
POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(custom_user_icon dir vcs)
@AxDSan
AxDSan / dotnetcore-3.0-preview6
Created July 23, 2019 14:54
A one liner to Install .NET Core 3.0 Preview6 in Ubuntu/Debian based systems :D
cd $HOME/Downloads && mkdir dotnet-preview6 && cd dotnet-preview6 && wget -c https://download.visualstudio.microsoft.com/download/pr/af083813-ec86-4e18-b386-c7f89f013432/da18a8397fff81a07871a8a5840066e2/dotnet-runtime-deps-3.0.0-preview6-27804-01-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/8c70f3b5-1866-4969-8acf-303ce1a5412a/c75e23e6f50d597e3b3b86bb672a6ab2/dotnet-host-3.0.0-preview6-27804-01-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/f62d3861-6142-4150-9e93-868099ca0502/35ba5215c361b923409f304e3771a593/dotnet-hostfxr-3.0.0-preview6-27804-01-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/b85699ae-e447-4b54-a6fe-537c9426ac0c/25f6576bb4d7ac649b733d0fb25bbaf6/dotnet-runtime-3.0.0-preview6-27804-01-x64.deb && wget -c https://download.visualstudio.microsoft.com/download/pr/e3500e27-3aed-4c7a-a241-627dd33fda85/2f56e6bbf0e55b32dba9520c2426db51/aspnetcore-runtime-3.0.0-preview6.19307.2-x64.deb && wget -c https://download.visua