6 Commits
Author SHA1 Message Date
Stefano Chierici 218bcffcaa Change base image to eclipse-temurin:8-jdk-alpine (#234) 2025-12-03 20:07:31 -08:00
Sr DDrive b7d0f27b46 Update Dockerfile (#193)
There is no image named, openjdk:8-alpine hosted in Docker,  I just replace java for openjdk and it works 

Error Step 11/14: FROM java:8-jdk-alpine
manifest for java: 8-jdk-alpine not found: unknown manifest: unknown manifest

Step 11/14 : FROM openjdk:8-jdk-alpine
8-jdk-alpine: Pulling from library/openjdk
e7c96db7181b: Pull complete
f910a506b6cb: Pull complete
c2274a1a0e27: Pull complete
Digest: sha256:94792824df2df33402f201713f932b58cb9de94a0cd524164a0f2283343547b3
Status: Downloaded newer image for openjdk:8-jdk-alpine
2024-03-30 19:47:00 -07:00
Yunus AYDIN 401bbbc728 Update Dockerfile (#212) 2024-03-30 19:44:43 -07:00
Yechiel b03f9580c9 fixed dockerfile outdated java image to openjdk (#215) 2024-03-30 19:43:19 -07:00
Alexandre ZANNI bdbfef897a fix travis link + add jitpack (#194) 2024-03-30 19:12:17 -07:00
Chris Frohoff 863466d2e4 fix assembly conf (#223) 2024-03-30 18:50:22 -07:00
3 changed files with 95 additions and 92 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ COPY src ./src
RUN mvn clean package -DskipTests RUN mvn clean package -DskipTests
RUN mv target/ysoserial-*all*.jar target/ysoserial.jar RUN mv target/ysoserial-*all*.jar target/ysoserial.jar
FROM java:8-jdk-alpine FROM eclipse-temurin:8-jdk-alpine
WORKDIR /app WORKDIR /app
+3 -2
View File
@@ -2,8 +2,9 @@
# ysoserial # ysoserial
[![GitHub release](https://img.shields.io/github/downloads/frohoff/ysoserial/latest/total)](https://github.com/frohoff/ysoserial/releases/latest/download/ysoserial-all.jar) [![GitHub release](https://img.shields.io/github/downloads/frohoff/ysoserial/latest/total)](https://github.com/frohoff/ysoserial/releases/latest/download/ysoserial-all.jar)
[![Travis Build Status](https://api.travis-ci.com/frohoff/ysoserial.svg?branch=master)](https://travis-ci.com/frohoff/ysoserial) [![Travis Build Status](https://api.travis-ci.com/frohoff/ysoserial.svg?branch=master)](https://travis-ci.com/github/frohoff/ysoserial)
[![Appveyor Build status](https://ci.appveyor.com/api/projects/status/a8tbk9blgr3yut4g/branch/master?svg=true)](https://ci.appveyor.com/project/frohoff/ysoserial/branch/master) [![Appveyor Build status](https://ci.appveyor.com/api/projects/status/a8tbk9blgr3yut4g/branch/master?svg=true)](https://ci.appveyor.com/project/frohoff/ysoserial/branch/master)
[![JitPack](https://jitpack.io/v/frohoff/ysoserial.svg)](https://jitpack.io/#frohoff/ysoserial)
A proof-of-concept tool for generating payloads that exploit unsafe Java object deserialization. A proof-of-concept tool for generating payloads that exploit unsafe Java object deserialization.
@@ -111,7 +112,7 @@ Requires Java 1.7+ and Maven 3.x+
## Code Status ## Code Status
[![Build Status](https://travis-ci.org/frohoff/ysoserial.svg?branch=master)](https://travis-ci.org/frohoff/ysoserial) [![Build Status](https://api.travis-ci.com/frohoff/ysoserial.svg?branch=master)](https://travis-ci.com/github/frohoff/ysoserial)
[![Build status](https://ci.appveyor.com/api/projects/status/a8tbk9blgr3yut4g/branch/master?svg=true)](https://ci.appveyor.com/project/frohoff/ysoserial/branch/master) [![Build status](https://ci.appveyor.com/api/projects/status/a8tbk9blgr3yut4g/branch/master?svg=true)](https://ci.appveyor.com/project/frohoff/ysoserial/branch/master)
## Contributing ## Contributing
+2
View File
@@ -39,7 +39,9 @@
<mainClass>ysoserial.GeneratePayload</mainClass> <mainClass>ysoserial.GeneratePayload</mainClass>
</manifest> </manifest>
</archive> </archive>
<descriptors>
<descriptor>assembly.xml</descriptor> <descriptor>assembly.xml</descriptor>
</descriptors>
</configuration> </configuration>
<executions> <executions>
<execution> <execution>