Skip to content

Instantly share code, notes, and snippets.

View ozzi-'s full-sized avatar
🎯
On point

ozzi-

🎯
On point
View GitHub Profile
@ozzi-
ozzi- / readme.md
Last active February 12, 2019 17:14
Zimbra - Persistent XSS - CWE-79 - CVE-2018-6882 - Zimbra Bug ID #108786
@ozzi-
ozzi- / gist:554a1bf12b73d35496efe0000ec243e5
Created January 15, 2018 14:10
crt.sh get subdomains
/**
* @param target url such as test.ch
* @return set of subdomains that have at one point a https cert
*/
public static HashSet<String> runCRTSH(String target){
HashSet<String> subdomainSet = new HashSet<String>();
try {
String html = HTTP.get("https://crt.sh/?q=%25."+target);
Document doc = Jsoup.parse(html);
Elements elements = doc.select("td");