Skip to content

Instantly share code, notes, and snippets.

View LuaxY's full-sized avatar

Luax LuaxY

View GitHub Profile
@LuaxY
LuaxY / canvas.html
Created November 17, 2021 15:57
Paradise Trippies Canvas
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Canvas</title>
</head>
<body>
<canvas id="canvas"></canvas>
@LuaxY
LuaxY / qiui.md
Last active November 15, 2023 03:52
QIUI App Patch

CellMate Qiui

Remove unlock verification

# Decompile apk
apktool d qiui.googlestore.dif.apk

Edit assets/widget/html/main/deviceDetail-frm.html to remove unlock verification

@LuaxY
LuaxY / genesis_public_key
Last active March 12, 2018 16:08
Genesis Go Pub Key
0456a926720f024b394b5534c26f12d5edbef9047e7c155866c68f634baec216a07ac9578f7cd24ffe1e83a79304c2b4dcb51dbd8260134aaadbc2e6d098860f44;c-darwin
@LuaxY
LuaxY / Classement.md
Last active December 9, 2015 13:14
Classement nuit de l'info 2015

OR = 3 pts
ARGENT = 2 pts
BRONZE = 1 pts

###1 Toulouse 12 Médailles (5 OR, 4 ARGENT, 3 BRONZE)
Total : 26

###2 Sophia Antipolis / Nice 7 Médailles (4 OR, 1 ARGENT, 2 BRONZE)

@LuaxY
LuaxY / keybase.md
Last active April 7, 2016 07:38
keybase.md

Keybase proof

I hereby claim:

  • I am LuaxY on github.
  • I am luax (https://keybase.io/luax) on keybase.
  • I have a public key whose fingerprint is 1BEE F547 89B1 9B78 7607 651F DE30 FE33 5F20 AA57

To claim this, I am signing this object:

@LuaxY
LuaxY / hook.c
Created January 3, 2015 20:17
Linux Function Hook
#include <dlfcn.h> // dlsym
#include <sys/socket.h> // connect
#include <netinet/in.h> // struct sockaddr
// futur pointeur sur la vraie fonction
int *(*real_connect)(int socket, const struct sockaddr* address, socklen_t address_len):
int connect(int socket, const struct sockaddr* address, socklen_t address_len)
{
// on récupère l'ip de connexion
@LuaxY
LuaxY / pyside.md
Last active August 29, 2015 14:11 — forked from ancat/pyside.md

Compiling PySide for IDA Pro on Windows

If you've ever wanted to use IDA's native GUIs, you'll need PySide. Unfortunately PySide is annoying to compile, and the only available binaries are for Python 2.6. This should work for any version.

Note: The python module installer executable at the end of this guide did not work for me. The compiled pyd and dll files, however were completely usable from within IDA.

Prequisites

  • Visual Studio 2010
  • Visual Studio 2010 Service Pack 1
@LuaxY
LuaxY / designer.html
Last active August 29, 2015 14:07
designer
<link rel="import" href="../core-ajax/core-ajax.html">
<link rel="import" href="../core-tooltip/core-tooltip.html">
<link rel="import" href="../core-icon-button/core-icon-button.html">
<link rel="import" href="../core-toolbar/core-toolbar.html">
<polymer-element name="my-element">
<template>
<style>
:host {
@LuaxY
LuaxY / HookConnet.cpp
Created July 25, 2014 19:00
Hook connect function with MiniHook
#include <Windows.h>
#include "MinHook.h"
#if defined _M_X64
#pragma comment(lib, "libMinHook.x64.lib")
#elif defined _M_IX86
#pragma comment(lib, "libMinHook.x86.lib")
#endif
#pragma comment(lib, "Ws2_32.lib")
@LuaxY
LuaxY / ankama.cpp
Last active May 5, 2019 11:05
Source of No.Ankama.dll (using Detours lib)
#include <windows.h>
#include <cstring>
#include <detours.h>
#pragma comment( lib, "Ws2_32.lib" )
#pragma comment( lib, "detours.lib" )
int (WINAPI *Real_Connect)(SOCKET s, const struct sockaddr *name, int namelen) = connect;
int WINAPI Mine_Connect(SOCKET s, const struct sockaddr *name, int namelen)