This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE IF NOT EXISTS data | |
( | |
pkey bigserial PRIMARY KEY, | |
value text NOT NULL, | |
count integer NOT NULL, | |
first_blood text NOT NULL | |
); | |
CREATE UNIQUE INDEX IF NOT EXISTS value_idx ON data USING btree(value); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0-hubs-2-iosdm.v.aaplimg.com | |
0-hubs-3-iosdm.v.aaplimg.com | |
0-hubs-iosdm.v.aaplimg.com | |
1-courier.push.apple.com | |
1-hubs-2-iosdm.v.aaplimg.com | |
1-hubs-3-iosdm.v.aaplimg.com | |
1-hubs-iosdm.v.aaplimg.com | |
10-courier.push.apple.com | |
11-courier.push.apple.com | |
12-courier.push.apple.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
retailedge.intel.com | |
itcenterconnect.intel.com | |
sipfed.intel.com | |
intelav.intel.com | |
intelewc.intel.com | |
sip.intel.com | |
click.intel.com | |
ipip.intel.com | |
boss.filegridnetwork.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"bufio" | |
"fmt" | |
"io" | |
"log" | |
"os/exec" | |
"sync" | |
"time" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
metadata: | |
language: v2-beta | |
name: "no content type check" | |
description: "Checks is a response has a text/html content type and no charset set" | |
tags: "passive" | |
given response then | |
if {to_lower(latest.response.headers)} matches "content-type: text/html\r\n" then | |
if not ({latest.response.body} matches "<meta charset=\".+?\">") then |
OlderNewer