Skip to content

Commit

Permalink
Updated Copyright
Browse files Browse the repository at this point in the history
  • Loading branch information
ikorich committed Jun 10, 2015
1 parent 6fc5e2a commit 7cb38cc
Show file tree
Hide file tree
Showing 172 changed files with 4,207 additions and 3,025 deletions.
3 changes: 2 additions & 1 deletion KisMAC_Prefix.pch
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@

#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#import <Foundation/Foundation.h>
#import <AppKit/AppKit.h>
#import <BIGL/BIGL.h>
#import <BIGeneric/BIGeneric.h>
#import <AppKit/AppKit.h>
#import <Security/Security.h>
#import <CoreServices/CoreServices.h>
#endif
Expand Down
6 changes: 2 additions & 4 deletions KisMac2.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,6 @@
A537418D19DD4AAC00434C6E /* WaveHelperTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WaveHelperTest.m; sourceTree = "<group>"; };
A537418E19DD4AAC00434C6E /* WaveNetTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WaveNetTest.m; sourceTree = "<group>"; };
A537418F19DD4AAC00434C6E /* WavePacketTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WavePacketTest.m; sourceTree = "<group>"; };
A567EDD91A21F0CE00663A18 /* BIGL.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; name = BIGL.framework; path = "/Users/korich/Library/Developer/Xcode/DerivedData/KisMac2-gkydvsrajuiruqdyshxmbwunuwbp/Build/Products/Debug/BIGL.framework"; sourceTree = "<absolute>"; };
A57E64381607BC9700BE1BCA /* AirCrackWrapper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AirCrackWrapper.h; sourceTree = "<group>"; };
A57E64391607BC9700BE1BCA /* AirCrackWrapper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AirCrackWrapper.m; sourceTree = "<group>"; };
A57E643A1607BC9700BE1BCA /* LEAP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LEAP.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -819,7 +818,8 @@
1058C7A2FEA54F0111CA2CBB /* Other Frameworks */ = {
isa = PBXGroup;
children = (
A567EDD91A21F0CE00663A18 /* BIGL.framework */,
A505CE431B271A410095C7A0 /* BIGeneric.framework */,
A505CE401B271A410095C7A0 /* BIGL.framework */,
29B97325FDCFA39411CA2CEA /* Foundation.framework */,
29B97324FDCFA39411CA2CEA /* AppKit.framework */,
A535396B180B073D008BB6A1 /* Cocoa.framework */,
Expand All @@ -838,8 +838,6 @@
29B97314FDCFA39411CA2CEA /* KisMAC */ = {
isa = PBXGroup;
children = (
A505CE431B271A410095C7A0 /* BIGeneric.framework */,
A505CE401B271A410095C7A0 /* BIGL.framework */,
69719DAF0F7E928900949310 /* Subprojects */,
080E96DDFE201D6D7F000001 /* Classes */,
29B97315FDCFA39411CA2CEA /* Other Sources */,
Expand Down
62 changes: 32 additions & 30 deletions Sources/Controller/FSWindow.h
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
/*
File: FSWindow.h
Program: KisMAC
Author: Geordie Millar
themacuser@gmail.com
Description: This file is a simple subclass of NSWindow, but overriding
canBecomeKeyWindow so that borderless windows can accept
keyDown events, so that the map view can use the arrow
keys in fullscreen mode.
This file is part of KisMAC.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#import <Cocoa/Cocoa.h>


@interface FSWindow : NSWindow {
File: FSWindow.h
Program: KisMAC
Author: Geordie Millar
themacuser@gmail.com
Changes: Vitalii Parovishnyk(1012-2015)
Description: This file is a simple subclass of NSWindow, but overriding
canBecomeKeyWindow so that borderless windows can accept
keyDown events, so that the map view can use the arrow
keys in fullscreen mode.
This file is part of KisMAC.
Most parts of this file are based on aircrack by Christophe Devine.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

@interface FSWindow : NSWindow
{

}

Expand Down
54 changes: 29 additions & 25 deletions Sources/Controller/FSWindow.m
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
/*
File: FSWindow.m
Program: KisMAC
Author: Geordie Millar
themacuser@gmail.com
Description: This file is a simple subclass of NSWindow, but overriding
canBecomeKeyWindow so that borderless windows can accept
keyDown events, so that the map view can use the arrow
keys in fullscreen mode.
This file is part of KisMAC.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
File: FSWindow.m
Program: KisMAC
Author: Geordie Millar
themacuser@gmail.com
Changes: Vitalii Parovishnyk(1012-2015)
Description: This file is a simple subclass of NSWindow, but overriding
canBecomeKeyWindow so that borderless windows can accept
keyDown events, so that the map view can use the arrow
keys in fullscreen mode.
This file is part of KisMAC.
Most parts of this file are based on aircrack by Christophe Devine.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#import "FSWindow.h"

Expand Down
96 changes: 66 additions & 30 deletions Sources/Controller/GrowlController.h
Original file line number Diff line number Diff line change
@@ -1,41 +1,77 @@
/*
File: GrowlController.h
Program: KisMAC
Description: KisMAC is a wireless stumbler for MacOS X.
Author: themacuser at gmail dot com
This file is part of KisMAC.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#import <Cocoa/Cocoa.h>
File: GrowlController.h
Program: KisMAC
Author: themacuser at gmail dot com
Changes: Vitalii Parovishnyk(1012-2015)
Description: KisMAC is a wireless stumbler for MacOS X.
This file is part of KisMAC.
Most parts of this file are based on aircrack by Christophe Devine.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#import <Growl/Growl.h>

@interface GrowlController : NSObject<GrowlApplicationBridgeDelegate> {
@interface GrowlController : NSObject<GrowlApplicationBridgeDelegate>
{
}

- (void)registerGrowl;
+ (void)notifyGrowlOpenNetwork:(NSString *)notname SSID:(NSString *)SSID BSSID:(NSString *)BSSID signal:(int)signal channel:(int)channel;
+ (void)notifyGrowlUnknownNetwork:(NSString *)notname SSID:(NSString *)SSID BSSID:(NSString *)BSSID signal:(int)signal channel:(int)channel;
+ (void)notifyGrowlLEAPNetwork:(NSString *)notname SSID:(NSString *)SSID BSSID:(NSString *)BSSID signal:(int)signal channel:(int)channel;
+ (void)notifyGrowlWEPNetwork:(NSString *)notname SSID:(NSString *)SSID BSSID:(NSString *)BSSID signal:(int)signal channel:(int)channel;
+ (void)notifyGrowlWPANetwork:(NSString *)notname SSID:(NSString *)SSID BSSID:(NSString *)BSSID signal:(int)signal channel:(int)channel;
+ (void)notifyGrowlProbeRequest:(NSString *)notname BSSID:(NSString *)BSSID signal:(int)signal;

+ (void)notifyGrowlOpenNetwork:(NSString *)notname
SSID:(NSString *)SSID
BSSID:(NSString *)BSSID
signal:(int)signal
channel:(int)channel;

+ (void)notifyGrowlUnknownNetwork:(NSString *)notname
SSID:(NSString *)SSID
BSSID:(NSString *)BSSID
signal:(int)signal
channel:(int)channel;

+ (void)notifyGrowlLEAPNetwork:(NSString *)notname
SSID:(NSString *)SSID
BSSID:(NSString *)BSSID
signal:(int)signal
channel:(int)channel;

+ (void)notifyGrowlWEPNetwork:(NSString *)notname
SSID:(NSString *)SSID
BSSID:(NSString *)BSSID
signal:(int)signal
channel:(int)channel;

+ (void)notifyGrowlWPANetwork:(NSString *)notname
SSID:(NSString *)SSID
BSSID:(NSString *)BSSID
signal:(int)signal
channel:(int)channel;

+ (void)notifyGrowlProbeRequest:(NSString *)notname
BSSID:(NSString *)BSSID
signal:(int)signal;

+ (void)notifyGrowlStartScan;
+ (void)notifyGrowlStopScan;

+ (void)notifyGrowlWPAChallenge:(NSString *)notname mac:(NSString *)mac bssid:(NSString *)bssid;
+ (void)notifyGrowlWPAResponse:(NSString *)notname mac:(NSString *)mac bssid:(NSString *)bssid;
+ (void)notifyGrowlSSIDRevealed:(NSString *)notname BSSID:(NSString *)BSSID SSID:(NSString *)SSID;

@end
46 changes: 25 additions & 21 deletions Sources/Controller/GrowlController.m
Original file line number Diff line number Diff line change
@@ -1,25 +1,29 @@
/*
File: GrowlController.m
Program: KisMAC
Description: KisMAC is a wireless stumbler for MacOS X.
Author: themacuser at gmail dot com
This file is part of KisMAC.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
File: GrowlController.m
Program: KisMAC
Author: themacuser at gmail dot com
Changes: Vitalii Parovishnyk(1012-2015)
Description: KisMAC is a wireless stumbler for MacOS X.
This file is part of KisMAC.
Most parts of this file are based on aircrack by Christophe Devine.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#import "GrowlController.h"

Expand Down
50 changes: 26 additions & 24 deletions Sources/Controller/InfoController.h
Original file line number Diff line number Diff line change
@@ -1,28 +1,30 @@
/*
File: InfoController.h
Program: KisMAC
Author: Michael Rossberg
mick@binaervarianz.de
Description: KisMAC is a wireless stumbler for MacOS X.
This file is part of KisMAC.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#import <Cocoa/Cocoa.h>
File: InfoController.h
Program: KisMAC
Author: Michael Ro§berg
mick@binaervarianz.de
Changes: Vitalii Parovishnyk(1012-2015)
Description: KisMAC is a wireless stumbler for MacOS X.
This file is part of KisMAC.
Most parts of this file are based on aircrack by Christophe Devine.
KisMAC is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2,
as published by the Free Software Foundation;
KisMAC 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 KisMAC; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

@class WaveNet;

Expand Down
Loading

0 comments on commit 7cb38cc

Please sign in to comment.