Example CodeHacking

Hacking Java class: Calling private Constructor of Java class outside the class

1 Mins read
Here is a sample code by which you can hack and call the private constructor of a class using reflection.

public class HackMeIfYouCan {
    private
HackMeIfYouCan(){
        System.out.println(“I m hacked”);       
    }
}

 
 
public class Test {

public static void main(String[] args) throws Exception {

Constructor c[] = HackMeIfYouCan.class.getDeclaredConstructors();

c[0].setAccessible(true);

c[0].newInstance(null);

}

}

Here is the output of this program

I m hacked

So if you want your java class to be protected make sure you dont give ReflectPermission to your class.

Related posts
HackingVPN

How to Access Kickass Torrents With Proxies

3 Mins read
Kickass Torrents was a popular website used by gamers, bookworms, music lovers, and movie and TV series fans worldwide. The site was…
Hacking

Hacking Higher Education: Coding Bootcamps and Workforce Preparedness

3 Mins read
Post-pandemic, the labor shortage that many businesses large and small are bemoaning actively represents the single greatest source of opportunity for workers…
AmongUSGamingHacking

What Are The Hacks in AmongUs App?

4 Mins read
What is AmongUs Video Game? Inspired by The Thing, the science-fiction horror film and Mafia, the live party game, Marcus Bromander, the…
Power your team with InHype

Add some text to explain benefits of subscripton on your services.

Leave a Reply

Your email address will not be published. Required fields are marked *