-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added version downloaded from https://storage.googleapis.com/google-c…
- Loading branch information
0 parents
commit 849e333
Showing
3,495 changed files
with
1,297,674 additions
and
0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>PreferenceSpecifiers</key> | ||
<array> | ||
<dict> | ||
<key>AutocapitalizationType</key> | ||
<string>None</string> | ||
<key>AutocorrectionType</key> | ||
<string>No</string> | ||
<key>DefaultValue</key> | ||
<string></string> | ||
<key>IsSecure</key> | ||
<false/> | ||
<key>Key</key> | ||
<string>username</string> | ||
<key>KeyboardType</key> | ||
<string>Alphabet</string> | ||
<key>Title</key> | ||
<string>Username</string> | ||
<key>Type</key> | ||
<string>PSTextFieldSpecifier</string> | ||
</dict> | ||
<dict> | ||
<key>AutocapitalizationType</key> | ||
<string>None</string> | ||
<key>AutocorrectionType</key> | ||
<string>No</string> | ||
<key>DefaultValue</key> | ||
<string></string> | ||
<key>IsSecure</key> | ||
<true/> | ||
<key>Key</key> | ||
<string>password</string> | ||
<key>KeyboardType</key> | ||
<string>Alphabet</string> | ||
<key>Title</key> | ||
<string>Password</string> | ||
<key>Type</key> | ||
<string>PSTextFieldSpecifier</string> | ||
</dict> | ||
</array> | ||
<key>StringsTable</key> | ||
<string>Root</string> | ||
</dict> | ||
</plist> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
#import <Foundation/Foundation.h> | ||
#import <UIKit/UIKit.h> | ||
#import "iGoatAppDelegate.h" | ||
|
||
#define UIColorFromHex(hexValue) [UIColor \ | ||
colorWithRed:((float)((hexValue & 0xFF0000) >> 16))/255.0 \ | ||
green:((float)((hexValue & 0xFF00) >> 8))/255.0 \ | ||
blue:((float)(hexValue & 0xFF))/255.0 alpha:1.0] | ||
|
||
#define AssetStore \ | ||
((iGoatAppDelegate *)[UIApplication sharedApplication].delegate).assetStore | ||
|
||
@interface Utils : NSObject { | ||
|
||
} | ||
|
||
@end | ||
|
||
//****************************************************************************** | ||
// | ||
// Utils.h | ||
// iGoat | ||
// | ||
// This file is part of iGoat, an Open Web Application Security | ||
// Project tool. For details, please see http://www.owasp.org | ||
// | ||
// Copyright(c) 2011 KRvW Associates, LLC (http://www.krvw.com) | ||
// The iGoat project is principally sponsored by KRvW Associates, LLC | ||
// Project Leader, Kenneth R. van Wyk ([email protected]) | ||
// Lead Developer: Sean Eidemiller ([email protected]) | ||
// | ||
// iGoat is free software; you may redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation; version 3. | ||
// | ||
// iGoat is distributed in the hope 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, write to the Free Software | ||
// Foundation, Inc. 59 Temple Place, suite 330, Boston, MA 02111-1307 | ||
// USA. | ||
// | ||
// Getting Source | ||
// | ||
// The source for iGoat is maintained at http://code.google.com/p/owasp-igoat/ | ||
// | ||
// For project details, please see https://www.owasp.org/index.php/OWASP_iGoat_Project | ||
// | ||
//****************************************************************************** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
#import "Utils.h" | ||
|
||
@implementation Utils | ||
|
||
@end | ||
|
||
//****************************************************************************** | ||
// | ||
// Utils.m | ||
// iGoat | ||
// | ||
// This file is part of iGoat, an Open Web Application Security | ||
// Project tool. For details, please see http://www.owasp.org | ||
// | ||
// Copyright(c) 2011 KRvW Associates, LLC (http://www.krvw.com) | ||
// The iGoat project is principally sponsored by KRvW Associates, LLC | ||
// Project Leader, Kenneth R. van Wyk ([email protected]) | ||
// Lead Developer: Sean Eidemiller ([email protected]) | ||
// | ||
// iGoat is free software; you may redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation; version 3. | ||
// | ||
// iGoat is distributed in the hope 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, write to the Free Software | ||
// Foundation, Inc. 59 Temple Place, suite 330, Boston, MA 02111-1307 | ||
// USA. | ||
// | ||
// Getting Source | ||
// | ||
// The source for iGoat is maintained at http://code.google.com/p/owasp-igoat/ | ||
// | ||
// For project details, please see https://www.owasp.org/index.php/OWASP_iGoat_Project | ||
// | ||
//****************************************************************************** |
Oops, something went wrong.