Giter VIP home page Giter VIP logo

dmcryptl's Introduction

DMCRYPTL

Decrypts memory within processes using special black magic techniques.

Memory is no longer encrypted as of 1/17/2018. I'll keep this repository up temporarily in case of another drastic change in security design.

NOTES

DMCRYPTL does not need to RPM for any additional information, only the encrypted data, which you would normally read anyways (only as a pointer instead, whereas it's a EncryptedBlock structure now.)

USAGE

Usage of this library is up to you. You will have to implement it with whatever technique for read/write you have available.

The test.cpp file includes a test you can run, that shows decrypting of a EncryptedBlock that I've pre-dumped from memory, and stored in a static buffer.

EXAMPLE CODE

#include "stdafx.h"
#include "decrypt.h"
#include <iostream>

struct UWorld { };

int main() {
	/* retrieve the block by reading in an offset such as UWorld */
	EncryptedBlock *block = NULL;

	/* initialize the decryption context, very important! */
	init_decryption();

	/* get a handle to the real pointer via decryption! */
	UWorld *decrypted_ptr = decrypt_ptr<UWorld*>(block);

	std::cout << "Decrypted: 0x" << std::hex << decrypted_ptr << std::endl;
	std::cin.get();
	return 0;
}

DISCLAIMER

I'll try to keep this up to date, no promises! Keeping this high of quality up to date, while already being busy is difficult. I don't even write my cheats in a native language!

dmcryptl's People

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.