rootđź’€senseicat:~#

Hack. Eat. Sleep. Repeat!!!


Project maintained by SENSEiXENUS Hosted on GitHub Pages — Theme by mattgraham

Javaisinsecure


Java Insecure Deserialization



Vulnerable Java Function


 try(ObjectInputStream ois =  new ObjectInputStream(new FileInputStream("user.ser"))) {
            ois.readObject();
            System.out.println("Object deserialized");
        } catch (Exception e) {
            e.printStackTrace();
        }