Skip to content

Commit

Permalink
Update version information, add GPL notice to unhideGui
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-g2 committed Jan 23, 2021
1 parent bca2c74 commit 96b9ed4
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 2 deletions.
2 changes: 2 additions & 0 deletions unhide-linux-procfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -389,6 +389,7 @@ void checkreaddir(void)
char *directory ;

directory = dirproc->d_name;

if(!isdigit(*directory))
{
// not a process directory of /proc
Expand All @@ -397,6 +398,7 @@ void checkreaddir(void)
// sprintf(currentproc, "%d", directory);

// Warning here as gcc can't know that directory (task number) contains far less than 94 char.
// max PID = 2³32 - 1 has 11 digits max
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-overflow="
Expand Down
2 changes: 1 addition & 1 deletion unhide-linux.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

// header
const char header[] =
"Unhide 20130526\n"
"Unhide 20210123\n"
"Copyright © 2013 Yago Jesus & Patrick Gouin\n"
"License GPLv3+ : GNU GPL version 3 or later\n"
"http://www.unhide-forensics.info\n\n"
Expand Down
2 changes: 1 addition & 1 deletion unhide-tcp.c
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.

// header
const char header[] =
"Unhide-tcp 20130526\n"
"Unhide-tcp 20210123\n"
"Copyright © 2013 Yago Jesus & Patrick Gouin\n"
"License GPLv3+ : GNU GPL version 3 or later\n"
"http://www.unhide-forensics.info\n";
Expand Down
25 changes: 25 additions & 0 deletions unhideGui.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
#!/bin/python3

"""
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
"""
__author__ = "Patrick Gouin"
__copyright__ = "Copyright 2021, Patrick Gouin"
__credits__ = []
__license__ = "GPL V3"
__version__ = "1.0"
__maintainer__ = "Patrick Gouin"
__email__ = "[email protected]"
__status__ = "Production"


from tkinter import *
from tkinter.ttk import *
import os
Expand Down

0 comments on commit 96b9ed4

Please sign in to comment.