HAPPY BOOKSGIVING
Use code BOOKSGIVING during checkout to save 40%-55% on books and eBooks. Shop now.
Register your product to gain access to bonus material or receive a coupon.
As a Java developer, you may find yourself in a situation where you have to maintain someone else's code or use a third-party's library for your own application without documentation of the original source code. Rather than spend hours feeling like you want to bang your head against the wall, turn to Covert Java: Techniques for Decompiling, Patching, and Reverse Engineering. These techniques will show you how to better understand and work with third-party applications. Each chapter focuses on a technique to solve a specific problem, such as obfuscation in code or scalability vulnerabilities, outlining the issue and demonstrating possible solutions. Summaries at the end of each chapter will help you double check that you understood the crucial points of each lesson. You will also be able to download all code examples and sample applications for future reference from the publisher's website. Let Covert Java help you crack open mysterious codes!
Covert Java: Hacking Non-Public Methods and Variables of a Class
Covert Java: Obfuscating Classes
Hacking Non-Public Methods and Variables of a Class
Hacking Non-Public Methods and Variables of a Class - DUPE - DO NOT POST
Introduction.
1. Getting Started.
Techniques Overview—When and Why to Use Each Method. Improving Productivity with File Managers. Sample Application Functionality and Structure. Quick Quiz. In Brief.
Determining When to Decompile. Knowing the Best Decompilers. Decompiling a Class. What Makes Decompiling Possible? Potential Problems with Decompiled Code. Quick Quiz. In Brief.
Protecting the Ideas Behind Your Code. Obfuscation As a Protection of Intellectual Property. Transformations Performed by Obfuscators. Knowing the Best Obfuscators. Potential Problems and Common Solutions. Using Zelix KlassMaster to Obfuscate a Chat Application. Cracking Obfuscated Code. Quick Quiz. In Brief.
Accessing Packages and Protected Class Members. Accessing Private Class Members. Quick Quiz. In Brief.
What Do We Do When We Have Tried Every Road but Failed? Finding the Class That Has to Be Patched. A Sample Scenario That Requires Patching. Patching a Class to Provide New Logic. Reconfiguring the Application to Load and Use the Patched Class. Patching Sealed Packages. Quick Quiz. In Brief.
Introduction to Tracing. Tracing As an Effective Method of Learning the Software. Tracing and Logging Tools and APIs. Tracing Dos and Donts. Quick Quiz. In Brief.
Java Security Overview. Bypassing Security Checks. Quick Quiz. In Brief.
The Value of Understanding the Runtime Environment. System Properties. System Information. Memory Information. Network Information. Accessing Environment Variables. Quick Quiz. In Brief.
Understanding the Internals of Unknown Applications. Conventional Debuggers and Their Limitations. Hacking with an Omniscient Debugger. Quick Quiz. In Brief.
Why and When You Should Use Profiling. The Best Profilers for Java. Investigating Heap Usage and Garbage Collection Frequency to Improve the Performance. Browsing Object Allocation and References to Find and Fix Memory Leaks. Investigating Thread Allocation and Synchronization. Identifying Expensive Methods to Improve Performance. Investigating an Application at Runtime Using a Thread Dump. Quick Quiz. In Brief.
The Importance of Load-Testing. Load-Testing RMI-Based Servers with JUnit. Load-Testing with JMeter. Quick Quiz. In Brief.
User Interface Elements and Resources. Hacking Text. Hacking Images. Hacking Configuration Files. Quick Quiz. In Brief.
Eavesdropping Defined. Eavesdropping on HTTP. Eavesdropping on the RMI Protocol. Eavesdropping on JDBC Driver and SQL Statements. Quick Quiz. In Brief.
JVM Internals from a Class Loading Perspective. Writing a Custom Class Loader. Quick Quiz. In Brief.
Why Bother? Patching Core Java Classes Using the Boot Class Path. Example of Patching java.lang.Integer. Quick Quiz. In Brief.
Control Flow Defined. Intercepting System Errors. Intercepting System Streams. Intercepting a Call to System.exit. Reacting to a JVM Shutdown Using Hooks. Intercepting Methods with a Dynamic Proxy. The Java Virtual Machine Profiler Interface. Quick Quiz. In Brief.
Bytecode Fundamentals. Viewing Class Files Using the jClassLib Bytecode Viewer. The JVM Instruction Set. Class File Format. Instrumenting and Generating Bytecode. Bytecode Tweaking Compared with AOP and Dynamic Proxies. Quick Quiz. In Brief.
Why and When to Patch Native Code. Native Code Usage in the Java Virtual Machine. Generic Approaches to Patching Native Methods. Patching Native Code on the Windows Platform. Patching Native Code on Unix Platforms. Quick Quiz. In Brief.
Setting Goals for Application Protection. Securing Data with Java Cryptography Architecture. Protecting Application Distribution from Hacking. Implementing Licensing to Unlock Application Features. Quick Quiz. In Brief.
Utilities and Tools. Decompiling. Obfuscating. Tracing and Logging. Debugging. Profiling. Load-Testing. Eavesdropping. Bytecode Tweaking. Native Code Patching. Protection from Hacking.