Skip to content

Instantly share code, notes, and snippets.

@kitplummer
Last active December 28, 2015 09:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kitplummer/7478283 to your computer and use it in GitHub Desktop.
Save kitplummer/7478283 to your computer and use it in GitHub Desktop.
import groovyx.net.http.HTTPBuilder
import static groovyx.net.http.Method.GET
import static groovyx.net.http.ContentType.TEXT
def http = new HTTPBuilder( 'https://scapsync.com' )
def json = ""
http.request(GET,TEXT) { req ->
uri.path = '/search' // overrides any path in the default URL
uri.query = [ rows_page:'20',q:'postgresql-9.1',solrDocumentType:'cve' ]
headers.'Accept' = 'application/json'
response.success = { resp, reader ->
assert resp.status == 200
//println "My response handler got response: ${resp.statusLine}"
//println "Response length: ${resp.headers.'Content-Length'}"
json = reader.text // print response reader
}
// called only for a 404 (not found) status code:
response.'404' = { resp ->
println 'Not found'
}
}
print json
def results = new groovy.json.JsonSlurper().parseText( json ).results
results.each() { it ->
println "CVE: " + it.id
}
{
"rows_per_page": 10,
"sort_fields": [
{
"url": "/search?q=postgres%2A&r=-modified_ts",
"selected": false,
"name": "Modification Date (Newest First)",
"value": "-modified_ts"
},
{
"url": "/search?q=postgres%2A&r=modified_ts",
"selected": false,
"name": "Modification Date (Oldest First)",
"value": "modified_ts"
},
{
"url": "/search?q=postgres%2A&r=most_relevant",
"selected": true,
"name": "Most Relevant",
"value": "most_relevant"
}
],
"search_url": "/search",
"start_row": 0,
"total_rows": 2505,
"facets": [
{
"values": [
{
"count": 176,
"url": "/search?q=postgres%2A&solrDocumentType=cpe",
"selected": false,
"name": "Product"
},
{
"count": 95,
"url": "/search?q=postgres%2A&solrDocumentType=cve",
"selected": false,
"name": "Vulnerability"
},
{
"count": 100,
"url": "/search?q=postgres%2A&solrDocumentType=oval_definition",
"selected": false,
"name": "Assessment Definition"
},
{
"count": 2134,
"url": "/search?q=postgres%2A&solrDocumentType=oval_test",
"selected": false,
"name": "Assessment Test"
}
],
"name": "Type"
},
{
"values": [
{
"count": 23,
"url": "/search?q=postgres%2A&platform_multi=CentOS+Linux+3",
"selected": false,
"name": "CentOS Linux 3"
},
{
"count": 26,
"url": "/search?q=postgres%2A&platform_multi=CentOS+Linux+4",
"selected": false,
"name": "CentOS Linux 4"
},
{
"count": 22,
"url": "/search?q=postgres%2A&platform_multi=CentOS+Linux+5",
"selected": false,
"name": "CentOS Linux 5"
},
{
"count": 4,
"url": "/search?q=postgres%2A&platform_multi=Debian+4.0",
"selected": false,
"name": "Debian 4.0"
},
{
"count": 7,
"url": "/search?q=postgres%2A&platform_multi=Debian+5.0",
"selected": false,
"name": "Debian 5.0"
},
{
"count": 5,
"url": "/search?q=postgres%2A&platform_multi=Debian+6.0",
"selected": false,
"name": "Debian 6.0"
},
{
"count": 1,
"url": "/search?q=postgres%2A&platform_multi=Debian+GNU%2FLinux+3.1",
"selected": false,
"name": "Debian GNU/Linux 3.1"
},
{
"count": 5,
"url": "/search?q=postgres%2A&platform_multi=Debian+GNU%2FLinux+4.0",
"selected": false,
"name": "Debian GNU/Linux 4.0"
},
{
"count": 4,
"url": "/search?q=postgres%2A&platform_multi=Debian+GNU%2FLinux+5.0",
"selected": false,
"name": "Debian GNU/Linux 5.0"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Microsoft+Windows+2000",
"selected": false,
"name": "Microsoft Windows 2000"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Microsoft+Windows+7",
"selected": false,
"name": "Microsoft Windows 7"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Microsoft+Windows+Server+2003",
"selected": false,
"name": "Microsoft Windows Server 2003"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Microsoft+Windows+Server+2008",
"selected": false,
"name": "Microsoft Windows Server 2008"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Microsoft+Windows+Vista",
"selected": false,
"name": "Microsoft Windows Vista"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Microsoft+Windows+XP",
"selected": false,
"name": "Microsoft Windows XP"
},
{
"count": 26,
"url": "/search?q=postgres%2A&platform_multi=Oracle+Linux+4",
"selected": false,
"name": "Oracle Linux 4"
},
{
"count": 22,
"url": "/search?q=postgres%2A&platform_multi=Oracle+Linux+5",
"selected": false,
"name": "Oracle Linux 5"
},
{
"count": 34,
"url": "/search?q=postgres%2A&platform_multi=Red+Hat+Enterprise+Linux+3",
"selected": false,
"name": "Red Hat Enterprise Linux 3"
},
{
"count": 37,
"url": "/search?q=postgres%2A&platform_multi=Red+Hat+Enterprise+Linux+4",
"selected": false,
"name": "Red Hat Enterprise Linux 4"
},
{
"count": 39,
"url": "/search?q=postgres%2A&platform_multi=Red+Hat+Enterprise+Linux+5",
"selected": false,
"name": "Red Hat Enterprise Linux 5"
},
{
"count": 7,
"url": "/search?q=postgres%2A&platform_multi=Red+Hat+Enterprise+Linux+6",
"selected": false,
"name": "Red Hat Enterprise Linux 6"
},
{
"count": 1,
"url": "/search?q=postgres%2A&platform_multi=SUSE+Linux+10.0",
"selected": false,
"name": "SUSE Linux 10.0"
},
{
"count": 1,
"url": "/search?q=postgres%2A&platform_multi=SUSE+Linux+10.1",
"selected": false,
"name": "SUSE Linux 10.1"
},
{
"count": 1,
"url": "/search?q=postgres%2A&platform_multi=SUSE+Linux+Enterprise+Desktop+10",
"selected": false,
"name": "SUSE Linux Enterprise Desktop 10"
},
{
"count": 1,
"url": "/search?q=postgres%2A&platform_multi=SUSE+Linux+Enterprise+Server+10",
"selected": false,
"name": "SUSE Linux Enterprise Server 10"
},
{
"count": 1,
"url": "/search?q=postgres%2A&platform_multi=Sun+Solaris+10",
"selected": false,
"name": "Sun Solaris 10"
},
{
"count": 8,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+10.04",
"selected": false,
"name": "Ubuntu 10.04"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+10.10",
"selected": false,
"name": "Ubuntu 10.10"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+11.04",
"selected": false,
"name": "Ubuntu 11.04"
},
{
"count": 5,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+11.10",
"selected": false,
"name": "Ubuntu 11.10"
},
{
"count": 4,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+12.04",
"selected": false,
"name": "Ubuntu 12.04"
},
{
"count": 2,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+12.10",
"selected": false,
"name": "Ubuntu 12.10"
},
{
"count": 9,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+6.06",
"selected": false,
"name": "Ubuntu 6.06"
},
{
"count": 2,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+6.10",
"selected": false,
"name": "Ubuntu 6.10"
},
{
"count": 2,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+7.04",
"selected": false,
"name": "Ubuntu 7.04"
},
{
"count": 2,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+7.10",
"selected": false,
"name": "Ubuntu 7.10"
},
{
"count": 12,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+8.04",
"selected": false,
"name": "Ubuntu 8.04"
},
{
"count": 3,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+8.10",
"selected": false,
"name": "Ubuntu 8.10"
},
{
"count": 5,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+9.04",
"selected": false,
"name": "Ubuntu 9.04"
},
{
"count": 5,
"url": "/search?q=postgres%2A&platform_multi=Ubuntu+9.10",
"selected": false,
"name": "Ubuntu 9.10"
},
{
"count": 1,
"url": "/search?q=postgres%2A&platform_multi=openSUSE+10.2",
"selected": false,
"name": "openSUSE 10.2"
}
],
"name": "Assessment OS"
},
{
"values": [
{
"count": 2,
"url": "/search?q=postgres%2A&oval_class_string=Inventory",
"selected": false,
"name": "Inventory"
},
{
"count": 62,
"url": "/search?q=postgres%2A&oval_class_string=Patch",
"selected": false,
"name": "Patch"
},
{
"count": 36,
"url": "/search?q=postgres%2A&oval_class_string=Vulnerability",
"selected": false,
"name": "Vulnerability"
}
],
"name": "Assessment Class"
},
{
"values": [
{
"count": 97,
"url": "/search?q=postgres%2A&family_multi=unix",
"selected": false,
"name": "unix"
},
{
"count": 3,
"url": "/search?q=postgres%2A&family_multi=windows",
"selected": false,
"name": "windows"
}
],
"name": "Assessment OS Family"
},
{
"values": [
{
"count": 1,
"url": "/search?q=postgres%2A&cvss_base_score_float__lt=2.0&cvss_base_score_float__gte=0.0",
"selected": false,
"name": "0 - 2"
},
{
"count": 4,
"url": "/search?q=postgres%2A&cvss_base_score_float__lt=4.0&cvss_base_score_float__gte=2.0",
"selected": false,
"name": "2 - 4"
},
{
"count": 32,
"url": "/search?q=postgres%2A&cvss_base_score_float__lt=6.0&cvss_base_score_float__gte=4.0",
"selected": false,
"name": "4 - 6"
},
{
"count": 46,
"url": "/search?q=postgres%2A&cvss_base_score_float__lt=8.0&cvss_base_score_float__gte=6.0",
"selected": false,
"name": "6 - 8"
},
{
"count": 6,
"url": "/search?q=postgres%2A&cvss_base_score_float__lt=10.0&cvss_base_score_float__gte=8.0",
"selected": false,
"name": "8 - 10"
}
],
"name": "Vulnerability Score"
},
{
"values": [
{
"count": 2,
"url": "/search?q=postgres%2A&modified_ts__gte=2005-01-01T00%3A00%3A00Z&modified_ts__lt=2006-01-01T00%3A00%3A00Z",
"selected": false,
"name": "2005"
},
{
"count": 1,
"url": "/search?q=postgres%2A&modified_ts__gte=2007-01-01T00%3A00%3A00Z&modified_ts__lt=2008-01-01T00%3A00%3A00Z",
"selected": false,
"name": "2007"
},
{
"count": 24,
"url": "/search?q=postgres%2A&modified_ts__gte=2008-01-01T00%3A00%3A00Z&modified_ts__lt=2009-01-01T00%3A00%3A00Z",
"selected": false,
"name": "2008"
},
{
"count": 39,
"url": "/search?q=postgres%2A&modified_ts__gte=2009-01-01T00%3A00%3A00Z&modified_ts__lt=2010-01-01T00%3A00%3A00Z",
"selected": false,
"name": "2009"
},
{
"count": 119,
"url": "/search?q=postgres%2A&modified_ts__gte=2010-01-01T00%3A00%3A00Z&modified_ts__lt=2011-01-01T00%3A00%3A00Z",
"selected": false,
"name": "2010"
},
{
"count": 43,
"url": "/search?q=postgres%2A&modified_ts__gte=2011-01-01T00%3A00%3A00Z&modified_ts__lt=2012-01-01T00%3A00%3A00Z",
"selected": false,
"name": "2011"
},
{
"count": 36,
"url": "/search?q=postgres%2A&modified_ts__gte=2012-01-01T00%3A00%3A00Z&modified_ts__lt=2013-01-01T00%3A00%3A00Z",
"selected": false,
"name": "2012"
},
{
"count": 2241,
"url": "/search?q=postgres%2A&modified_ts__gte=2013-01-01T00%3A00%3A00Z&modified_ts__lt=2014-01-01T00%3A00%3A00Z",
"selected": false,
"name": "2013"
}
],
"name": "Modification Date"
}
],
"current_page": 0,
"results": [
{
"summary_text": "<span class='highlight'>postgresql</span>-8.4 -- several SecPod Technologies SecPod Team",
"url": "/oval_definition/oval:org.mitre.oval:def:13708",
"modified": "2011-11-21T09:10:13.689000Z",
"title_text": "DSA-1900-1 <span class='highlight'>postgresql</span>-7.4, <span class='highlight'>postgresql</span>-8.1, <span class='highlight'>postgresql</span>-8.3,",
"type": "oval_definition",
"id": "oval:org.mitre.oval:def:13708"
},
{
"summary_text": " to interaction errors between the client and <span class='highlight'>PostgreSQL</span>, but a CVE has been assigned since <span class='highlight'>PostgreSQL</span> is treating",
"url": "/oval_definition/oval:org.mitre.oval:def:9947",
"modified": "2013-04-29T08:23:33.201000Z",
"title_text": "<span class='highlight'>PostgreSQL</span> 8.1.x before 8.1.4, 8.0.x before 8.0.8, 7.4.x before",
"type": "oval_definition",
"id": "oval:org.mitre.oval:def:9947"
},
{
"summary_text": "<span class='highlight'>postgresql</span>-8.4 -- several vulnerabilities SecPod Technologies SecPod Team",
"url": "/oval_definition/oval:org.mitre.oval:def:7828",
"modified": "2010-02-08T09:01:25.312000Z",
"title_text": "DSA-1900 <span class='highlight'>postgresql</span>-7.4, <span class='highlight'>postgresql</span>-8.1, <span class='highlight'>postgresql</span>-8.3,",
"type": "oval_definition",
"id": "oval:org.mitre.oval:def:7828"
},
{
"summary_text": "used with a <span class='highlight'>PostgreSQL</span> server with the \"standard_conforming_strings\" option enabled",
"url": "/cve/CVE-2012-1618",
"modified": "2012-10-08T04:00:00Z",
"title_text": "Interaction error in the <span class='highlight'>PostgreSQL</span> JDBC driver before 8.2, when",
"type": "cve",
"id": "CVE-2012-1618"
},
{
"summary_text": " related to interaction errors between the client and <span class='highlight'>PostgreSQL</span>, but a CVE has been assigned since",
"url": "/cve/CVE-2006-2314",
"modified": "2011-03-08T02:35:56.737000Z",
"title_text": "<span class='highlight'>PostgreSQL</span> 8.1.x before 8.1.4, 8.0.x before 8.0.8, 7.4.x before",
"type": "cve",
"id": "CVE-2006-2314"
},
{
"summary_text": ", which (1) allows man-in-the-middle attackers to spoof arbitrary SSL-based <span class='highlight'>PostgreSQL</span> servers via",
"url": "/cve/CVE-2009-4034",
"modified": "2010-03-26T05:35:00.437000Z",
"title_text": "<span class='highlight'>PostgreSQL</span> 7.4.x before 7.4.27, 8.0.x before 8.0.23, 8.1.x before",
"type": "cve",
"id": "CVE-2009-4034"
},
{
"summary_text": "<span class='highlight'>PostgreSQL</span> libpq do not properly support the PQescapeStringConn function, which might allow remote",
"url": "/cve/CVE-2009-2943",
"modified": "2009-10-23T04:00:00Z",
"title_text": "The <span class='highlight'>postgresql</span>-ocaml bindings 1.5.4, 1.7.0, and 1.12.1 for",
"type": "cve",
"id": "CVE-2009-2943"
},
{
"summary_text": "ALLOWS_ADMIN_ACCESS (plpgsql) language has been created, grants certain plpgsql privileges to the PUBLIC domain, which allows remote attackers to create and execute functions, as demonstrated by functions that perform local brute-force password guessing attacks, which may evade intrusion detection.",
"url": "/cve/CVE-2007-3279",
"modified": "2008-11-15T06:52:03.750000Z",
"title_text": "<span class='highlight'>PostgreSQL</span> 8.1 and probably later versions, when the PL/pgSQL",
"type": "cve",
"id": "CVE-2007-3279"
},
{
"summary_text": "ALLOWS_ADMIN_ACCESS functions via CREATE statements that map to arbitrary libraries based on the C programming language, which allows remote authenticated superusers to map and execute a function from any library, as demonstrated by using the system function in libc.so.6 to gain shell access.",
"url": "/cve/CVE-2007-3280",
"modified": "2008-11-15T06:52:03.967000Z",
"title_text": "The Database Link library (dblink) in <span class='highlight'>PostgreSQL</span> 8.1 implements",
"type": "cve",
"id": "CVE-2007-3280"
},
{
"summary_text": "ALLOWS_OTHER_ACCESS consumes an extra character when processing a character that cannot be converted, which could remove an escape character from the query and make the application subject to SQL injection attacks.",
"url": "/cve/CVE-2002-0802",
"modified": "2008-09-05T20:28:59.396000Z",
"title_text": "The multibyte support in <span class='highlight'>PostgreSQL</span> 6.5.x with SQL_ASCII encoding",
"type": "cve",
"id": "CVE-2002-0802"
}
],
"end_row": 10,
"pages": [
{
"url": "/search?q=postgres%2A&s=0&n=10",
"name": 1
},
{
"url": "/search?q=postgres%2A&s=10&n=10",
"name": 2
},
{
"url": "/search?q=postgres%2A&s=20&n=10",
"name": 3
},
{
"url": "/search?q=postgres%2A&s=30&n=10",
"name": 4
},
{
"url": "/search?q=postgres%2A&s=40&n=10",
"name": 5
},
{
"url": "/search?q=postgres%2A&s=50&n=10",
"name": 6
},
{
"url": "/search?q=postgres%2A&s=60&n=10",
"name": 7
},
{
"url": "/search?q=postgres%2A&s=70&n=10",
"name": 8
},
{
"url": "/search?q=postgres%2A&s=80&n=10",
"name": 9
},
{
"url": "/search?q=postgres%2A&s=90&n=10",
"name": 10
},
{
"url": "/search?q=postgres%2A&s=100&n=10",
"name": 11
},
{
"url": "/search?q=postgres%2A&s=110&n=10",
"name": 12
},
{
"url": "/search?q=postgres%2A&s=120&n=10",
"name": 13
},
{
"url": "/search?q=postgres%2A&s=130&n=10",
"name": 14
},
{
"url": "/search?q=postgres%2A&s=140&n=10",
"name": 15
},
{
"url": "/search?q=postgres%2A&s=150&n=10",
"name": 16
},
{
"url": "/search?q=postgres%2A&s=160&n=10",
"name": 17
},
{
"url": "/search?q=postgres%2A&s=170&n=10",
"name": 18
},
{
"url": "/search?q=postgres%2A&s=180&n=10",
"name": 19
},
{
"url": "/search?q=postgres%2A&s=190&n=10",
"name": 20
},
{
"url": "/search?q=postgres%2A&s=200&n=10",
"name": 21
},
{
"url": "/search?q=postgres%2A&s=210&n=10",
"name": 22
},
{
"url": "/search?q=postgres%2A&s=220&n=10",
"name": 23
},
{
"url": "/search?q=postgres%2A&s=230&n=10",
"name": 24
},
{
"url": "/search?q=postgres%2A&s=240&n=10",
"name": 25
},
{
"url": "/search?q=postgres%2A&s=250&n=10",
"name": 26
},
{
"url": "/search?q=postgres%2A&s=260&n=10",
"name": 27
},
{
"url": "/search?q=postgres%2A&s=270&n=10",
"name": 28
},
{
"url": "/search?q=postgres%2A&s=280&n=10",
"name": 29
},
{
"url": "/search?q=postgres%2A&s=290&n=10",
"name": 30
},
{
"url": "/search?q=postgres%2A&s=300&n=10",
"name": 31
},
{
"url": "/search?q=postgres%2A&s=310&n=10",
"name": 32
},
{
"url": "/search?q=postgres%2A&s=320&n=10",
"name": 33
},
{
"url": "/search?q=postgres%2A&s=330&n=10",
"name": 34
},
{
"url": "/search?q=postgres%2A&s=340&n=10",
"name": 35
},
{
"url": "/search?q=postgres%2A&s=350&n=10",
"name": 36
},
{
"url": "/search?q=postgres%2A&s=360&n=10",
"name": 37
},
{
"url": "/search?q=postgres%2A&s=370&n=10",
"name": 38
},
{
"url": "/search?q=postgres%2A&s=380&n=10",
"name": 39
},
{
"url": "/search?q=postgres%2A&s=390&n=10",
"name": 40
},
{
"url": "/search?q=postgres%2A&s=400&n=10",
"name": 41
},
{
"url": "/search?q=postgres%2A&s=410&n=10",
"name": 42
},
{
"url": "/search?q=postgres%2A&s=420&n=10",
"name": 43
},
{
"url": "/search?q=postgres%2A&s=430&n=10",
"name": 44
},
{
"url": "/search?q=postgres%2A&s=440&n=10",
"name": 45
},
{
"url": "/search?q=postgres%2A&s=450&n=10",
"name": 46
},
{
"url": "/search?q=postgres%2A&s=460&n=10",
"name": 47
},
{
"url": "/search?q=postgres%2A&s=470&n=10",
"name": 48
},
{
"url": "/search?q=postgres%2A&s=480&n=10",
"name": 49
},
{
"url": "/search?q=postgres%2A&s=490&n=10",
"name": 50
},
{
"url": "/search?q=postgres%2A&s=500&n=10",
"name": 51
},
{
"url": "/search?q=postgres%2A&s=510&n=10",
"name": 52
},
{
"url": "/search?q=postgres%2A&s=520&n=10",
"name": 53
},
{
"url": "/search?q=postgres%2A&s=530&n=10",
"name": 54
},
{
"url": "/search?q=postgres%2A&s=540&n=10",
"name": 55
},
{
"url": "/search?q=postgres%2A&s=550&n=10",
"name": 56
},
{
"url": "/search?q=postgres%2A&s=560&n=10",
"name": 57
},
{
"url": "/search?q=postgres%2A&s=570&n=10",
"name": 58
},
{
"url": "/search?q=postgres%2A&s=580&n=10",
"name": 59
},
{
"url": "/search?q=postgres%2A&s=590&n=10",
"name": 60
},
{
"url": "/search?q=postgres%2A&s=600&n=10",
"name": 61
},
{
"url": "/search?q=postgres%2A&s=610&n=10",
"name": 62
},
{
"url": "/search?q=postgres%2A&s=620&n=10",
"name": 63
},
{
"url": "/search?q=postgres%2A&s=630&n=10",
"name": 64
},
{
"url": "/search?q=postgres%2A&s=640&n=10",
"name": 65
},
{
"url": "/search?q=postgres%2A&s=650&n=10",
"name": 66
},
{
"url": "/search?q=postgres%2A&s=660&n=10",
"name": 67
},
{
"url": "/search?q=postgres%2A&s=670&n=10",
"name": 68
},
{
"url": "/search?q=postgres%2A&s=680&n=10",
"name": 69
},
{
"url": "/search?q=postgres%2A&s=690&n=10",
"name": 70
},
{
"url": "/search?q=postgres%2A&s=700&n=10",
"name": 71
},
{
"url": "/search?q=postgres%2A&s=710&n=10",
"name": 72
},
{
"url": "/search?q=postgres%2A&s=720&n=10",
"name": 73
},
{
"url": "/search?q=postgres%2A&s=730&n=10",
"name": 74
},
{
"url": "/search?q=postgres%2A&s=740&n=10",
"name": 75
},
{
"url": "/search?q=postgres%2A&s=750&n=10",
"name": 76
},
{
"url": "/search?q=postgres%2A&s=760&n=10",
"name": 77
},
{
"url": "/search?q=postgres%2A&s=770&n=10",
"name": 78
},
{
"url": "/search?q=postgres%2A&s=780&n=10",
"name": 79
},
{
"url": "/search?q=postgres%2A&s=790&n=10",
"name": 80
},
{
"url": "/search?q=postgres%2A&s=800&n=10",
"name": 81
},
{
"url": "/search?q=postgres%2A&s=810&n=10",
"name": 82
},
{
"url": "/search?q=postgres%2A&s=820&n=10",
"name": 83
},
{
"url": "/search?q=postgres%2A&s=830&n=10",
"name": 84
},
{
"url": "/search?q=postgres%2A&s=840&n=10",
"name": 85
},
{
"url": "/search?q=postgres%2A&s=850&n=10",
"name": 86
},
{
"url": "/search?q=postgres%2A&s=860&n=10",
"name": 87
},
{
"url": "/search?q=postgres%2A&s=870&n=10",
"name": 88
},
{
"url": "/search?q=postgres%2A&s=880&n=10",
"name": 89
},
{
"url": "/search?q=postgres%2A&s=890&n=10",
"name": 90
},
{
"url": "/search?q=postgres%2A&s=900&n=10",
"name": 91
},
{
"url": "/search?q=postgres%2A&s=910&n=10",
"name": 92
},
{
"url": "/search?q=postgres%2A&s=920&n=10",
"name": 93
},
{
"url": "/search?q=postgres%2A&s=930&n=10",
"name": 94
},
{
"url": "/search?q=postgres%2A&s=940&n=10",
"name": 95
},
{
"url": "/search?q=postgres%2A&s=950&n=10",
"name": 96
},
{
"url": "/search?q=postgres%2A&s=960&n=10",
"name": 97
},
{
"url": "/search?q=postgres%2A&s=970&n=10",
"name": 98
},
{
"url": "/search?q=postgres%2A&s=980&n=10",
"name": 99
},
{
"url": "/search?q=postgres%2A&s=990&n=10",
"name": 100
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment