Skip to content

Commit

Permalink
Update to MSTG Blue (#2035)
Browse files Browse the repository at this point in the history
* update to mstg blue
* update logo and its size
* remove old checklists and update README
  • Loading branch information
cpholguera committed Jan 20, 2022
1 parent 4b31e03 commit b04750a
Show file tree
Hide file tree
Showing 12 changed files with 22 additions and 48 deletions.
22 changes: 11 additions & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"workbench.colorCustomizations": {
"activityBar.activeBackground": "#78b9fa",
"activityBar.activeBorder": "#d70870",
"activityBar.background": "#78b9fa",
"activityBar.activeBackground": "#7cbaff",
"activityBar.activeBorder": "#df006a",
"activityBar.background": "#7cbaff",
"activityBar.foreground": "#15202b",
"activityBar.inactiveForeground": "#15202b99",
"activityBarBadge.background": "#d70870",
"activityBarBadge.background": "#df006a",
"activityBarBadge.foreground": "#e7e7e7",
"sash.hoverBorder": "#78b9fa",
"statusBar.background": "#479ff8",
"sash.hoverBorder": "#7cbaff",
"statusBar.background": "#499fff",
"statusBar.foreground": "#15202b",
"statusBarItem.hoverBackground": "#1685f6",
"statusBarItem.remoteBackground": "#479ff8",
"statusBarItem.hoverBackground": "#1684ff",
"statusBarItem.remoteBackground": "#499fff",
"statusBarItem.remoteForeground": "#15202b",
"titleBar.activeBackground": "#479ff8",
"titleBar.activeBackground": "#499fff",
"titleBar.activeForeground": "#15202b",
"titleBar.inactiveBackground": "#479ff899",
"titleBar.inactiveBackground": "#499fff99",
"titleBar.inactiveForeground": "#15202b99"
},
"peacock.color": "#479ff8",
"peacock.color": "#499FFF",
"cSpell.words": [
"aliascert",
"apktool",
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
16 changes: 0 additions & 16 deletions Checklists/README.md

This file was deleted.

14 changes: 0 additions & 14 deletions Checklists/checklinks.py

This file was deleted.

Binary file modified Document/Images/logo_circle.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# OWASP Mobile Security Testing Guide [![Twitter Follow](https://img.shields.io/twitter/follow/OWASP_MSTG.svg?style=social&label=Follow)](https://twitter.com/OWASP_MSTG) [![Open in Visual Studio Code](https://open.vscode.dev/badges/open-in-vscode.svg)](https://open.vscode.dev/OWASP/owasp-mstg)

[![Creative Commons License](https://licensebuttons.net/l/by-sa/4.0/88x31.png)](https://creativecommons.org/licenses/by-sa/4.0/ "CC BY-SA 4.0")
[![Creative Commons License](https://img.shields.io/github/license/OWASP/owasp-mstg)](https://creativecommons.org/licenses/by-sa/4.0/ "CC BY-SA 4.0")

[![OWASP Flagship](https://img.shields.io/badge/owasp-flagship%20project-48A646.svg)](https://owasp.org/projects/)

Expand All @@ -11,7 +11,10 @@
[![Check Markdown Links](https://github.com/OWASP/owasp-mstg/workflows/Check%20Markdown%20Links/badge.svg)](https://github.com/OWASP/owasp-mstg/actions?query=workflow%3A%22Check+Markdown+Links%22)

This is the official GitHub Repository of the OWASP Mobile Security Testing Guide (MSTG). The MSTG is a comprehensive manual for mobile app security testing and reverse engineering. It describes technical processes for verifying the controls listed in the [OWASP Mobile Application Verification Standard (MASVS)](https://github.com/OWASP/owasp-masvs "MASVS").
You can also read the MSTG on [Gitbook](https://mobile-security.gitbook.io/mobile-security-testing-guide/ "MSTG @ Gitbook") or download it as an [e-book](https://leanpub.com/mobile-security-testing-guide-preview "MSTG as an e-book").

- 📖 [Read it on Gitbook](https://mobile-security.gitbook.io/mobile-security-testing-guide/)
- ⬇️ [Download the latest PDF](https://github.com/OWASP/owasp-mstg/releases/latest)
-[Get the latest Mobile App Security Checklists](https://github.com/OWASP/owasp-mstg/releases/latest)

The MSTG and the MASVS are being adopted by many companies, standards, and various organizations. Want to find out more? Check our [users' document listing some of the adopters](Users.md).

Expand Down
7 changes: 4 additions & 3 deletions tools/scripts/excel_styles_and_validation.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@
wrapText=True,
)
FONT = "Avenir"
MSTG_BLUE = "499FFF"

styles_metadata = [
{"name": "text", "font": {'name': FONT}, "alignment": "left", "background": ""},
{"name": "center", "font": {'name': FONT}, "alignment": "center", "background": ""},
{"name": "blue_link", "font": {'name': FONT, 'underline': "single", 'color': "1CA4FC"}, "alignment": "center", "background": ""},
{"name": "blue_link", "font": {'name': FONT, 'underline': "single", 'color': MSTG_BLUE}, "alignment": "center", "background": ""},
{"name": "gray", "font": {'name': FONT}, "alignment": "center", "background": "00C0C0C0"},
{"name": "blue", "font": {'name': FONT}, "alignment": "center", "background": "0033CCCC"},
{"name": "green", "font": {'name': FONT}, "alignment": "center", "background": "0099CC00"},
Expand Down Expand Up @@ -61,8 +62,8 @@ def load_styles(wb):
styles = [create_style(style) for style in styles_metadata]

underline = NamedStyle(name="underline")
underline.font = Font(name=FONT, size=15, bold=True, color="1CA4FC")
bd = Side(style="medium", color="1CA4FC")
underline.font = Font(name=FONT, size=15, bold=True, color=MSTG_BLUE)
bd = Side(style="medium", color=MSTG_BLUE)
underline.border = Border(bottom=bd)
styles.append(underline)

Expand Down
4 changes: 2 additions & 2 deletions tools/scripts/yaml_to_excel.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ def write_header(ws):
ws.merge_cells(start_row=2, end_row=4, start_column=2, end_column=3)

img = Image("../../Document/Images/logo_circle.png")
img.height = img.height * 0.15
img.width = img.width * 0.15
img.height = 140
img.width = 140
ws.add_image(img, "C2")

img = Image("owasp-masvs/Document/images/OWASP_logo.png")
Expand Down

0 comments on commit b04750a

Please sign in to comment.