Commit bdd06dc1 authored by PidgeyL's avatar PidgeyL
Browse files

update copyrights

parent 120fd4fe
Loading
Loading
Loading
Loading
+7 −2
Original line number Diff line number Diff line
@@ -279,11 +279,16 @@ Software using cve-search
* [cve-search-mt](https://www.github.com/NorthernSec/cve-search-mt) which is a set of management tools for CVE-Search
* [cve-scan](https://www.github.com/NorthernSec/cve-scan) which is a NMap CVE system scanner

Changelog
---------

You can find the changelog [here](https://github.com/cve-search/UpdateLog)

License
-------

cve-search is free software released under the "Modified BSD license"

    Copyright (c) 2012 Wim Remes - https://github.com/wimremes/
    Copyright (c) 2012-2015 Alexandre Dulaunoy - https://github.com/adulau/
    Copyright (c) 2015 Pieter-Jan Moreels - https://github.com/pidgeyl/
    Copyright (c) 2012-2016 Alexandre Dulaunoy - https://github.com/adulau/
    Copyright (c) 2015-2016 Pieter-Jan Moreels - https://github.com/pidgeyl/
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@
# Software is free software released under the "Modified BSD license"
#
# Copyright (c) 2012-2015 	Alexandre Dulaunoy - a@foo.be
# Copyright (c) 2015 		Pieter-Jan Moreels - pieterjan.moreels@gmail.com
# Copyright (c) 2015-2016	Pieter-Jan Moreels - pieterjan.moreels@gmail.com

# Imports
import os
+1 −1
Original line number Diff line number Diff line
@@ -6,7 +6,7 @@
# Software is free software released under the "Modified BSD license"
#
# Copyright (c) 2013-2014 	Alexandre Dulaunoy - a@foo.be
# Copyright (c) 2014-2015 	Pieter-Jan Moreels - pieterjan.moreels@gmail.com
# Copyright (c) 2014-2016 	Pieter-Jan Moreels - pieterjan.moreels@gmail.com

# imports
import sys
+1 −1
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@
# Software is free software released under the "Modified BSD license"
#

# Copyright (c) 2014-2015       Pieter-Jan Moreels - pieterjan.moreels@gmail.com
# Copyright (c) 2014-2016       Pieter-Jan Moreels - pieterjan.moreels@gmail.com

# imports
import sqlite3
+9 −1
Original line number Diff line number Diff line
from flask import render_template
#!/usr/bin/env python3.3
# -*- coding: utf-8 -*-
#
# Plugin Classes
#  Classes for all plug-ins to be based on
#
# Software is free software released under the "Modified BSD license"
#
# Copyright (c) 2016	Pieter-Jan Moreels - pieterjan.moreels@gmail.com

class Plugin():
  def __init__(self):
Loading