Skip to content

Commit

Permalink
v3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinabraham committed Dec 2, 2023
1 parent bc37087 commit 4de9e5d
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Mobile Security Framework (MobSF)
Version: v4.0 beta
Version: v3.8 beta

![](https://cloud.githubusercontent.com/assets/4301109/20019521/cc61f7fc-a2f2-11e6-95f3-407030d9fdde.png)

Expand Down
12 changes: 6 additions & 6 deletions mobsf/MobSF/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@

logger = logging.getLogger(__name__)

VERSION = '4.0.0'
VERSION = '3.8.0'
BANNER = """
__ __ _ ____ _____ _ _ ___
| \/ | ___ | |__/ ___|| ___|_ _| || | / _ \
| |\/| |/ _ \| '_ \___ \| |_ \ \ / / || |_| | | |
| | | | (_) | |_) |__) | _| \ V /|__ _| |_| |
|_| |_|\___/|_.__/____/|_| \_/ |_|(_)___/
__ __ _ ____ _____ _____ ___
| \/ | ___ | |__/ ___|| ___|_ _|___ / ( _ )
| |\/| |/ _ \| '_ \___ \| |_ \ \ / / |_ \ / _ \
| | | | (_) | |_) |__) | _| \ V / ___) | (_) |
|_| |_|\___/|_.__/____/|_| \_/ |____(_)___/
""" # noqa: W291
# ASCII Font: Standard

Expand Down
8 changes: 8 additions & 0 deletions mobsf/templates/dynamic_analysis/ios/dynamic_analysis.html
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,14 @@ <h4 class="modal-title">Create a Corellium iOS VM</h4>
instance_id: $('#ios_dynamic').val(),
},
success : function(json) {
if(!json.status){
stop_loader();
Swal.fire(
'Listing apps failed',
'VM is not ready',
'error'
)
}
if (json.status==='ok'){
$('#in_device').append('<thead><tr> <th>APP</th> <th>BUNDLE ID</th> <th>APP TYPE</th> <th>ACTION</th> </tr></thead><tbody></tbody>');
for(var i=0; i < json.message.length; i++) {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mobsf"
version = "4.0.0"
version = "3.8.0"
description = "Mobile Security Framework (MobSF) is an automated, all-in-one mobile application (Android/iOS/Windows) pen-testing, malware analysis and security assessment framework capable of performing static and dynamic analysis."
keywords = ["mobsf", "mobile security framework", "mobile security", "security tool", "static analysis", "dynamic analysis", "malware analysis"]
authors = ["Ajin Abraham <[email protected]>"]
Expand Down

0 comments on commit 4de9e5d

Please sign in to comment.