Skip to content

Commit d81db66

Browse files
committed
put the actual corruptor in here
1 parent a9db713 commit d81db66

15 files changed

Lines changed: 425 additions & 0 deletions

File tree

JavaCorruptor/.gitignore

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
replay_pid*
25+
26+
target/
27+
pom.xml.tag
28+
pom.xml.releaseBackup
29+
pom.xml.versionsBackup
30+
pom.xml.next
31+
release.properties
32+
dependency-reduced-pom.xml
33+
buildNumber.properties
34+
.mvn/timing.properties
35+
# https://github.com/takari/maven-wrapper#usage-without-binary-jar
36+
.mvn/wrapper/maven-wrapper.jar
37+
38+
# Eclipse m2e generated files
39+
# Eclipse Core
40+
.project
41+
# JDT-specific (Eclipse Java Development Tools)
42+
.classpath
43+
44+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
45+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
46+
47+
# User-specific stuff
48+
.idea/**/workspace.xml
49+
.idea/**/tasks.xml
50+
.idea/**/usage.statistics.xml
51+
.idea/**/dictionaries
52+
.idea/**/shelf
53+
54+
# AWS User-specific
55+
.idea/**/aws.xml
56+
57+
# Generated files
58+
.idea/**/contentModel.xml
59+
60+
# Sensitive or high-churn files
61+
.idea/**/dataSources/
62+
.idea/**/dataSources.ids
63+
.idea/**/dataSources.local.xml
64+
.idea/**/sqlDataSources.xml
65+
.idea/**/dynamic.xml
66+
.idea/**/uiDesigner.xml
67+
.idea/**/dbnavigator.xml
68+
69+
# Gradle
70+
.idea/**/gradle.xml
71+
.idea/**/libraries
72+
73+
# Gradle and Maven with auto-import
74+
# When using Gradle or Maven with auto-import, you should exclude module files,
75+
# since they will be recreated, and may cause churn. Uncomment if using
76+
# auto-import.
77+
# .idea/artifacts
78+
# .idea/compiler.xml
79+
# .idea/jarRepositories.xml
80+
# .idea/modules.xml
81+
# .idea/*.iml
82+
# .idea/modules
83+
# *.iml
84+
# *.ipr
85+
86+
# CMake
87+
cmake-build-*/
88+
89+
# Mongo Explorer plugin
90+
.idea/**/mongoSettings.xml
91+
92+
# File-based project format
93+
*.iws
94+
95+
# IntelliJ
96+
out/
97+
98+
# mpeltonen/sbt-idea plugin
99+
.idea_modules/
100+
101+
# JIRA plugin
102+
atlassian-ide-plugin.xml
103+
104+
# Cursive Clojure plugin
105+
.idea/replstate.xml
106+
107+
# SonarLint plugin
108+
.idea/sonarlint/
109+
110+
# Crashlytics plugin (for Android Studio and IntelliJ)
111+
com_crashlytics_export_strings.xml
112+
crashlytics.properties
113+
crashlytics-build.properties
114+
fabric.properties
115+
116+
# Editor-based Rest Client
117+
.idea/httpRequests
118+
119+
# Android studio 3.1+ serialized cache file
120+
.idea/caches/build_file_checksums.ser

JavaCorruptor/.idea/.gitignore

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaCorruptor/.idea/artifacts/JavaCorruptor_jar.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaCorruptor/.idea/description.html

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaCorruptor/.idea/encodings.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaCorruptor/.idea/misc.xml

Lines changed: 12 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaCorruptor/.idea/modules.xml

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaCorruptor/.idea/project-template.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaCorruptor/.idea/runConfigurations.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

JavaCorruptor/.idea/vcs.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)