Skip to content

Commit 738ef70

Browse files
committed
Updated License
Make all the licenses consistent across my scripts.
1 parent 3f9f82f commit 738ef70

File tree

7 files changed

+118
-18
lines changed

7 files changed

+118
-18
lines changed

generic_cookie_grabber.rb

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,25 @@
11
#!/usr/bin/env ruby
22

3-
#Code to get the session tokens after a two stage login
43

4+
# == Author
5+
# Author:: Rory McCune
6+
# Copyright:: Copyright (c) 2013 Rory Mccune
7+
# License:: GPLv3
8+
#
9+
# This program is free software: you can redistribute it and/or modify
10+
# it under the terms of the GNU General Public License as published by
11+
# the Free Software Foundation, either version 3 of the License, or
12+
# (at your option) any later version.
13+
#
14+
# This program is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU General Public License
20+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
521

22+
#Code to get the session tokens after a two stage login
623

724
require 'mechanize'
825

kis_analysis.rb

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,28 @@
11
#!/usr/bin/env ruby
22
#TODO: split out network numbers on the report (inf/adhoc/probe)
33

4+
# == Author
5+
# Author:: Rory McCune
6+
# Copyright:: Copyright (c) 2013 Rory Mccune
7+
# License:: GPLv3
8+
#
9+
# This program is free software: you can redistribute it and/or modify
10+
# it under the terms of the GNU General Public License as published by
11+
# the Free Software Foundation, either version 3 of the License, or
12+
# (at your option) any later version.
13+
#
14+
# This program is distributed in the hope that it will be useful,
15+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
# GNU General Public License for more details.
18+
#
19+
# You should have received a copy of the GNU General Public License
20+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
421

522

623
class KisAnalysis
724
VERSION = '0.13'
8-
#Copyright (C) 2012 Rory McCune
9-
#This program is free software; you can redistribute it and/or
10-
#modify it under the terms of the GNU General Public License
11-
#as published by the Free Software Foundation; either version 2
12-
#of the License, or (at your option) any later version.
13-
#
14-
#This program is distributed in the hope that it will be useful,
15-
#but WITHOUT ANY WARRANTY; without even the implied warranty of
16-
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17-
#GNU General Public License for more details.
18-
#
19-
#You should have received a copy of the GNU General Public License
20-
#along with this program; if not, write to the Free Software
21-
#Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
25+
2226

2327
def initialize(arguments)
2428
begin

nessusautoanalyzer.rb

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,22 @@
2121
# * Add parsing for OpenVAS and NeXpose XML files
2222
#
2323
# == Author
24-
# Rory McCune
24+
# Author:: Rory McCune
25+
# Copyright:: Copyright (c) 2013 Rory Mccune
26+
# License:: GPLv3
27+
#
28+
# This program is free software: you can redistribute it and/or modify
29+
# it under the terms of the GNU General Public License as published by
30+
# the Free Software Foundation, either version 3 of the License, or
31+
# (at your option) any later version.
32+
#
33+
# This program is distributed in the hope that it will be useful,
34+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
35+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
36+
# GNU General Public License for more details.
37+
#
38+
# You should have received a copy of the GNU General Public License
39+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2540
#
2641
# == Options
2742
# -h, --help Displays help message

nessusautorun.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
#!/usr/bin/env ruby
22

3+
# == Author
4+
# Author:: Rory McCune
5+
# Copyright:: Copyright (c) 2013 Rory Mccune
6+
# License:: GPLv3
7+
#
8+
# This program is free software: you can redistribute it and/or modify
9+
# it under the terms of the GNU General Public License as published by
10+
# the Free Software Foundation, either version 3 of the License, or
11+
# (at your option) any later version.
12+
#
13+
# This program is distributed in the hope that it will be useful,
14+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
# GNU General Public License for more details.
17+
#
18+
# You should have received a copy of the GNU General Public License
19+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
321

422
class NessusautoRun
523
VERSION = '0.0.1'

nmapautoanalyzer.rb

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,22 @@
1414
# File mode takes a parameter of a single file and parses that
1515
#
1616
# == Author
17-
# Rory McCune
17+
# Author:: Rory McCune
18+
# Copyright:: Copyright (c) 2013 Rory Mccune
19+
# License:: GPLv3
20+
#
21+
# This program is free software: you can redistribute it and/or modify
22+
# it under the terms of the GNU General Public License as published by
23+
# the Free Software Foundation, either version 3 of the License, or
24+
# (at your option) any later version.
25+
#
26+
# This program is distributed in the hope that it will be useful,
27+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
28+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
29+
# GNU General Public License for more details.
30+
#
31+
# You should have received a copy of the GNU General Public License
32+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1833
#
1934
# == Options
2035
# -h, --help Displays help message

nmapautorun.rb

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
#!/usr/bin/env ruby
22

3+
# == Author
4+
# Author:: Rory McCune
5+
# Copyright:: Copyright (c) 2013 Rory Mccune
6+
# License:: GPLv3
7+
#
8+
# This program is free software: you can redistribute it and/or modify
9+
# it under the terms of the GNU General Public License as published by
10+
# the Free Software Foundation, either version 3 of the License, or
11+
# (at your option) any later version.
12+
#
13+
# This program is distributed in the hope that it will be useful,
14+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
15+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16+
# GNU General Public License for more details.
17+
#
18+
# You should have received a copy of the GNU General Public License
19+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
20+
321

422

523
class NmapautoRun

web_header_scan.rb

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,22 @@
1616
#
1717
# == Author
1818
# Author:: Rory McCune
19-
# Copyright:: Copyright (c) 2012 Rory McCune
19+
# Copyright:: Copyright (c) 2013 Rory Mccune
2020
# License:: GPLv3
2121
#
22+
# This program is free software: you can redistribute it and/or modify
23+
# it under the terms of the GNU General Public License as published by
24+
# the Free Software Foundation, either version 3 of the License, or
25+
# (at your option) any later version.
26+
#
27+
# This program is distributed in the hope that it will be useful,
28+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
29+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30+
# GNU General Public License for more details.
31+
#
32+
# You should have received a copy of the GNU General Public License
33+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
34+
#
2235
# == Options
2336
# -h, --help Displays help message
2437
# -v, --version Display the version, then exit

0 commit comments

Comments
 (0)