init refactoring exercise
This commit is contained in:
Binary file not shown.
@@ -4,14 +4,14 @@ import java.util.regex.Matcher;
|
||||
|
||||
public class EmailMatcher {
|
||||
|
||||
// Regex für Emailadressen
|
||||
static String emailRegex = "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$";
|
||||
// Regex für Emailadressen
|
||||
static String emailRegex = "^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$";
|
||||
|
||||
static Pattern pattern = Pattern.compile(emailRegex);
|
||||
|
||||
static boolean isValidEmail(String email) {
|
||||
static Pattern pattern = Pattern.compile(emailRegex);
|
||||
|
||||
static boolean isValidEmail(String email) {
|
||||
Matcher matcher = pattern.matcher(email);
|
||||
return matcher.matches();
|
||||
}
|
||||
}
|
||||
|
||||
}
|
Binary file not shown.
@@ -1,5 +1,7 @@
|
||||
import com.code_intelligence.jazzer.api.FuzzedDataProvider;
|
||||
import com.code_intelligence.jazzer.junit.FuzzTest;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
import java.security.InvalidParameterException;
|
||||
|
||||
@@ -8,6 +10,7 @@ public class EmailMatcherFuzzTest {
|
||||
public static void fuzzerTestOneInput(FuzzedDataProvider data) {
|
||||
String email = data.consumeString(100);
|
||||
if(EmailMatcher.isValidEmail(email)) {
|
||||
System.out.println("Valid email address: " + email);
|
||||
throw new InvalidParameterException("Valid email found!");
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_0c8760ec829043093b19b0dd6d6bad3e9c5b2a34 {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABkVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVLS1Aei5VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVXg=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_0c8760ec829043093b19b0dd6d6bad3e9c5b2a34.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_1023597a010e233f09ae0f371f507df5760ed654 {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABkV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dKQFdXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1cyLldXV1dXV1dXV1dXV1dXV1dXV1dXV3g=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_1023597a010e233f09ae0f371f507df5760ed654.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_143bd80f3cf030decbebd209621a090d46fb9be7 {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABkY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjUUBjY2NjY2NjY2NjcnJycnJycnJyci5jY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY2NjY3g=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_143bd80f3cf030decbebd209621a090d46fb9be7.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_20cb65ffbb219a01fbc1341e2d38a57e3d0a550f {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABkbm5ubm5ubm5ubkBCQkJCQi5CQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQkJCQng=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_20cb65ffbb219a01fbc1341e2d38a57e3d0a550f.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_4a070dbfa61328b644f6724be00f2897c80f986c {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABhenR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHlAMi50dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHg=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_4a070dbfa61328b644f6724be00f2897c80f986c.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_60c239837ee2bcee5ad3a003af539846059367bc {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABkdXV1dXV1dXV1dXV1LUB1dXV1dS51dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXg=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_60c239837ee2bcee5ad3a003af539846059367bc.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_66d46e7fbde585cc83e2bbe391f0c72a5a25f80e {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABkdXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dXV1dTU1dkA1QTU1NS51dXV1dXV1dXg=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_66d46e7fbde585cc83e2bbe391f0c72a5a25f80e.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_8758e78756a367f9e484d8186f77ef69bdd0c29a {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdAA/KytVVVVVVVVVVVVVZ0BLLlVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVeA==");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_8758e78756a367f9e484d8186f77ef69bdd0c29a.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_8f4b5c6ab0c550df8d506b36c7a2c8c3c745a8da {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABKUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUXhfeF9AeHguUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVFRUVF4");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_8f4b5c6ab0c550df8d506b36c7a2c8c3c745a8da.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_a121217356a1146df4a44b5ed87088196ae276a3 {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdAAOLkBhYWFhLmFhYWFhYWF4");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_a121217356a1146df4a44b5ed87088196ae276a3.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_c0c78c8c6f8468424cdf48dfd39a28e04e0ec416 {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdAAOeXl5eXlNQHkueXl5eU14");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_c0c78c8c6f8468424cdf48dfd39a28e04e0ec416.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_c16113223e5edd851edc5f877c163edeeeea886c {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdAAPampqampqQGpqLmpqampqeA==");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_c16113223e5edd851edc5f877c163edeeeea886c.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_c37aee0a0c6db682583e5afe00e6c1264ede4bbb {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABkRERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERGK0A3Ny5ERERERERERERERERERERERERERERERHg=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_c37aee0a0c6db682583e5afe00e6c1264ede4bbb.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1,28 @@
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
import java.lang.reflect.Method;
|
||||
|
||||
public class Crash_c668afa6b6bf106dd2b56978e97b39fa671a8363 {
|
||||
static final String base64Bytes = String.join("", "rO0ABXNyABNqYXZhLnV0aWwuQXJyYXlMaXN0eIHSHZnHYZ0DAAFJAARzaXpleHAAAAABdwQAAAABdABkRERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERERFBQUFBQQFAuUERQUERERHg=");
|
||||
|
||||
public static void main(String[] args) throws Throwable {
|
||||
Crash_c668afa6b6bf106dd2b56978e97b39fa671a8363.class.getClassLoader().setDefaultAssertionStatus(true);
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize");
|
||||
fuzzerInitialize.invoke(null);
|
||||
} catch (NoSuchMethodException ignored) {
|
||||
try {
|
||||
Method fuzzerInitialize = EmailMatcherFuzzTest.class.getMethod("fuzzerInitialize", String[].class);
|
||||
fuzzerInitialize.invoke(null, (Object) args);
|
||||
} catch (NoSuchMethodException ignored1) {
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
} catch (IllegalAccessException | InvocationTargetException e) {
|
||||
e.printStackTrace();
|
||||
System.exit(1);
|
||||
}
|
||||
com.code_intelligence.jazzer.api.CannedFuzzedDataProvider input = new com.code_intelligence.jazzer.api.CannedFuzzedDataProvider(base64Bytes);
|
||||
EmailMatcherFuzzTest.fuzzerTestOneInput(input);
|
||||
}
|
||||
}
|
@@ -0,0 +1 @@
|
||||
UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU--@z.UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU]
|
@@ -0,0 +1 @@
|
||||
WWWWWWWWWWWWWWWWWWWWWWWJ@WWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWWW2.WWWWWWWWWWWWWWWWWWWWWWWWWWW2.WWWWWWWWWWWWWWWWWWWW
|
@@ -0,0 +1 @@
|
||||
cccccccccccccccccccccccccccccccccccccccQ@ccccccccccrrrrrrrrrr.ccccccccccccccccccccccccccccccccccccccccccccccccc(
|
@@ -0,0 +1 @@
|
||||
nnnnnnnnnn@BBBBB.BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
|
@@ -0,0 +1 @@
|
||||
zttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttty@2.ttttttttttttttttttttttt
|
@@ -0,0 +1 @@
|
||||
uuuuuuuuuuuu-@uuuuu.uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu<75><75>uuuuuuu
|
@@ -0,0 +1 @@
|
||||
uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu55v@5A555.uuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuu
|
@@ -0,0 +1 @@
|
||||
++UUUUUUUUUUg@K.UUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUUU
|
@@ -0,0 +1 @@
|
||||
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQQx_x_@xx.QQQQQQQQQQQQQQQQQQQQQQQQQQQQQ<51>
|
@@ -0,0 +1 @@
|
||||
.@aaaa.aaaaaaa
|
@@ -0,0 +1 @@
|
||||
yyyyyM@y.yyyyM<79>
|
@@ -0,0 +1 @@
|
||||
jjjjjj@jj.jjjjj
|
@@ -0,0 +1 @@
|
||||
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDF+@77.DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD<44><44>
|
@@ -0,0 +1,2 @@
|
||||
DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDPPPPP@P.PDPPDDDDDDDDDDDDDDDDDDDDDDD
|
||||
|
Reference in New Issue
Block a user