Updated payload args in FileUploadTest to match what production code is looking for; Added Intellij project files to .gitignore

This commit is contained in:
Skylar
2016-08-14 19:52:32 -05:00
parent d143b8cbfb
commit 8ad9b583a6
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -1,5 +1,7 @@
/target
.classpath
.project
.idea
.settings/
pwntest
*.iml
@@ -65,7 +65,7 @@ public class FileUploadTest implements CustomTest {
}
public String getPayloadArgs () {
return "copyAndDelete:" + this.source.getAbsolutePath() + ":" + this.repo.getAbsolutePath();
return "copyAndDelete;" + this.source.getAbsolutePath() + ";" + this.repo.getAbsolutePath();
}
}