Unknown packages

2017-08-30 Thread Luciano Bello
openss1.0
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2017-07-24 Thread Luciano Bello
eviv2
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2017-02-18 Thread Luciano Bello
sane-utils
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2017-02-09 Thread Luciano Bello
viewc
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2017-01-12 Thread Luciano Bello
php7
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2016-11-23 Thread Luciano Bello
tocmat7
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2016-01-02 Thread Luciano Bello
wesnoth-1.13 in experimental
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2016-01-01 Thread Luciano Bello
wesnoth-1.13 in experimental
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2015-12-31 Thread Luciano Bello
wesnoth-1.13 in experimental
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.



Unknown packages

2015-04-21 Thread Luciano Bello
icewasel
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.


-- 
To UNSUBSCRIBE, email to debian-security-tracker-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yktiu-0006k4...@soler.debian.org



Unknown packages

2015-03-29 Thread Luciano Bello
docker.o
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.


-- 
To UNSUBSCRIBE, email to debian-security-tracker-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1yc8ll-0005zv...@soler.debian.org



Unknown packages

2015-01-28 Thread Luciano Bello
qpidd
--
In above list (well, probably is just one) are "packages" mentioned in
the CVE list that we could not find around. This probably as a result 
of spelling error, so please consider to check them and fix their name.


-- 
To UNSUBSCRIBE, email to debian-security-tracker-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/e1ygoaq-0004d2...@soler.debian.org



Bug#718362: workaround to #718362 (tracker/data/unknown-packages)

2014-11-13 Thread Luciano Bello
Hi,
  These two scripts might help as a workaround.

This one uses sources.debian.net
./unknown-packages.py  | grep WAT

and this one packages.qa.debian.org
./unknown-packages-pts.py | grep WAT

   I think the tracker does not depend on any external elements now. Does it 
make sense to include something like these scripts in the tracker?

Cheers, luciano#!/usr/bin/python
from BeautifulSoup import BeautifulSoup 
import urllib2
import json
import SOAPpy

soup = BeautifulSoup(urllib2.urlopen('https://security-tracker.debian.org/tracker/data/unknown-packages').read())

pkgs=[ r('td')[0].string for r in soup('table')[0].findAll('tr')[1:] ]

ws = SOAPpy.SOAPProxy('https://packages.qa.debian.org/cgi-bin/soap-alpha.cgi')

for pkg in pkgs:
print pkg,
try: 
   ws.versions(source=pkg)
except SOAPpy.faultType:
   print '<-- WAT?'
else: print "OK"
#!/usr/bin/python
from BeautifulSoup import BeautifulSoup 
import urllib2
import json

soup = BeautifulSoup(urllib2.urlopen('https://security-tracker.debian.org/tracker/data/unknown-packages').read())

pkgs=[ r('td')[0].string for r in soup('table')[0].findAll('tr')[1:] ]

for pkg in pkgs:
print pkg,
try: 
   data = json.load(urllib2.urlopen('http://sources.debian.net/api/src/%s/latest/' %pkg))
except urllib2.HTTPError as e:
   print "Unexpected error:", e
if 'error' in data: print '<-- WAT?'
else: print ", ".join(data['pkg_infos']['suites'])