Skip to content

Instantly share code, notes, and snippets.

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

0x90 AxDSan

🏠
(NOT) Working from home
View GitHub Profile
Verifying my Blockstack ID is secured with the address 16hiSA5U5JaH6u7ZNz8MhdErpa1Gfd8Ygd https://explorer.blockstack.org/address/16hiSA5U5JaH6u7ZNz8MhdErpa1Gfd8Ygd
@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/[email protected]/dist/jquery.min.js
// @grant none
// ==/UserScript==
// ==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 / 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"]
@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 / 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 / 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 / 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;