├── .gitignore ├── Demos ├── JWS │ ├── .idea │ │ ├── .name │ │ ├── artifacts │ │ │ └── JWS_war_exploded.xml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── JAX_RS_jersey_1_12.xml │ │ │ └── JAX_WS_Glassfish___JAX_WS_2_2_RI___Metro_1_X___JWSDP_2_2.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── JWS.iml │ ├── lib │ │ ├── FastInfoset-1.2.12.jar │ │ ├── FastInoset.jar │ │ ├── activation-1.1.jar │ │ ├── asm-3.3.1.jar │ │ ├── comresrcgen-1.0.jar │ │ ├── gmbal-api-only.jar │ │ ├── grizzly-servlet-webserver-1.9.45.jar │ │ ├── ha-api.jar │ │ ├── jackson-core-asl-1.9.2.jar │ │ ├── jackson-jaxrs-1.9.2.jar │ │ ├── jackson-mapper-asl-1.9.2.jar │ │ ├── jackson-xc-1.9.2.jar │ │ ├── javax.annotation.jar │ │ ├── jaxb-api-2.1.jar │ │ ├── jaxb-api.jar │ │ ├── jaxb-impl-2.2.jar │ │ ├── jaxb-impl.jar │ │ ├── jaxb-xjc-2.2.jar │ │ ├── jaxb-xjc.jar │ │ ├── jaxws-api.jar │ │ ├── jaxws-rt.jar │ │ ├── jaxws-tools.jar │ │ ├── jdom-1.0.jar │ │ ├── jersey-bundle-1.12.jar │ │ ├── jersey-client-1.12.jar │ │ ├── jersey-core-1.12.jar │ │ ├── jersey-grizzly-1.12.jar │ │ ├── jersey-multipart-1.12.jar │ │ ├── jettison-1.1.jar │ │ ├── jsr181-api.jar │ │ ├── localizer-1.0.jar │ │ ├── mail-1.4.4.jar │ │ ├── mail.jar │ │ ├── management-api.jar │ │ ├── mimepull-1.3.jar │ │ ├── mimepull.jar │ │ ├── persistence-api-1.0.2.jar │ │ ├── policy.jar │ │ ├── rome-1.0.jar │ │ ├── saaj-api.jar │ │ ├── saaj-impl.jar │ │ ├── stax-api-1.0-2.jar │ │ ├── stax-ex.jar │ │ ├── stax2-api.jar │ │ ├── streambuffer.jar │ │ ├── wadl-cmdline-1.1.2.jar │ │ ├── wadl-core-1.1.2.jar │ │ └── woodstox-core-asl.jar │ ├── out │ │ ├── artifacts │ │ │ └── JWS_war_exploded │ │ │ │ ├── WEB-INF │ │ │ │ ├── classes │ │ │ │ │ ├── ch04 │ │ │ │ │ │ └── team │ │ │ │ │ │ │ ├── HttpResponse.class │ │ │ │ │ │ │ ├── NSResolver.class │ │ │ │ │ │ │ ├── Player.class │ │ │ │ │ │ │ ├── RestfulTeams.class │ │ │ │ │ │ │ ├── Team.class │ │ │ │ │ │ │ ├── TeamsPublisher.class │ │ │ │ │ │ │ ├── TeamsUtility.class │ │ │ │ │ │ │ └── teams.ser │ │ │ │ │ └── example │ │ │ │ │ │ ├── HelloWorld.class │ │ │ │ │ │ └── HelloWorldClient.class │ │ │ │ ├── lib │ │ │ │ │ ├── FastInoset.jar │ │ │ │ │ ├── gmbal-api-only.jar │ │ │ │ │ ├── ha-api.jar │ │ │ │ │ ├── javax.annotation.jar │ │ │ │ │ ├── jaxb-api.jar │ │ │ │ │ ├── jaxb-impl.jar │ │ │ │ │ ├── jaxb-xjc.jar │ │ │ │ │ ├── jaxws-api.jar │ │ │ │ │ ├── jaxws-rt.jar │ │ │ │ │ ├── jaxws-tools.jar │ │ │ │ │ ├── jsr181-api.jar │ │ │ │ │ ├── mail.jar │ │ │ │ │ ├── management-api.jar │ │ │ │ │ ├── mimepull.jar │ │ │ │ │ ├── policy.jar │ │ │ │ │ ├── saaj-api.jar │ │ │ │ │ ├── saaj-impl.jar │ │ │ │ │ ├── stax-ex.jar │ │ │ │ │ ├── stax2-api.jar │ │ │ │ │ ├── streambuffer.jar │ │ │ │ │ └── woodstox-core-asl.jar │ │ │ │ ├── sun-jaxws.xml │ │ │ │ └── web.xml │ │ │ │ └── index.jsp │ │ └── production │ │ │ └── JWS │ │ │ ├── ch04 │ │ │ └── team │ │ │ │ ├── HttpResponse.class │ │ │ │ ├── NSResolver.class │ │ │ │ ├── Player.class │ │ │ │ ├── RestfulTeams.class │ │ │ │ ├── Team.class │ │ │ │ ├── TeamsPublisher.class │ │ │ │ ├── TeamsUtility.class │ │ │ │ └── teams.ser │ │ │ └── example │ │ │ ├── HelloWorld.class │ │ │ └── HelloWorldClient.class │ ├── src │ │ ├── ch04 │ │ │ └── team │ │ │ │ ├── HttpResponse.java │ │ │ │ ├── NSResolver.java │ │ │ │ ├── Player.java │ │ │ │ ├── RestfulTeams.java │ │ │ │ ├── Team.java │ │ │ │ ├── TeamsPublisher.java │ │ │ │ ├── TeamsUtility.java │ │ │ │ └── teams.ser │ │ └── example │ │ │ ├── HelloWorld.java │ │ │ └── HelloWorldClient.java │ └── web │ │ ├── WEB-INF │ │ ├── sun-jaxws.xml │ │ └── web.xml │ │ └── index.jsp ├── Neo4J │ └── PoC.txt ├── RestletXMLDecoder │ ├── ClientRestlet.class │ ├── ClientRestlet.java │ ├── Customer.class │ ├── Customer.java │ ├── CustomerRessource.class │ ├── CustomerRessource.java │ ├── README │ ├── ServerRestlets.class │ ├── ServerRestlets.java │ ├── customer-rce.xml │ ├── customer-xxe.xml │ ├── customer.xml │ └── lib │ │ ├── groovy-all-1.8.9.jar │ │ └── org.restlet.jar ├── SimpleJavaTests │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── description.html │ │ ├── encodings.xml │ │ ├── libraries │ │ │ └── org_restlet.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── SimpleJavaTests.iml │ ├── _test.txt │ ├── _test_2.txt │ ├── nc.exe │ ├── org.restlet.ext.jaxb.jar │ ├── org.restlet.jar │ ├── out │ │ └── production │ │ │ └── SimpleJavaTests │ │ │ ├── AlvaroPoc │ │ │ ├── Customer.class │ │ │ ├── CustomerRessource.class │ │ │ └── ServerRestlets.class │ │ │ ├── ClientRestlet.class │ │ │ ├── Customer.class │ │ │ ├── Main.class │ │ │ ├── XmlDecodeTest.class │ │ │ ├── XmlEncodeTest.class │ │ │ ├── chapter1 │ │ │ ├── HelloServer.class │ │ │ └── HelloServerResource.class │ │ │ └── com │ │ │ └── company │ │ │ └── RuntimeUtil.class │ ├── src │ │ ├── AlvaroPoc │ │ │ ├── Customer.java │ │ │ ├── CustomerRessource.java │ │ │ └── ServerRestlets.java │ │ ├── ClientRestlet.java │ │ ├── Customer.java │ │ ├── Main.java │ │ ├── XmlDecodeTest.java │ │ ├── XmlEncodeTest.java │ │ └── chapter1 │ │ │ ├── HelloServer.java │ │ │ └── HelloServerResource.java │ ├── test │ └── test.xml ├── SpringMvcTest │ ├── .idea │ │ ├── artifacts │ │ │ ├── SpringMvcTest_war.xml │ │ │ └── SpringMvcTest_war_exploded.xml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── description.html │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── Maven__aopalliance_aopalliance_1_0.xml │ │ │ ├── Maven__commons_logging_commons_logging_1_1_1.xml │ │ │ ├── Maven__javax_servlet_jsp_jsp_api_2_1.xml │ │ │ ├── Maven__javax_servlet_servlet_api_2_5.xml │ │ │ ├── Maven__junit_junit_4_8_2.xml │ │ │ ├── Maven__org_springframework_spring_aop_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_beans_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_context_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_core_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_expression_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_test_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_web_3_2_0_RELEASE.xml │ │ │ └── Maven__org_springframework_spring_webmvc_3_2_0_RELEASE.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── project-template.xml │ │ ├── runConfigurations │ │ │ └── AppTests.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── SpringMvcTest.iml │ ├── pom.xml │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── springapp │ │ │ │ │ └── mvc │ │ │ │ │ └── HelloController.java │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ ├── mvc-dispatcher-servlet.xml │ │ │ │ ├── pages │ │ │ │ └── hello.jsp │ │ │ │ └── web.xml │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── springapp │ │ │ └── mvc │ │ │ └── AppTests.java │ └── target │ │ ├── SpringMvcTest.war │ │ ├── SpringMvcTest │ │ └── WEB-INF │ │ │ ├── classes │ │ │ └── com │ │ │ │ └── springapp │ │ │ │ └── mvc │ │ │ │ └── HelloController.class │ │ │ ├── lib │ │ │ ├── aopalliance-1.0.jar │ │ │ ├── commons-logging-1.1.1.jar │ │ │ ├── servlet-api-2.5.jar │ │ │ ├── spring-aop-3.2.0.RELEASE.jar │ │ │ ├── spring-beans-3.2.0.RELEASE.jar │ │ │ ├── spring-context-3.2.0.RELEASE.jar │ │ │ ├── spring-core-3.2.0.RELEASE.jar │ │ │ ├── spring-expression-3.2.0.RELEASE.jar │ │ │ ├── spring-web-3.2.0.RELEASE.jar │ │ │ └── spring-webmvc-3.2.0.RELEASE.jar │ │ │ ├── mvc-dispatcher-servlet.xml │ │ │ ├── pages │ │ │ └── hello.jsp │ │ │ └── web.xml │ │ ├── classes │ │ └── com │ │ │ └── springapp │ │ │ └── mvc │ │ │ └── HelloController.class │ │ └── test-classes │ │ └── com │ │ └── springapp │ │ └── mvc │ │ └── AppTests.class ├── SpringServer │ ├── .idea │ │ ├── ant.xml │ │ ├── artifacts │ │ │ ├── SpringServer_war.xml │ │ │ └── SpringServer_war_exploded.xml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── description.html │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── Maven__antlr_antlr_2_7_6.xml │ │ │ ├── Maven__aopalliance_aopalliance_1_0.xml │ │ │ ├── Maven__asm_asm_3_1.xml │ │ │ ├── Maven__cglib_cglib_2_2.xml │ │ │ ├── Maven__com_thoughtworks_xstream_xstream_1_4_4.xml │ │ │ ├── Maven__commons_collections_commons_collections_3_1.xml │ │ │ ├── Maven__commons_logging_commons_logging_1_1_1.xml │ │ │ ├── Maven__dom4j_dom4j_1_6_1.xml │ │ │ ├── Maven__javassist_javassist_3_12_0_GA.xml │ │ │ ├── Maven__javax_servlet_jsp_jsp_api_2_1.xml │ │ │ ├── Maven__javax_servlet_servlet_api_2_5.xml │ │ │ ├── Maven__javax_transaction_jta_1_1.xml │ │ │ ├── Maven__jstl_jstl_1_2.xml │ │ │ ├── Maven__junit_junit_4_8_2.xml │ │ │ ├── Maven__org_aspectj_aspectjrt_1_6_12.xml │ │ │ ├── Maven__org_hibernate_hibernate_commons_annotations_3_2_0_Final.xml │ │ │ ├── Maven__org_hibernate_hibernate_core_3_6_10_Final.xml │ │ │ ├── Maven__org_hibernate_hibernate_entitymanager_3_6_10_Final.xml │ │ │ ├── Maven__org_hibernate_javax_persistence_hibernate_jpa_2_0_api_1_0_0_Final.xml │ │ │ ├── Maven__org_hsqldb_hsqldb_2_2_9.xml │ │ │ ├── Maven__org_json_json_20080701.xml │ │ │ ├── Maven__org_slf4j_jcl_over_slf4j_1_6_1.xml │ │ │ ├── Maven__org_slf4j_slf4j_api_1_6_1.xml │ │ │ ├── Maven__org_springframework_data_spring_data_commons_core_1_4_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_data_spring_data_jpa_1_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_aop_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_beans_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_context_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_core_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_expression_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_jdbc_3_1_2_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_orm_3_1_2_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_test_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_tx_3_1_2_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_web_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_spring_webmvc_3_2_0_RELEASE.xml │ │ │ ├── Maven__org_springframework_ws_spring_oxm_1_0_2.xml │ │ │ ├── Maven__org_springframework_ws_spring_xml_1_0_2.xml │ │ │ ├── Maven__stax_stax_api_1_0_1.xml │ │ │ ├── Maven__xmlpull_xmlpull_1_1_3_1.xml │ │ │ ├── Maven__xpp3_xpp3_min_1_1_4c.xml │ │ │ └── spring_3_2_2.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── project-template.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Instructions.md │ ├── SpringServer.iml │ ├── contact.xml │ ├── exploit.xml │ ├── pom.xml │ ├── src │ │ └── main │ │ │ ├── java │ │ │ └── org │ │ │ │ └── pwntester │ │ │ │ └── springserver │ │ │ │ ├── Contact.java │ │ │ │ ├── ContactController.java │ │ │ │ ├── ContactImpl.java │ │ │ │ ├── ContactRepository.java │ │ │ │ └── ContactTest.java │ │ │ ├── resources │ │ │ └── META-INF │ │ │ │ └── persistence.xml │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ ├── mvc-dispatcher-servlet.xml │ │ │ └── web.xml │ └── target │ │ ├── SpringServer.war │ │ ├── SpringServer │ │ └── WEB-INF │ │ │ ├── classes │ │ │ ├── META-INF │ │ │ │ └── persistence.xml │ │ │ └── org │ │ │ │ └── pwntester │ │ │ │ └── springserver │ │ │ │ ├── Contact.class │ │ │ │ ├── ContactController.class │ │ │ │ ├── ContactImpl.class │ │ │ │ └── ContactRepository.class │ │ │ ├── lib │ │ │ ├── antlr-2.7.6.jar │ │ │ ├── aopalliance-1.0.jar │ │ │ ├── asm-3.1.jar │ │ │ ├── aspectjrt-1.6.12.jar │ │ │ ├── cglib-2.2.jar │ │ │ ├── commons-collections-3.1.jar │ │ │ ├── commons-logging-1.1.1.jar │ │ │ ├── dom4j-1.6.1.jar │ │ │ ├── hibernate-commons-annotations-3.2.0.Final.jar │ │ │ ├── hibernate-core-3.6.10.Final.jar │ │ │ ├── hibernate-entitymanager-3.6.10.Final.jar │ │ │ ├── hibernate-jpa-2.0-api-1.0.0.Final.jar │ │ │ ├── hsqldb-2.2.9.jar │ │ │ ├── javassist-3.12.0.GA.jar │ │ │ ├── jcl-over-slf4j-1.6.1.jar │ │ │ ├── json-20080701.jar │ │ │ ├── jstl-1.2.jar │ │ │ ├── jta-1.1.jar │ │ │ ├── servlet-api-2.5.jar │ │ │ ├── slf4j-api-1.6.1.jar │ │ │ ├── spring-aop-3.2.0.RELEASE.jar │ │ │ ├── spring-beans-3.2.0.RELEASE.jar │ │ │ ├── spring-context-3.2.0.RELEASE.jar │ │ │ ├── spring-core-3.2.0.RELEASE.jar │ │ │ ├── spring-data-commons-core-1.4.0.RELEASE.jar │ │ │ ├── spring-data-jpa-1.2.0.RELEASE.jar │ │ │ ├── spring-expression-3.2.0.RELEASE.jar │ │ │ ├── spring-jdbc-3.1.2.RELEASE.jar │ │ │ ├── spring-orm-3.1.2.RELEASE.jar │ │ │ ├── spring-oxm-1.0.2.jar │ │ │ ├── spring-tx-3.1.2.RELEASE.jar │ │ │ ├── spring-web-3.2.0.RELEASE.jar │ │ │ ├── spring-webmvc-3.2.0.RELEASE.jar │ │ │ ├── spring-xml-1.0.2.jar │ │ │ ├── stax-api-1.0.1.jar │ │ │ ├── xmlpull-1.1.3.1.jar │ │ │ ├── xpp3_min-1.1.4c.jar │ │ │ └── xstream-1.4.4.jar │ │ │ ├── mvc-dispatcher-servlet.xml │ │ │ └── web.xml │ │ ├── classes │ │ ├── META-INF │ │ │ └── persistence.xml │ │ └── org │ │ │ └── pwntester │ │ │ └── springserver │ │ │ ├── Contact.class │ │ │ ├── ContactController.class │ │ │ ├── ContactImpl.class │ │ │ └── ContactRepository.class │ │ └── maven-archiver │ │ └── pom.properties ├── TestServlet │ ├── .idea │ │ ├── artifacts │ │ │ └── web_war_exploded.xml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── description.html │ │ ├── encodings.xml │ │ ├── libraries │ │ │ └── com_noelios_restlet_ext_servlet_2_4.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── TestServlet.iml │ ├── lib │ │ ├── org.restlet.example.jar │ │ ├── org.restlet.ext.wadl.jar │ │ └── org.restlet.jar │ ├── org.restlet.jar │ ├── out │ │ ├── artifacts │ │ │ └── web_war_exploded │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ └── WEB-INF │ │ │ │ ├── classes │ │ │ │ ├── WebContent │ │ │ │ │ ├── META-INF │ │ │ │ │ │ └── MANIFEST.MF │ │ │ │ │ └── WEB-INF │ │ │ │ │ │ ├── index.jsp │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── org.restlet.jar │ │ │ │ │ │ └── web.xml │ │ │ │ └── com │ │ │ │ │ └── testServlet │ │ │ │ │ ├── Customer.class │ │ │ │ │ ├── CustomerRessource.class │ │ │ │ │ ├── ServerRestlets.class │ │ │ │ │ └── TestServletApplication.class │ │ │ │ ├── index.jsp │ │ │ │ ├── lib │ │ │ │ ├── com.noelios.restlet.ext.servlet_2.4.jar │ │ │ │ ├── com.noelios.restlet.jar │ │ │ │ └── org.restlet.jar │ │ │ │ └── web.xml │ │ └── production │ │ │ └── TestServlet │ │ │ ├── WebContent │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ └── WEB-INF │ │ │ │ ├── index.jsp │ │ │ │ ├── lib │ │ │ │ └── org.restlet.jar │ │ │ │ └── web.xml │ │ │ └── com │ │ │ └── testServlet │ │ │ ├── Customer.class │ │ │ ├── CustomerRessource.class │ │ │ ├── ServerRestlets.class │ │ │ └── TestServletApplication.class │ └── src │ │ ├── WebContent │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── WEB-INF │ │ │ ├── index.jsp │ │ │ ├── lib │ │ │ └── org.restlet.jar │ │ │ └── web.xml │ │ └── com │ │ └── testServlet │ │ ├── Customer.java │ │ ├── CustomerRessource.java │ │ ├── ServerRestlets.java │ │ └── TestServletApplication.java ├── XMLDecoderVuln │ ├── .idea │ │ ├── artifacts │ │ │ └── XMLDecoderVuln_jar.xml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── description.html │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── project-template.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Test.xml │ ├── Test2.xml │ ├── TestGroovyShell.xml │ ├── TestObjectMethodCall.xml │ ├── TestOrig.xml │ ├── TestStaticMethodCall.xml │ ├── XMLDecoderVuln.iml │ ├── out │ │ ├── artifacts │ │ │ └── XMLDecoderVuln.jar │ │ │ │ ├── META-INF │ │ │ │ └── MANIFEST.MF │ │ │ │ ├── XMLDecoderVuln.jar │ │ │ │ ├── XMLDecoderVuln.zip │ │ │ │ └── com │ │ │ │ └── company │ │ │ │ ├── Main.class │ │ │ │ ├── RuntimeUtil.class │ │ │ │ └── Test2.xml │ │ └── production │ │ │ └── XMLDecoderVuln │ │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ │ ├── com │ │ │ └── company │ │ │ │ ├── MainOriginal.class │ │ │ │ ├── PocUsingBytes.class │ │ │ │ ├── PocUsingBytes_ExecuteFromXml.class │ │ │ │ ├── PocUsingBytes_Method_Invoke_Current_Class.class │ │ │ │ ├── PocUsingBytes_Open_Notepad.class │ │ │ │ ├── PocUsingBytes_Simple_Version.class │ │ │ │ ├── RuntimeUtil.class │ │ │ │ └── Test2.xml │ │ │ └── defcon │ │ │ └── poc │ │ │ └── rest │ │ │ ├── RestfulTeams.class │ │ │ └── Team.class │ └── src │ │ ├── META-INF │ │ └── MANIFEST.MF │ │ ├── com │ │ └── company │ │ │ ├── MainOriginal.java │ │ │ ├── PocUsingBytes.java │ │ │ ├── PocUsingBytes_ExecuteFromXml.java │ │ │ ├── PocUsingBytes_Method_Invoke_Current_Class.java │ │ │ ├── PocUsingBytes_Open_Notepad.java │ │ │ ├── PocUsingBytes_Simple_Version.java │ │ │ ├── RuntimeUtil.java │ │ │ └── Test2.xml │ │ └── defcon │ │ └── poc │ │ └── rest │ │ ├── RestfulTeams.java │ │ └── Team.java ├── XmlDecode_ViaRest │ ├── .idea │ │ ├── artifacts │ │ │ └── web_war_exploded.xml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── description.html │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── XmlDecode_ViaRest.iml │ ├── out │ │ ├── artifacts │ │ │ └── web_war_exploded │ │ │ │ ├── WEB-INF │ │ │ │ ├── classes │ │ │ │ │ ├── TeamClient.class │ │ │ │ │ ├── ch01 │ │ │ │ │ │ ├── soap │ │ │ │ │ │ │ └── DemoSoap.class │ │ │ │ │ │ ├── team │ │ │ │ │ │ │ ├── Player.class │ │ │ │ │ │ │ ├── Team.class │ │ │ │ │ │ │ ├── Teams.class │ │ │ │ │ │ │ ├── TeamsPublisher.class │ │ │ │ │ │ │ ├── TeamsUtility.class │ │ │ │ │ │ │ └── jaxws │ │ │ │ │ │ │ │ ├── GetTeam.class │ │ │ │ │ │ │ │ ├── GetTeamResponse.class │ │ │ │ │ │ │ │ ├── GetTeams.class │ │ │ │ │ │ │ │ └── GetTeamsResponse.class │ │ │ │ │ │ └── ts │ │ │ │ │ │ │ ├── MyThreadPool.class │ │ │ │ │ │ │ ├── TimeClient.class │ │ │ │ │ │ │ ├── TimePublisherMT.class │ │ │ │ │ │ │ ├── TimeServer.class │ │ │ │ │ │ │ ├── TimeServerImpl.class │ │ │ │ │ │ │ ├── TimeServerPublisher.class │ │ │ │ │ │ │ ├── tsClient.pl │ │ │ │ │ │ │ ├── tsClient.rb │ │ │ │ │ │ │ └── tsClient2.pl │ │ │ │ │ ├── client │ │ │ │ │ │ ├── TimeClientWSDL.class │ │ │ │ │ │ ├── TimeServer.class │ │ │ │ │ │ └── TimeServerImplService.class │ │ │ │ │ ├── defcon │ │ │ │ │ │ └── poc │ │ │ │ │ │ │ └── rest │ │ │ │ │ │ │ ├── RestfulTeams.class │ │ │ │ │ │ │ ├── Team.class │ │ │ │ │ │ │ └── WSTest.class │ │ │ │ │ └── teamsC │ │ │ │ │ │ ├── GetTeam.class │ │ │ │ │ │ ├── GetTeamResponse.class │ │ │ │ │ │ ├── GetTeams.class │ │ │ │ │ │ ├── GetTeamsResponse.class │ │ │ │ │ │ ├── ObjectFactory.class │ │ │ │ │ │ ├── Player.class │ │ │ │ │ │ ├── Team.class │ │ │ │ │ │ ├── Teams.class │ │ │ │ │ │ ├── TeamsService.class │ │ │ │ │ │ └── package-info.class │ │ │ │ └── web.xml │ │ │ │ └── index.jsp │ │ └── production │ │ │ └── XmlDecode_ViaRest │ │ │ ├── TeamClient.class │ │ │ ├── ch01 │ │ │ ├── soap │ │ │ │ └── DemoSoap.class │ │ │ ├── team │ │ │ │ ├── Player.class │ │ │ │ ├── Team.class │ │ │ │ ├── Teams.class │ │ │ │ ├── TeamsPublisher.class │ │ │ │ ├── TeamsUtility.class │ │ │ │ └── jaxws │ │ │ │ │ ├── GetTeam.class │ │ │ │ │ ├── GetTeamResponse.class │ │ │ │ │ ├── GetTeams.class │ │ │ │ │ └── GetTeamsResponse.class │ │ │ └── ts │ │ │ │ ├── MyThreadPool.class │ │ │ │ ├── TimeClient.class │ │ │ │ ├── TimePublisherMT.class │ │ │ │ ├── TimeServer.class │ │ │ │ ├── TimeServerImpl.class │ │ │ │ ├── TimeServerPublisher.class │ │ │ │ ├── tsClient.pl │ │ │ │ ├── tsClient.rb │ │ │ │ └── tsClient2.pl │ │ │ ├── client │ │ │ ├── TimeClientWSDL.class │ │ │ ├── TimeServer.class │ │ │ └── TimeServerImplService.class │ │ │ ├── defcon │ │ │ └── poc │ │ │ │ └── rest │ │ │ │ ├── RestfulTeams.class │ │ │ │ ├── Team.class │ │ │ │ └── WSTest.class │ │ │ └── teamsC │ │ │ ├── GetTeam.class │ │ │ ├── GetTeamResponse.class │ │ │ ├── GetTeams.class │ │ │ ├── GetTeamsResponse.class │ │ │ ├── ObjectFactory.class │ │ │ ├── Player.class │ │ │ ├── Team.class │ │ │ ├── Teams.class │ │ │ ├── TeamsService.class │ │ │ └── package-info.class │ ├── src │ │ ├── TeamClient.java │ │ ├── ch01 │ │ │ ├── soap │ │ │ │ └── DemoSoap.java │ │ │ ├── team │ │ │ │ ├── Player.java │ │ │ │ ├── Team.java │ │ │ │ ├── Teams.java │ │ │ │ ├── TeamsPublisher.java │ │ │ │ ├── TeamsUtility.java │ │ │ │ └── jaxws │ │ │ │ │ ├── GetTeam.java │ │ │ │ │ ├── GetTeamResponse.java │ │ │ │ │ ├── GetTeams.java │ │ │ │ │ └── GetTeamsResponse.java │ │ │ └── ts │ │ │ │ ├── MyThreadPool.java │ │ │ │ ├── TimeClient.java │ │ │ │ ├── TimePublisherMT.java │ │ │ │ ├── TimeServer.java │ │ │ │ ├── TimeServerImpl.java │ │ │ │ ├── TimeServerPublisher.java │ │ │ │ ├── tsClient.pl │ │ │ │ ├── tsClient.rb │ │ │ │ └── tsClient2.pl │ │ ├── client │ │ │ ├── TimeClientWSDL.java │ │ │ ├── TimeServer.java │ │ │ └── TimeServerImplService.java │ │ ├── defcon │ │ │ └── poc │ │ │ │ └── rest │ │ │ │ ├── RestfulTeams.java │ │ │ │ ├── Team.java │ │ │ │ └── WSTest.java │ │ └── teamsC │ │ │ ├── GetTeam.java │ │ │ ├── GetTeamResponse.java │ │ │ ├── GetTeams.java │ │ │ ├── GetTeamsResponse.java │ │ │ ├── ObjectFactory.java │ │ │ ├── Player.java │ │ │ ├── Team.java │ │ │ ├── Teams.java │ │ │ ├── TeamsService.java │ │ │ └── package-info.java │ └── web │ │ ├── WEB-INF │ │ └── web.xml │ │ └── index.jsp ├── _O2_Scripts │ ├── Spring-XStream │ │ ├── PoC -UI to exploit Spring XStream.exe │ │ ├── PoC -UI to exploit Spring XStream.h2 │ │ └── exploits │ │ │ ├── 1 - OK - contact.xml │ │ │ ├── 2a - Using Dinamic proxy.xml │ │ │ ├── 2b - Using Dinamic proxy.xml │ │ │ ├── 2c - Using Dinamic proxy.xml │ │ │ ├── 3 - Exploit - Calc.xml │ │ │ ├── 4a - Exploit - Notepad.xml │ │ │ ├── 4b - Exploit - notepad via cmd.xml │ │ │ ├── Info Disclosure - Bad Process.xml │ │ │ └── Info Disclosure - Bad Request.xml │ ├── XmlEncoder - Restlet │ │ ├── PoC of RCE on RestletXMLDecoder demo.h2 │ │ ├── PoC of Restlet HelloServer demo.h2 │ │ ├── Tool - Inject Html via XMLEncode.h2 │ │ ├── Util - UI to exploit Restlet HelloServer demo.exe │ │ ├── Util - UI to exploit Restlet HelloServer demo.h2 │ │ ├── exploits │ │ │ ├── 1 - create item (Simple).xml │ │ │ ├── 2 - create item (using properties).xml │ │ │ ├── 3 - create item (from var).xml │ │ │ ├── 4 - create item (and more).xml │ │ │ ├── 5 - create item (and calc).xml │ │ │ ├── 6 - Process Builder - Start a Calc.xml │ │ │ ├── 7a - Creating a File.xml │ │ │ ├── 7b - Creating a Class File.xml │ │ │ ├── 7c - Creating a Class File (correct location).xml │ │ │ ├── 7d - execution class file - anotherExecute- calcl.xml │ │ │ ├── 8a - HttpResponse - return variable.xml │ │ │ ├── 8b - HttpResponse - return variables.xml │ │ │ ├── 8c - HttpResponse - return JavaProperties.xml │ │ │ ├── 8d - Exploit - Create XSS.xml │ │ │ ├── 8e - HttpResponse - execute process - read two lines.xml │ │ │ ├── 8f - HttpResponse - execute process - ipconfig.xml │ │ │ ├── 9a - download NetCat.xml │ │ │ ├── 9b - Start NetCat reverse shell.xml │ │ │ └── Other │ │ │ │ ├── 9 - Script - download NetCat.xml │ │ │ │ ├── Exploit - Change HttpResponse.xml │ │ │ │ ├── HttpResponse - RCE.xml │ │ │ │ ├── HttpResponse - execute process.xml │ │ │ │ ├── Script - Create file.xml │ │ │ │ ├── Script - download NetCat - mode2.xml │ │ │ │ ├── Script - download NetCat and RShell.xml │ │ │ │ ├── Send a HttpURLConnection.xml │ │ │ │ ├── Start a Calc - using Runtime.exe.xml │ │ │ │ ├── a String.xml │ │ │ │ ├── com.company.RuntimeUtil - execute - calcl.xml │ │ │ │ ├── demo 3 - create item (from 2nd var).xml │ │ │ │ ├── demo 4 - create item (from 2nd var).xml │ │ │ │ ├── demo 4a - create item (from 2nd var).xml │ │ │ │ ├── demo 5 - create item (from 2nd var).xml │ │ │ │ ├── demo 6 - create item (and calc).xml │ │ │ │ └── tests.xml │ │ └── localhost-8111-firstResource-items.url │ └── XmlEncoder - in Desktop │ │ ├── Exploits │ │ ├── A String - Mode 2.xml │ │ ├── A String Array.xml │ │ ├── A String.xml │ │ ├── A StringBuilder.xml │ │ ├── Open Notepad (with win.ini).xml │ │ ├── Open calc.xml │ │ ├── PoC- Creating a File.xml │ │ ├── PoC- Creating a class file.xml │ │ ├── Simple Int.xml │ │ ├── Simple String.xml │ │ └── Works - Bad formated xml.xml │ │ ├── JSPs │ │ └── pwn.jsp.txt │ │ ├── Util - XmlDecode in memory using IKVM.h2 │ │ ├── Util - XmlDecode in memory using Jni4Net.h2 │ │ ├── Util - XmlEncode object (using IKVM).h2 │ │ ├── helper - create bytes for class file exploit.h2 │ │ └── javabeans.dtd ├── _TestServlet │ ├── WebContent │ │ ├── META-INF │ │ │ └── MANIFEST.MF │ │ └── WEB-INF │ │ │ ├── lib │ │ │ ├── com.noelios.restlet.ext.servlet_2.4.jar │ │ │ ├── com.noelios.restlet.jar │ │ │ └── org.restlet.jar │ │ │ └── web.xml │ └── src │ │ └── com │ │ └── testServlet │ │ └── TestServletApplication.java ├── jsumners-restlet-2.1-demo-a7ba12d5c91d │ ├── .hg_archival.txt │ ├── .hgignore │ ├── DemoWebAPI.iml │ ├── DemoWebAPI.ipr │ ├── DemoWebAPI.iws │ ├── LICENSE │ ├── README.md │ ├── pom.xml │ ├── projectFilesBackup │ │ ├── DemoWebAPI.iml │ │ └── DemoWebAPI.ipr │ ├── restlet-2.1-demo.sublime-project │ ├── src │ │ ├── main │ │ │ ├── java │ │ │ │ ├── README │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── webapi │ │ │ │ │ ├── ServerApplication.java │ │ │ │ │ ├── auth │ │ │ │ │ └── FooAuthenticator.java │ │ │ │ │ ├── common │ │ │ │ │ ├── Foo.java │ │ │ │ │ └── Parrot.java │ │ │ │ │ └── server │ │ │ │ │ ├── FooServerResource.java │ │ │ │ │ ├── IParrotServerResource.java │ │ │ │ │ └── ParrotServerResource.java │ │ │ ├── resources │ │ │ │ ├── DemoWebAPI.properties │ │ │ │ ├── debug │ │ │ │ │ └── README │ │ │ │ └── production │ │ │ │ │ └── README │ │ │ └── webapp │ │ │ │ └── WEB-INF │ │ │ │ └── web.xml │ │ └── test │ │ │ ├── java │ │ │ └── README │ │ │ ├── resources │ │ │ └── DemoWebAPI.properties │ │ │ └── webapp │ │ │ └── WEB-INF │ │ │ └── web.xml │ └── target │ │ ├── ${war.name}.war │ │ ├── DemoWebAPI-0.1.war │ │ ├── DemoWebAPI-0.1 │ │ └── WEB-INF │ │ │ ├── DemoWebAPI.properties │ │ │ ├── WEB-INF │ │ │ └── web.xml │ │ │ ├── classes │ │ │ ├── DemoWebAPI.properties │ │ │ ├── com │ │ │ │ └── example │ │ │ │ │ └── webapi │ │ │ │ │ ├── ServerApplication.class │ │ │ │ │ ├── auth │ │ │ │ │ └── FooAuthenticator.class │ │ │ │ │ ├── common │ │ │ │ │ ├── Foo.class │ │ │ │ │ └── Parrot.class │ │ │ │ │ └── server │ │ │ │ │ ├── FooServerResource.class │ │ │ │ │ ├── IParrotServerResource.class │ │ │ │ │ └── ParrotServerResource.class │ │ │ ├── debug │ │ │ │ └── README │ │ │ └── production │ │ │ │ └── README │ │ │ ├── lib │ │ │ ├── jackson-core-asl-1.9.8.jar │ │ │ ├── jackson-core-lgpl-1.9.11.jar │ │ │ ├── jackson-jaxrs-1.9.11.jar │ │ │ ├── jackson-mapper-asl-1.9.8.jar │ │ │ ├── jackson-mapper-lgpl-1.9.11.jar │ │ │ ├── jackson-mrbean-1.9.11.jar │ │ │ ├── jackson-smile-1.9.11.jar │ │ │ ├── jackson-xc-1.9.11.jar │ │ │ ├── log4j-1.2.16.jar │ │ │ ├── org.restlet-2.1.2.jar │ │ │ ├── org.restlet.ext.jackson-2.1.2.jar │ │ │ ├── org.restlet.ext.json-2.1.2.jar │ │ │ ├── org.restlet.ext.servlet-2.1.2.jar │ │ │ └── org.restlet.lib.org.json-2.0.jar │ │ │ └── web.xml │ │ ├── classes │ │ ├── DemoWebAPI.properties │ │ ├── com │ │ │ └── example │ │ │ │ └── webapi │ │ │ │ ├── ServerApplication.class │ │ │ │ ├── auth │ │ │ │ └── FooAuthenticator.class │ │ │ │ ├── common │ │ │ │ ├── Foo.class │ │ │ │ └── Parrot.class │ │ │ │ └── server │ │ │ │ ├── FooServerResource.class │ │ │ │ ├── IParrotServerResource.class │ │ │ │ └── ParrotServerResource.class │ │ ├── debug │ │ │ └── README │ │ └── production │ │ │ └── README │ │ ├── maven-archiver │ │ └── pom.properties │ │ ├── site │ │ ├── css │ │ │ ├── maven-base.css │ │ │ ├── maven-theme.css │ │ │ ├── print.css │ │ │ └── site.css │ │ ├── dependencies.html │ │ ├── dependency-info.html │ │ ├── distribution-management.html │ │ ├── images │ │ │ ├── close.gif │ │ │ ├── collapsed.gif │ │ │ ├── expanded.gif │ │ │ ├── external.png │ │ │ ├── icon_error_sml.gif │ │ │ ├── icon_info_sml.gif │ │ │ ├── icon_success_sml.gif │ │ │ ├── icon_warning_sml.gif │ │ │ ├── logos │ │ │ │ ├── build-by-maven-black.png │ │ │ │ ├── build-by-maven-white.png │ │ │ │ └── maven-feather.png │ │ │ └── newwindow.png │ │ ├── index.html │ │ ├── integration.html │ │ ├── issue-tracking.html │ │ ├── license.html │ │ ├── mail-lists.html │ │ ├── plugin-management.html │ │ ├── plugins.html │ │ ├── project-info.html │ │ ├── project-summary.html │ │ ├── source-repository.html │ │ └── team-list.html │ │ └── test-classes │ │ └── DemoWebAPI.properties └── nc.exe ├── Live-Demos ├── Neo4j │ ├── Fiddler.exe.lnk │ ├── Neo4j - 1.9.2.url │ ├── Neo4j.bat.lnk │ ├── PoC.txt │ ├── XMLDecoder (with nc).url │ └── XSRF_page │ │ ├── 28.1. Securing access to the Neo4j Server.htm │ │ ├── 28.1. Securing access to the Neo4j Server_files │ │ ├── CComment.js │ │ ├── admin-bar.css │ │ ├── alfie.js │ │ ├── avatar(1).php │ │ ├── avatar(2).php │ │ ├── avatar(3).php │ │ ├── avatar.php │ │ ├── avatar92(1).jpg │ │ ├── avatar92(2).jpg │ │ ├── avatar92.jpg │ │ ├── beacon.js │ │ ├── bookstore_sm.gif │ │ ├── checkx2.png │ │ ├── client.js │ │ ├── comments.png │ │ ├── config.js │ │ ├── cypherconsole.js │ │ ├── disqus.js │ │ ├── docbook-xsl.css │ │ ├── embed.js │ │ ├── event(1).js │ │ ├── event.js │ │ ├── ga.js │ │ ├── gce-style.css │ │ ├── imagescaler.js │ │ ├── important.png │ │ ├── jquery-1.6.4.min.js │ │ ├── jquery-ui.min.js │ │ ├── jquery.easing.js │ │ ├── jquery.js │ │ ├── jquery.ui.autocomplete.min.js │ │ ├── jquery.ui.core.min.js │ │ ├── jquery.ui.position.min.js │ │ ├── jquery.ui.widget.min.js │ │ ├── js │ │ ├── lib.js │ │ ├── load.js │ │ ├── lounge.css │ │ ├── lounge.js │ │ ├── main.js │ │ ├── n4jtutorial_ad-300x250_v2.png │ │ ├── neo.css │ │ ├── noavatar92.png │ │ ├── pagenavi-css.css │ │ ├── pdf.png │ │ ├── saved_resource(1).htm │ │ ├── saved_resource.htm │ │ ├── script.js │ │ ├── shBrushBash.js │ │ ├── shBrushCypher.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushJScript.js │ │ ├── shBrushJava.js │ │ ├── shBrushPlain.js │ │ ├── shBrushProperties.js │ │ ├── shBrushPython.js │ │ ├── shBrushScala.js │ │ ├── shBrushSql.js │ │ ├── shBrushXml.js │ │ ├── shCore.css │ │ ├── shCore.js │ │ ├── shCoreEclipse.css │ │ ├── shThemeEclipse.css │ │ ├── sidebar.js │ │ ├── slider.css │ │ ├── slt-cf-gmaps.min.js │ │ ├── style(1).css │ │ ├── style.css │ │ ├── svgreplacer.js │ │ ├── tablestyler.js │ │ ├── tabs.css │ │ ├── version.js │ │ ├── versionswitcher.js │ │ └── {common,util,stats}.js │ │ ├── XMLDecoder (Java Platform SE 7 )_files │ │ ├── resources │ │ │ ├── background.gif │ │ │ ├── tab.gif │ │ │ ├── titlebar.gif │ │ │ └── titlebar_end.gif │ │ ├── s_code.js │ │ ├── s_code_download.js │ │ └── stylesheet.css │ │ ├── XMLDecoder - with calc.htm │ │ ├── XMLDecoder - with nc.htm │ │ ├── XMLDecoder.htm │ │ ├── jquery-1.6.4.min.js │ │ └── nc.exe ├── Restlet-App │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── libraries │ │ │ ├── org_restlet.xml │ │ │ └── org_restlet_ext_xml.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Restlet-App.iml │ ├── XmlDecoder - Shortcut.lnk │ ├── lib │ │ ├── org.restlet.ext.xml.jar │ │ └── org.restlet.jar │ ├── nc.exe │ ├── out │ │ └── production │ │ │ └── Restlet-App │ │ │ └── firstResource │ │ │ ├── BaseResource.class │ │ │ ├── FirstResourceApplication.class │ │ │ ├── FirstResourceClientMain.class │ │ │ ├── FirstResourceServerMain.class │ │ │ ├── Item.class │ │ │ ├── ItemResource.class │ │ │ ├── ItemsResource.class │ │ │ └── ItemsXmlResource.class │ └── src │ │ └── firstResource │ │ ├── BaseResource.java │ │ ├── FirstResourceApplication.java │ │ ├── FirstResourceClientMain.java │ │ ├── FirstResourceServerMain.java │ │ ├── Item.java │ │ ├── ItemResource.java │ │ ├── ItemsResource.java │ │ └── ItemsXmlResource.java └── XmlDecoder │ ├── Fiddler.exe.lnk │ ├── IntelliJ IDEA 12.1.4.lnk │ ├── NetCat Demo │ ├── Fiddler.exe.lnk │ ├── Hello.txt │ ├── HostLocalWebsite.lnk │ ├── fiddler request.txt │ ├── nc.exe │ └── start nc.bat │ ├── O2 Platform - Main O2 Gui v5.3.exe.lnk │ ├── Restlet-App - Shortcut.lnk │ ├── XmlEncoder - Restlet.lnk │ └── XmlEncoder - in Desktop.lnk ├── Notes └── Abe on .NET research targets.txt └── Presentation └── RESTing On Your Laurels Will Get You Powned3.pptx /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Demos/JWS/.idea/.name: -------------------------------------------------------------------------------- 1 | JWS -------------------------------------------------------------------------------- /Demos/JWS/.idea/artifacts/JWS_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/artifacts/JWS_war_exploded.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/compiler.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/encodings.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/libraries/JAX_RS_jersey_1_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/libraries/JAX_RS_jersey_1_12.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/libraries/JAX_WS_Glassfish___JAX_WS_2_2_RI___Metro_1_X___JWSDP_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/libraries/JAX_WS_Glassfish___JAX_WS_2_2_RI___Metro_1_X___JWSDP_2_2.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/misc.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/modules.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/vcs.xml -------------------------------------------------------------------------------- /Demos/JWS/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/.idea/workspace.xml -------------------------------------------------------------------------------- /Demos/JWS/JWS.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/JWS.iml -------------------------------------------------------------------------------- /Demos/JWS/lib/FastInfoset-1.2.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/FastInfoset-1.2.12.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/FastInoset.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/FastInoset.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/activation-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/activation-1.1.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/asm-3.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/asm-3.3.1.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/comresrcgen-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/comresrcgen-1.0.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/gmbal-api-only.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/gmbal-api-only.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/grizzly-servlet-webserver-1.9.45.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/grizzly-servlet-webserver-1.9.45.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/ha-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/ha-api.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jackson-core-asl-1.9.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jackson-core-asl-1.9.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jackson-jaxrs-1.9.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jackson-jaxrs-1.9.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jackson-mapper-asl-1.9.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jackson-mapper-asl-1.9.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jackson-xc-1.9.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jackson-xc-1.9.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/javax.annotation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/javax.annotation.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxb-api-2.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxb-api-2.1.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxb-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxb-api.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxb-impl-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxb-impl-2.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxb-impl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxb-impl.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxb-xjc-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxb-xjc-2.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxb-xjc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxb-xjc.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxws-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxws-api.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxws-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxws-rt.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jaxws-tools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jaxws-tools.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jdom-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jdom-1.0.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jersey-bundle-1.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jersey-bundle-1.12.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jersey-client-1.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jersey-client-1.12.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jersey-core-1.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jersey-core-1.12.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jersey-grizzly-1.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jersey-grizzly-1.12.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jersey-multipart-1.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jersey-multipart-1.12.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jettison-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jettison-1.1.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/jsr181-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/jsr181-api.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/localizer-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/localizer-1.0.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/mail-1.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/mail-1.4.4.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/mail.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/mail.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/management-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/management-api.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/mimepull-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/mimepull-1.3.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/mimepull.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/mimepull.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/persistence-api-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/persistence-api-1.0.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/policy.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/policy.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/rome-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/rome-1.0.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/saaj-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/saaj-api.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/saaj-impl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/saaj-impl.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/stax-api-1.0-2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/stax-api-1.0-2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/stax-ex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/stax-ex.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/stax2-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/stax2-api.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/streambuffer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/streambuffer.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/wadl-cmdline-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/wadl-cmdline-1.1.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/wadl-core-1.1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/wadl-core-1.1.2.jar -------------------------------------------------------------------------------- /Demos/JWS/lib/woodstox-core-asl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/lib/woodstox-core-asl.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/HttpResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/HttpResponse.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/NSResolver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/NSResolver.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/Player.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/Player.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/RestfulTeams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/RestfulTeams.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/Team.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/Team.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/TeamsPublisher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/TeamsPublisher.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/TeamsUtility.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/TeamsUtility.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/teams.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/ch04/team/teams.ser -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/example/HelloWorld.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/example/HelloWorld.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/example/HelloWorldClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/classes/example/HelloWorldClient.class -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/FastInoset.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/FastInoset.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/gmbal-api-only.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/gmbal-api-only.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/ha-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/ha-api.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/javax.annotation.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/javax.annotation.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxb-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxb-api.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxb-impl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxb-impl.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxb-xjc.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxb-xjc.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxws-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxws-api.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxws-rt.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxws-rt.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxws-tools.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jaxws-tools.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jsr181-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/jsr181-api.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/mail.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/mail.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/management-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/management-api.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/mimepull.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/mimepull.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/policy.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/policy.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/saaj-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/saaj-api.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/saaj-impl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/saaj-impl.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/stax-ex.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/stax-ex.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/stax2-api.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/stax2-api.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/streambuffer.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/streambuffer.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/woodstox-core-asl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/lib/woodstox-core-asl.jar -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/sun-jaxws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/sun-jaxws.xml -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/JWS/out/artifacts/JWS_war_exploded/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/artifacts/JWS_war_exploded/index.jsp -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/ch04/team/HttpResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/ch04/team/HttpResponse.class -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/ch04/team/NSResolver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/ch04/team/NSResolver.class -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/ch04/team/Player.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/ch04/team/Player.class -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/ch04/team/RestfulTeams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/ch04/team/RestfulTeams.class -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/ch04/team/Team.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/ch04/team/Team.class -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/ch04/team/TeamsPublisher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/ch04/team/TeamsPublisher.class -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/ch04/team/TeamsUtility.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/ch04/team/TeamsUtility.class -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/ch04/team/teams.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/ch04/team/teams.ser -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/example/HelloWorld.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/example/HelloWorld.class -------------------------------------------------------------------------------- /Demos/JWS/out/production/JWS/example/HelloWorldClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/out/production/JWS/example/HelloWorldClient.class -------------------------------------------------------------------------------- /Demos/JWS/src/ch04/team/HttpResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/ch04/team/HttpResponse.java -------------------------------------------------------------------------------- /Demos/JWS/src/ch04/team/NSResolver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/ch04/team/NSResolver.java -------------------------------------------------------------------------------- /Demos/JWS/src/ch04/team/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/ch04/team/Player.java -------------------------------------------------------------------------------- /Demos/JWS/src/ch04/team/RestfulTeams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/ch04/team/RestfulTeams.java -------------------------------------------------------------------------------- /Demos/JWS/src/ch04/team/Team.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/ch04/team/Team.java -------------------------------------------------------------------------------- /Demos/JWS/src/ch04/team/TeamsPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/ch04/team/TeamsPublisher.java -------------------------------------------------------------------------------- /Demos/JWS/src/ch04/team/TeamsUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/ch04/team/TeamsUtility.java -------------------------------------------------------------------------------- /Demos/JWS/src/ch04/team/teams.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/ch04/team/teams.ser -------------------------------------------------------------------------------- /Demos/JWS/src/example/HelloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/example/HelloWorld.java -------------------------------------------------------------------------------- /Demos/JWS/src/example/HelloWorldClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/src/example/HelloWorldClient.java -------------------------------------------------------------------------------- /Demos/JWS/web/WEB-INF/sun-jaxws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/web/WEB-INF/sun-jaxws.xml -------------------------------------------------------------------------------- /Demos/JWS/web/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/web/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/JWS/web/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/JWS/web/index.jsp -------------------------------------------------------------------------------- /Demos/Neo4J/PoC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/Neo4J/PoC.txt -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/ClientRestlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/ClientRestlet.class -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/ClientRestlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/ClientRestlet.java -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/Customer.class -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/Customer.java -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/CustomerRessource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/CustomerRessource.class -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/CustomerRessource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/CustomerRessource.java -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/README -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/ServerRestlets.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/ServerRestlets.class -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/ServerRestlets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/ServerRestlets.java -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/customer-rce.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/customer-rce.xml -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/customer-xxe.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/customer-xxe.xml -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/customer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/customer.xml -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/lib/groovy-all-1.8.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/lib/groovy-all-1.8.9.jar -------------------------------------------------------------------------------- /Demos/RestletXMLDecoder/lib/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/RestletXMLDecoder/lib/org.restlet.jar -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/compiler.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/description.html -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/encodings.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/libraries/org_restlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/libraries/org_restlet.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/misc.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/modules.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/vcs.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/.idea/workspace.xml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/SimpleJavaTests.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/SimpleJavaTests.iml -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/_test.txt -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/_test_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/_test_2.txt -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/nc.exe -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/org.restlet.ext.jaxb.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/org.restlet.ext.jaxb.jar -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/org.restlet.jar -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/AlvaroPoc/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/AlvaroPoc/Customer.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/AlvaroPoc/CustomerRessource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/AlvaroPoc/CustomerRessource.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/AlvaroPoc/ServerRestlets.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/AlvaroPoc/ServerRestlets.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/ClientRestlet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/ClientRestlet.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/Customer.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/Main.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/XmlDecodeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/XmlDecodeTest.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/XmlEncodeTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/XmlEncodeTest.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/chapter1/HelloServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/chapter1/HelloServer.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/chapter1/HelloServerResource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/chapter1/HelloServerResource.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/out/production/SimpleJavaTests/com/company/RuntimeUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/out/production/SimpleJavaTests/com/company/RuntimeUtil.class -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/AlvaroPoc/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/AlvaroPoc/Customer.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/AlvaroPoc/CustomerRessource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/AlvaroPoc/CustomerRessource.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/AlvaroPoc/ServerRestlets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/AlvaroPoc/ServerRestlets.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/ClientRestlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/ClientRestlet.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/Customer.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/Main.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/XmlDecodeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/XmlDecodeTest.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/XmlEncodeTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/XmlEncodeTest.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/chapter1/HelloServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/chapter1/HelloServer.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/src/chapter1/HelloServerResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SimpleJavaTests/src/chapter1/HelloServerResource.java -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/SimpleJavaTests/test.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/artifacts/SpringMvcTest_war.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/artifacts/SpringMvcTest_war.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/artifacts/SpringMvcTest_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/artifacts/SpringMvcTest_war_exploded.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/compiler.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/description.html -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/encodings.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/libraries/Maven__commons_logging_commons_logging_1_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/libraries/Maven__commons_logging_commons_logging_1_1_1.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/libraries/Maven__javax_servlet_jsp_jsp_api_2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/libraries/Maven__javax_servlet_jsp_jsp_api_2_1.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/libraries/Maven__javax_servlet_servlet_api_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/libraries/Maven__javax_servlet_servlet_api_2_5.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/libraries/Maven__junit_junit_4_8_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/libraries/Maven__junit_junit_4_8_2.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/libraries/Maven__org_springframework_spring_aop_3_2_0_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/libraries/Maven__org_springframework_spring_aop_3_2_0_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/libraries/Maven__org_springframework_spring_web_3_2_0_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/libraries/Maven__org_springframework_spring_web_3_2_0_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/misc.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/modules.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/project-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/project-template.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/runConfigurations/AppTests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/runConfigurations/AppTests.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/vcs.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/.idea/workspace.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/SpringMvcTest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/SpringMvcTest.iml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/pom.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/src/main/java/com/springapp/mvc/HelloController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/src/main/java/com/springapp/mvc/HelloController.java -------------------------------------------------------------------------------- /Demos/SpringMvcTest/src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/src/main/webapp/WEB-INF/pages/hello.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/src/main/webapp/WEB-INF/pages/hello.jsp -------------------------------------------------------------------------------- /Demos/SpringMvcTest/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/src/test/java/com/springapp/mvc/AppTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/src/test/java/com/springapp/mvc/AppTests.java -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest.war -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/servlet-api-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/servlet-api-2.5.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-aop-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-aop-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-beans-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-beans-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-context-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-context-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-core-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-core-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-expression-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-expression-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-web-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-web-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-webmvc-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/lib/spring-webmvc-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/mvc-dispatcher-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/mvc-dispatcher-servlet.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/pages/hello.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/pages/hello.jsp -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/SpringMvcTest/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/classes/com/springapp/mvc/HelloController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/classes/com/springapp/mvc/HelloController.class -------------------------------------------------------------------------------- /Demos/SpringMvcTest/target/test-classes/com/springapp/mvc/AppTests.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringMvcTest/target/test-classes/com/springapp/mvc/AppTests.class -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/ant.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/ant.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/artifacts/SpringServer_war.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/artifacts/SpringServer_war.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/artifacts/SpringServer_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/artifacts/SpringServer_war_exploded.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/compiler.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/description.html -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/encodings.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__antlr_antlr_2_7_6.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__antlr_antlr_2_7_6.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__aopalliance_aopalliance_1_0.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__asm_asm_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__asm_asm_3_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__cglib_cglib_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__cglib_cglib_2_2.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__com_thoughtworks_xstream_xstream_1_4_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__com_thoughtworks_xstream_xstream_1_4_4.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__commons_collections_commons_collections_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__commons_collections_commons_collections_3_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__commons_logging_commons_logging_1_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__commons_logging_commons_logging_1_1_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__dom4j_dom4j_1_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__dom4j_dom4j_1_6_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__javassist_javassist_3_12_0_GA.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__javassist_javassist_3_12_0_GA.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__javax_servlet_jsp_jsp_api_2_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__javax_servlet_jsp_jsp_api_2_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__javax_servlet_servlet_api_2_5.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__javax_servlet_servlet_api_2_5.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__javax_transaction_jta_1_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__javax_transaction_jta_1_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__jstl_jstl_1_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__jstl_jstl_1_2.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__junit_junit_4_8_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__junit_junit_4_8_2.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_aspectj_aspectjrt_1_6_12.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_aspectj_aspectjrt_1_6_12.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_hibernate_hibernate_core_3_6_10_Final.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_hibernate_hibernate_core_3_6_10_Final.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_hsqldb_hsqldb_2_2_9.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_hsqldb_hsqldb_2_2_9.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_json_json_20080701.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_json_json_20080701.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_slf4j_jcl_over_slf4j_1_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_slf4j_jcl_over_slf4j_1_6_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_slf4j_slf4j_api_1_6_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_slf4j_slf4j_api_1_6_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_aop_3_2_0_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_aop_3_2_0_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_core_3_2_0_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_core_3_2_0_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_jdbc_3_1_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_jdbc_3_1_2_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_orm_3_1_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_orm_3_1_2_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_test_3_2_0_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_test_3_2_0_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_tx_3_1_2_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_tx_3_1_2_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_web_3_2_0_RELEASE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_spring_web_3_2_0_RELEASE.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_ws_spring_oxm_1_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_ws_spring_oxm_1_0_2.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__org_springframework_ws_spring_xml_1_0_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__org_springframework_ws_spring_xml_1_0_2.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__stax_stax_api_1_0_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__stax_stax_api_1_0_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__xmlpull_xmlpull_1_1_3_1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__xmlpull_xmlpull_1_1_3_1.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/Maven__xpp3_xpp3_min_1_1_4c.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/Maven__xpp3_xpp3_min_1_1_4c.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/libraries/spring_3_2_2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/libraries/spring_3_2_2.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/misc.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/modules.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/project-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/project-template.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/vcs.xml -------------------------------------------------------------------------------- /Demos/SpringServer/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/.idea/workspace.xml -------------------------------------------------------------------------------- /Demos/SpringServer/Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/Instructions.md -------------------------------------------------------------------------------- /Demos/SpringServer/SpringServer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/SpringServer.iml -------------------------------------------------------------------------------- /Demos/SpringServer/contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/contact.xml -------------------------------------------------------------------------------- /Demos/SpringServer/exploit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/exploit.xml -------------------------------------------------------------------------------- /Demos/SpringServer/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/pom.xml -------------------------------------------------------------------------------- /Demos/SpringServer/src/main/java/org/pwntester/springserver/Contact.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/src/main/java/org/pwntester/springserver/Contact.java -------------------------------------------------------------------------------- /Demos/SpringServer/src/main/java/org/pwntester/springserver/ContactController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/src/main/java/org/pwntester/springserver/ContactController.java -------------------------------------------------------------------------------- /Demos/SpringServer/src/main/java/org/pwntester/springserver/ContactImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/src/main/java/org/pwntester/springserver/ContactImpl.java -------------------------------------------------------------------------------- /Demos/SpringServer/src/main/java/org/pwntester/springserver/ContactRepository.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/src/main/java/org/pwntester/springserver/ContactRepository.java -------------------------------------------------------------------------------- /Demos/SpringServer/src/main/java/org/pwntester/springserver/ContactTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/src/main/java/org/pwntester/springserver/ContactTest.java -------------------------------------------------------------------------------- /Demos/SpringServer/src/main/resources/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/src/main/resources/META-INF/persistence.xml -------------------------------------------------------------------------------- /Demos/SpringServer/src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/src/main/webapp/WEB-INF/mvc-dispatcher-servlet.xml -------------------------------------------------------------------------------- /Demos/SpringServer/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer.war -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/classes/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/classes/META-INF/persistence.xml -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/antlr-2.7.6.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/antlr-2.7.6.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/aopalliance-1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/aopalliance-1.0.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/asm-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/asm-3.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/aspectjrt-1.6.12.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/aspectjrt-1.6.12.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/cglib-2.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/cglib-2.2.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/commons-collections-3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/commons-collections-3.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/commons-logging-1.1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/commons-logging-1.1.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/dom4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/dom4j-1.6.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/hibernate-core-3.6.10.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/hibernate-core-3.6.10.Final.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/hibernate-jpa-2.0-api-1.0.0.Final.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/hibernate-jpa-2.0-api-1.0.0.Final.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/hsqldb-2.2.9.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/hsqldb-2.2.9.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/javassist-3.12.0.GA.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/javassist-3.12.0.GA.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/jcl-over-slf4j-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/jcl-over-slf4j-1.6.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/json-20080701.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/json-20080701.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/jstl-1.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/jstl-1.2.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/jta-1.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/jta-1.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/servlet-api-2.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/servlet-api-2.5.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/slf4j-api-1.6.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/slf4j-api-1.6.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-aop-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-aop-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-beans-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-beans-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-context-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-context-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-core-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-core-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-data-jpa-1.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-data-jpa-1.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-expression-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-expression-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-jdbc-3.1.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-jdbc-3.1.2.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-orm-3.1.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-orm-3.1.2.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-oxm-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-oxm-1.0.2.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-tx-3.1.2.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-tx-3.1.2.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-web-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-web-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-webmvc-3.2.0.RELEASE.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-webmvc-3.2.0.RELEASE.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-xml-1.0.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/spring-xml-1.0.2.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/stax-api-1.0.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/stax-api-1.0.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/xmlpull-1.1.3.1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/xmlpull-1.1.3.1.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/xpp3_min-1.1.4c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/xpp3_min-1.1.4c.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/lib/xstream-1.4.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/lib/xstream-1.4.4.jar -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/mvc-dispatcher-servlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/mvc-dispatcher-servlet.xml -------------------------------------------------------------------------------- /Demos/SpringServer/target/SpringServer/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/SpringServer/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/SpringServer/target/classes/META-INF/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/classes/META-INF/persistence.xml -------------------------------------------------------------------------------- /Demos/SpringServer/target/classes/org/pwntester/springserver/Contact.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/classes/org/pwntester/springserver/Contact.class -------------------------------------------------------------------------------- /Demos/SpringServer/target/classes/org/pwntester/springserver/ContactController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/classes/org/pwntester/springserver/ContactController.class -------------------------------------------------------------------------------- /Demos/SpringServer/target/classes/org/pwntester/springserver/ContactImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/classes/org/pwntester/springserver/ContactImpl.class -------------------------------------------------------------------------------- /Demos/SpringServer/target/classes/org/pwntester/springserver/ContactRepository.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/classes/org/pwntester/springserver/ContactRepository.class -------------------------------------------------------------------------------- /Demos/SpringServer/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/SpringServer/target/maven-archiver/pom.properties -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/artifacts/web_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/artifacts/web_war_exploded.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/compiler.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/encodings.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/libraries/com_noelios_restlet_ext_servlet_2_4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/libraries/com_noelios_restlet_ext_servlet_2_4.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/misc.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/modules.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/vcs.xml -------------------------------------------------------------------------------- /Demos/TestServlet/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/.idea/workspace.xml -------------------------------------------------------------------------------- /Demos/TestServlet/TestServlet.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/TestServlet.iml -------------------------------------------------------------------------------- /Demos/TestServlet/lib/org.restlet.example.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/lib/org.restlet.example.jar -------------------------------------------------------------------------------- /Demos/TestServlet/lib/org.restlet.ext.wadl.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/lib/org.restlet.ext.wadl.jar -------------------------------------------------------------------------------- /Demos/TestServlet/lib/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/lib/org.restlet.jar -------------------------------------------------------------------------------- /Demos/TestServlet/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/org.restlet.jar -------------------------------------------------------------------------------- /Demos/TestServlet/out/artifacts/web_war_exploded/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/classes/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/classes/WebContent/WEB-INF/index.jsp: -------------------------------------------------------------------------------- 1 | This is a jsp page -------------------------------------------------------------------------------- /Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/index.jsp: -------------------------------------------------------------------------------- 1 | This is a jsp page -------------------------------------------------------------------------------- /Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/lib/com.noelios.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/lib/com.noelios.restlet.jar -------------------------------------------------------------------------------- /Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/lib/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/lib/org.restlet.jar -------------------------------------------------------------------------------- /Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/out/artifacts/web_war_exploded/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/TestServlet/out/production/TestServlet/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Demos/TestServlet/out/production/TestServlet/WebContent/WEB-INF/index.jsp: -------------------------------------------------------------------------------- 1 | This is a jsp page -------------------------------------------------------------------------------- /Demos/TestServlet/out/production/TestServlet/WebContent/WEB-INF/lib/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/out/production/TestServlet/WebContent/WEB-INF/lib/org.restlet.jar -------------------------------------------------------------------------------- /Demos/TestServlet/out/production/TestServlet/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/out/production/TestServlet/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/TestServlet/out/production/TestServlet/com/testServlet/Customer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/out/production/TestServlet/com/testServlet/Customer.class -------------------------------------------------------------------------------- /Demos/TestServlet/out/production/TestServlet/com/testServlet/CustomerRessource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/out/production/TestServlet/com/testServlet/CustomerRessource.class -------------------------------------------------------------------------------- /Demos/TestServlet/out/production/TestServlet/com/testServlet/ServerRestlets.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/out/production/TestServlet/com/testServlet/ServerRestlets.class -------------------------------------------------------------------------------- /Demos/TestServlet/src/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Demos/TestServlet/src/WebContent/WEB-INF/index.jsp: -------------------------------------------------------------------------------- 1 | This is a jsp page -------------------------------------------------------------------------------- /Demos/TestServlet/src/WebContent/WEB-INF/lib/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/src/WebContent/WEB-INF/lib/org.restlet.jar -------------------------------------------------------------------------------- /Demos/TestServlet/src/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/src/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/TestServlet/src/com/testServlet/Customer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/src/com/testServlet/Customer.java -------------------------------------------------------------------------------- /Demos/TestServlet/src/com/testServlet/CustomerRessource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/src/com/testServlet/CustomerRessource.java -------------------------------------------------------------------------------- /Demos/TestServlet/src/com/testServlet/ServerRestlets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/src/com/testServlet/ServerRestlets.java -------------------------------------------------------------------------------- /Demos/TestServlet/src/com/testServlet/TestServletApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/TestServlet/src/com/testServlet/TestServletApplication.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/artifacts/XMLDecoderVuln_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/artifacts/XMLDecoderVuln_jar.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/compiler.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/description.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/description.html -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/encodings.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/misc.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/modules.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/project-template.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/project-template.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/vcs.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/.idea/workspace.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/Test.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/Test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/Test2.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/TestGroovyShell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/TestGroovyShell.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/TestObjectMethodCall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/TestObjectMethodCall.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/TestOrig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/TestOrig.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/TestStaticMethodCall.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/TestStaticMethodCall.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/XMLDecoderVuln.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/XMLDecoderVuln.iml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/XMLDecoderVuln.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/XMLDecoderVuln.jar -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/XMLDecoderVuln.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/XMLDecoderVuln.zip -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/com/company/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/com/company/Main.class -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/com/company/RuntimeUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/com/company/RuntimeUtil.class -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/com/company/Test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/artifacts/XMLDecoderVuln.jar/com/company/Test2.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/com/company/MainOriginal.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/com/company/MainOriginal.class -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/com/company/PocUsingBytes.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/com/company/PocUsingBytes.class -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/com/company/RuntimeUtil.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/com/company/RuntimeUtil.class -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/com/company/Test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/com/company/Test2.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/defcon/poc/rest/RestfulTeams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/defcon/poc/rest/RestfulTeams.class -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/defcon/poc/rest/Team.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/out/production/XMLDecoderVuln/defcon/poc/rest/Team.class -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/META-INF/MANIFEST.MF -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/com/company/MainOriginal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/com/company/MainOriginal.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/com/company/PocUsingBytes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/com/company/PocUsingBytes.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/com/company/PocUsingBytes_ExecuteFromXml.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/com/company/PocUsingBytes_ExecuteFromXml.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/com/company/PocUsingBytes_Method_Invoke_Current_Class.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/com/company/PocUsingBytes_Method_Invoke_Current_Class.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/com/company/PocUsingBytes_Open_Notepad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/com/company/PocUsingBytes_Open_Notepad.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/com/company/PocUsingBytes_Simple_Version.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/com/company/PocUsingBytes_Simple_Version.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/com/company/RuntimeUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/com/company/RuntimeUtil.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/com/company/Test2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/com/company/Test2.xml -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/defcon/poc/rest/RestfulTeams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/defcon/poc/rest/RestfulTeams.java -------------------------------------------------------------------------------- /Demos/XMLDecoderVuln/src/defcon/poc/rest/Team.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XMLDecoderVuln/src/defcon/poc/rest/Team.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/artifacts/web_war_exploded.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/artifacts/web_war_exploded.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/compiler.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/description.html: -------------------------------------------------------------------------------- 1 | Minimal Java Enterprise Web project -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/encodings.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/misc.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/modules.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/vcs.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/.idea/workspace.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/XmlDecode_ViaRest.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/XmlDecode_ViaRest.iml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/artifacts/web_war_exploded/WEB-INF/classes/TeamClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/artifacts/web_war_exploded/WEB-INF/classes/TeamClient.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/artifacts/web_war_exploded/WEB-INF/classes/teamsC/Team.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/artifacts/web_war_exploded/WEB-INF/classes/teamsC/Team.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/artifacts/web_war_exploded/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/artifacts/web_war_exploded/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/artifacts/web_war_exploded/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/artifacts/web_war_exploded/index.jsp -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/TeamClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/TeamClient.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/soap/DemoSoap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/soap/DemoSoap.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/Player.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/Player.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/Team.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/Team.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/Teams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/Teams.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/TeamsPublisher.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/TeamsPublisher.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/TeamsUtility.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/TeamsUtility.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/jaxws/GetTeam.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/jaxws/GetTeam.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/jaxws/GetTeams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/team/jaxws/GetTeams.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/MyThreadPool.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/MyThreadPool.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/TimeClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/TimeClient.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/TimePublisherMT.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/TimePublisherMT.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/TimeServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/TimeServer.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/TimeServerImpl.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/TimeServerImpl.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/tsClient.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/tsClient.pl -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/tsClient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/tsClient.rb -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/tsClient2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/ch01/ts/tsClient2.pl -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/client/TimeClientWSDL.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/client/TimeClientWSDL.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/client/TimeServer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/client/TimeServer.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/defcon/poc/rest/Team.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/defcon/poc/rest/Team.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/defcon/poc/rest/WSTest.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/defcon/poc/rest/WSTest.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/GetTeam.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/GetTeam.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/GetTeamResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/GetTeamResponse.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/GetTeams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/GetTeams.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/GetTeamsResponse.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/GetTeamsResponse.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/ObjectFactory.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/ObjectFactory.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/Player.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/Player.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/Team.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/Team.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/Teams.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/Teams.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/TeamsService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/TeamsService.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/package-info.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/out/production/XmlDecode_ViaRest/teamsC/package-info.class -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/TeamClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/TeamClient.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/soap/DemoSoap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/soap/DemoSoap.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/Player.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/Team.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/Team.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/Teams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/Teams.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/TeamsPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/TeamsPublisher.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/TeamsUtility.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/TeamsUtility.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/jaxws/GetTeam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/jaxws/GetTeam.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/jaxws/GetTeamResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/jaxws/GetTeamResponse.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/jaxws/GetTeams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/jaxws/GetTeams.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/team/jaxws/GetTeamsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/team/jaxws/GetTeamsResponse.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/MyThreadPool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/MyThreadPool.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/TimeClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/TimeClient.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/TimePublisherMT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/TimePublisherMT.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/TimeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/TimeServer.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/TimeServerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/TimeServerImpl.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/TimeServerPublisher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/TimeServerPublisher.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/tsClient.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/tsClient.pl -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/tsClient.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/tsClient.rb -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/ch01/ts/tsClient2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/ch01/ts/tsClient2.pl -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/client/TimeClientWSDL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/client/TimeClientWSDL.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/client/TimeServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/client/TimeServer.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/client/TimeServerImplService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/client/TimeServerImplService.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/defcon/poc/rest/RestfulTeams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/defcon/poc/rest/RestfulTeams.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/defcon/poc/rest/Team.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/defcon/poc/rest/Team.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/defcon/poc/rest/WSTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/defcon/poc/rest/WSTest.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/GetTeam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/GetTeam.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/GetTeamResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/GetTeamResponse.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/GetTeams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/GetTeams.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/GetTeamsResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/GetTeamsResponse.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/ObjectFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/ObjectFactory.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/Player.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/Team.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/Team.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/Teams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/Teams.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/TeamsService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/TeamsService.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/src/teamsC/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/src/teamsC/package-info.java -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/web/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/web/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/XmlDecode_ViaRest/web/index.jsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/XmlDecode_ViaRest/web/index.jsp -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/PoC -UI to exploit Spring XStream.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/PoC -UI to exploit Spring XStream.exe -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/PoC -UI to exploit Spring XStream.h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/PoC -UI to exploit Spring XStream.h2 -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/1 - OK - contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/1 - OK - contact.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/2a - Using Dinamic proxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/2a - Using Dinamic proxy.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/2b - Using Dinamic proxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/2b - Using Dinamic proxy.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/2c - Using Dinamic proxy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/2c - Using Dinamic proxy.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/3 - Exploit - Calc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/3 - Exploit - Calc.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/4a - Exploit - Notepad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/4a - Exploit - Notepad.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/4b - Exploit - notepad via cmd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/4b - Exploit - notepad via cmd.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/Info Disclosure - Bad Process.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/Info Disclosure - Bad Process.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/Spring-XStream/exploits/Info Disclosure - Bad Request.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/Spring-XStream/exploits/Info Disclosure - Bad Request.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/PoC of RCE on RestletXMLDecoder demo.h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/PoC of RCE on RestletXMLDecoder demo.h2 -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/PoC of Restlet HelloServer demo.h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/PoC of Restlet HelloServer demo.h2 -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/Tool - Inject Html via XMLEncode.h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/Tool - Inject Html via XMLEncode.h2 -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/Util - UI to exploit Restlet HelloServer demo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/Util - UI to exploit Restlet HelloServer demo.exe -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/Util - UI to exploit Restlet HelloServer demo.h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/Util - UI to exploit Restlet HelloServer demo.h2 -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/1 - create item (Simple).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/1 - create item (Simple).xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/2 - create item (using properties).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/2 - create item (using properties).xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/3 - create item (from var).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/3 - create item (from var).xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/4 - create item (and more).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/4 - create item (and more).xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/5 - create item (and calc).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/5 - create item (and calc).xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/6 - Process Builder - Start a Calc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/6 - Process Builder - Start a Calc.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/7a - Creating a File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/7a - Creating a File.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/7b - Creating a Class File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/7b - Creating a Class File.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/8a - HttpResponse - return variable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/8a - HttpResponse - return variable.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/8b - HttpResponse - return variables.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/8b - HttpResponse - return variables.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/8d - Exploit - Create XSS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/8d - Exploit - Create XSS.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/9a - download NetCat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/9a - download NetCat.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/9b - Start NetCat reverse shell.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/9b - Start NetCat reverse shell.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/9 - Script - download NetCat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/9 - Script - download NetCat.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/Exploit - Change HttpResponse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/Exploit - Change HttpResponse.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/HttpResponse - RCE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/HttpResponse - RCE.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/HttpResponse - execute process.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/HttpResponse - execute process.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/Script - Create file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/Script - Create file.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/Send a HttpURLConnection.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/Send a HttpURLConnection.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/a String.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/a String.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/tests.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - Restlet/exploits/Other/tests.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - Restlet/localhost-8111-firstResource-items.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://localhost:8111/firstResource/items 3 | -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/A String - Mode 2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/A String - Mode 2.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/A String Array.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/A String Array.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/A String.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/A String.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/A StringBuilder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/A StringBuilder.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Open Notepad (with win.ini).xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Open Notepad (with win.ini).xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Open calc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Open calc.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/PoC- Creating a File.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/PoC- Creating a File.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/PoC- Creating a class file.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/PoC- Creating a class file.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Simple Int.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Simple Int.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Simple String.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Simple String.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Works - Bad formated xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Exploits/Works - Bad formated xml.xml -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/JSPs/pwn.jsp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/JSPs/pwn.jsp.txt -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Util - XmlDecode in memory using IKVM.h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Util - XmlDecode in memory using IKVM.h2 -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Util - XmlDecode in memory using Jni4Net.h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Util - XmlDecode in memory using Jni4Net.h2 -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/Util - XmlEncode object (using IKVM).h2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/Util - XmlEncode object (using IKVM).h2 -------------------------------------------------------------------------------- /Demos/_O2_Scripts/XmlEncoder - in Desktop/javabeans.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_O2_Scripts/XmlEncoder - in Desktop/javabeans.dtd -------------------------------------------------------------------------------- /Demos/_TestServlet/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /Demos/_TestServlet/WebContent/WEB-INF/lib/com.noelios.restlet.ext.servlet_2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_TestServlet/WebContent/WEB-INF/lib/com.noelios.restlet.ext.servlet_2.4.jar -------------------------------------------------------------------------------- /Demos/_TestServlet/WebContent/WEB-INF/lib/com.noelios.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_TestServlet/WebContent/WEB-INF/lib/com.noelios.restlet.jar -------------------------------------------------------------------------------- /Demos/_TestServlet/WebContent/WEB-INF/lib/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_TestServlet/WebContent/WEB-INF/lib/org.restlet.jar -------------------------------------------------------------------------------- /Demos/_TestServlet/WebContent/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_TestServlet/WebContent/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/_TestServlet/src/com/testServlet/TestServletApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/_TestServlet/src/com/testServlet/TestServletApplication.java -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/.hg_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/.hg_archival.txt -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | *.sublime-workspace 3 | target/* -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/DemoWebAPI.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/DemoWebAPI.iml -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/DemoWebAPI.ipr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/DemoWebAPI.ipr -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/DemoWebAPI.iws: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/DemoWebAPI.iws -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/LICENSE -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/README.md -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/pom.xml -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/projectFilesBackup/DemoWebAPI.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/projectFilesBackup/DemoWebAPI.iml -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/projectFilesBackup/DemoWebAPI.ipr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/projectFilesBackup/DemoWebAPI.ipr -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/restlet-2.1-demo.sublime-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/restlet-2.1-demo.sublime-project -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/java/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/java/README -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/resources/DemoWebAPI.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/resources/debug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/resources/debug/README -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/resources/production/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/resources/production/README -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/main/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/test/java/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/test/resources/DemoWebAPI.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/test/webapp/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/src/test/webapp/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/${war.name}.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/${war.name}.war -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/DemoWebAPI-0.1.war: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/DemoWebAPI-0.1.war -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/DemoWebAPI-0.1/WEB-INF/DemoWebAPI.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/DemoWebAPI-0.1/WEB-INF/classes/DemoWebAPI.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/DemoWebAPI-0.1/WEB-INF/web.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/DemoWebAPI-0.1/WEB-INF/web.xml -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/classes/DemoWebAPI.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/classes/debug/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/classes/debug/README -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/classes/production/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/classes/production/README -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/maven-archiver/pom.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/maven-archiver/pom.properties -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/css/maven-base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/css/maven-base.css -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/css/maven-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/css/maven-theme.css -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/css/print.css -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/css/site.css: -------------------------------------------------------------------------------- 1 | /* You can override this file with your own styles */ -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/dependencies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/dependencies.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/dependency-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/dependency-info.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/distribution-management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/distribution-management.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/close.gif -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/collapsed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/collapsed.gif -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/expanded.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/expanded.gif -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/external.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/external.png -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/icon_error_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/icon_error_sml.gif -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/icon_info_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/icon_info_sml.gif -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/icon_success_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/icon_success_sml.gif -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/icon_warning_sml.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/icon_warning_sml.gif -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/logos/maven-feather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/logos/maven-feather.png -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/newwindow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/images/newwindow.png -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/index.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/integration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/integration.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/issue-tracking.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/issue-tracking.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/license.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/mail-lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/mail-lists.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/plugin-management.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/plugin-management.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/plugins.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/plugins.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/project-info.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/project-info.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/project-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/project-summary.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/source-repository.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/source-repository.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/team-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/site/team-list.html -------------------------------------------------------------------------------- /Demos/jsumners-restlet-2.1-demo-a7ba12d5c91d/target/test-classes/DemoWebAPI.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Demos/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Demos/nc.exe -------------------------------------------------------------------------------- /Live-Demos/Neo4j/Fiddler.exe.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/Fiddler.exe.lnk -------------------------------------------------------------------------------- /Live-Demos/Neo4j/Neo4j - 1.9.2.url: -------------------------------------------------------------------------------- 1 | [InternetShortcut] 2 | URL=http://localhost:7474/webadmin/ 3 | -------------------------------------------------------------------------------- /Live-Demos/Neo4j/Neo4j.bat.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/Neo4j.bat.lnk -------------------------------------------------------------------------------- /Live-Demos/Neo4j/PoC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/PoC.txt -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XMLDecoder (with nc).url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XMLDecoder (with nc).url -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server.htm -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/CComment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/CComment.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/admin-bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/admin-bar.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/alfie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/alfie.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar(1).php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar(1).php -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar(2).php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar(2).php -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar(3).php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar(3).php -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar.php -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar92.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/avatar92.jpg -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/beacon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/beacon.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/checkx2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/checkx2.png -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/client.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/comments.png -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/config.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/disqus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/disqus.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/embed.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/event(1).js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/event(1).js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/event.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/ga.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/ga.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/gce-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/gce-style.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/important.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/important.png -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/jquery.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/lib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/lib.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/load.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/lounge.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/lounge.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/lounge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/lounge.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/main.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/neo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/neo.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/pdf.png -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/script.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/shBrushSql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/shBrushSql.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/shBrushXml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/shBrushXml.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/shCore.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/shCore.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/shCore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/shCore.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/sidebar.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/slider.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/style(1).css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/style(1).css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/style.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/tabs.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/28.1. Securing access to the Neo4j Server_files/version.js: -------------------------------------------------------------------------------- 1 | var neo4jVersion="1.9.2" 2 | 3 | 4 | -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/resources/tab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/resources/tab.gif -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/resources/titlebar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/resources/titlebar.gif -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/s_code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/s_code.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/s_code_download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/s_code_download.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/XMLDecoder (Java Platform SE 7 )_files/stylesheet.css -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/XMLDecoder - with calc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/XMLDecoder - with calc.htm -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/XMLDecoder - with nc.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/XMLDecoder - with nc.htm -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/XMLDecoder.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/XMLDecoder.htm -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/jquery-1.6.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/jquery-1.6.4.min.js -------------------------------------------------------------------------------- /Live-Demos/Neo4j/XSRF_page/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Neo4j/XSRF_page/nc.exe -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/.name: -------------------------------------------------------------------------------- 1 | Restlet-App -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/compiler.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/encodings.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/libraries/org_restlet.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/libraries/org_restlet.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/libraries/org_restlet_ext_xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/libraries/org_restlet_ext_xml.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/misc.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/modules.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/vcs.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/.idea/workspace.xml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/Restlet-App.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/Restlet-App.iml -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/XmlDecoder - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/XmlDecoder - Shortcut.lnk -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/lib/org.restlet.ext.xml.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/lib/org.restlet.ext.xml.jar -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/lib/org.restlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/lib/org.restlet.jar -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/nc.exe -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/BaseResource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/BaseResource.class -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/Item.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/Item.class -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/ItemResource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/ItemResource.class -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/ItemsResource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/ItemsResource.class -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/ItemsXmlResource.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/out/production/Restlet-App/firstResource/ItemsXmlResource.class -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/src/firstResource/BaseResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/src/firstResource/BaseResource.java -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/src/firstResource/FirstResourceApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/src/firstResource/FirstResourceApplication.java -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/src/firstResource/FirstResourceClientMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/src/firstResource/FirstResourceClientMain.java -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/src/firstResource/FirstResourceServerMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/src/firstResource/FirstResourceServerMain.java -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/src/firstResource/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/src/firstResource/Item.java -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/src/firstResource/ItemResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/src/firstResource/ItemResource.java -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/src/firstResource/ItemsResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/src/firstResource/ItemsResource.java -------------------------------------------------------------------------------- /Live-Demos/Restlet-App/src/firstResource/ItemsXmlResource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/Restlet-App/src/firstResource/ItemsXmlResource.java -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/Fiddler.exe.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/Fiddler.exe.lnk -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/IntelliJ IDEA 12.1.4.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/IntelliJ IDEA 12.1.4.lnk -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/NetCat Demo/Fiddler.exe.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/NetCat Demo/Fiddler.exe.lnk -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/NetCat Demo/Hello.txt: -------------------------------------------------------------------------------- 1 | Hello there, you want /nc.exe -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/NetCat Demo/HostLocalWebsite.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/NetCat Demo/HostLocalWebsite.lnk -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/NetCat Demo/fiddler request.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/NetCat Demo/fiddler request.txt -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/NetCat Demo/nc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/NetCat Demo/nc.exe -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/NetCat Demo/start nc.bat: -------------------------------------------------------------------------------- 1 | nc -L -p 1234 -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/O2 Platform - Main O2 Gui v5.3.exe.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/O2 Platform - Main O2 Gui v5.3.exe.lnk -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/Restlet-App - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/Restlet-App - Shortcut.lnk -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/XmlEncoder - Restlet.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/XmlEncoder - Restlet.lnk -------------------------------------------------------------------------------- /Live-Demos/XmlDecoder/XmlEncoder - in Desktop.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Live-Demos/XmlDecoder/XmlEncoder - in Desktop.lnk -------------------------------------------------------------------------------- /Notes/Abe on .NET research targets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Notes/Abe on .NET research targets.txt -------------------------------------------------------------------------------- /Presentation/RESTing On Your Laurels Will Get You Powned3.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/o2platform/DefCon_RESTing/HEAD/Presentation/RESTing On Your Laurels Will Get You Powned3.pptx --------------------------------------------------------------------------------