Skip to content

arohner/clj-wallhack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 

Repository files navigation

Introduction

A library for bypassing private & protect fields & methods on java classes. Extracted from old contrib. Derived from work by hiredman.

Installation

[clj-wallhack "1.0.1"]

Usage

Getting a field

(wall.hack/field foo.bar :field obj)

This returns the private/protected field named "field", declared in class "foo.bar" on instance obj. obj is an instanceof (or descendant of) class foo.bar. field can be anything named (a string, symbol or keyword).

Calling a method

(wall.hack/method foo.bar :aMethodCall [Integer Double] obj 3 5.0)

This calls the private/protected method "aMethodCall" on obj. The method is declared in class foo.bar. obj is an instance of, or descendant of class foo.bar. the call takes a seq of classes that correspond to the method's signature, and an equal number of &rest arguments.

Pass nil instead of obj for static method calls.

About

A clojure library for bypassing java protected fields

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published