Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
3.3Beta3 release
Browse files Browse the repository at this point in the history
  • Loading branch information
iadgovuser32 committed Feb 16, 2018
1 parent 2b37b7b commit 697737e
Show file tree
Hide file tree
Showing 1,258 changed files with 200,706 additions and 203,123 deletions.
45 changes: 45 additions & 0 deletions GM3/GrassMarlin.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
@ECHO OFF
IF [%1]==[-config] GOTO config
IF [%1]==[-help] GOTO help
IF [%1]==[--help] GOTO help
IF [%1]==[-?] GOTO help
IF [%1]==[/?] GOTO help


REM Launch GrassMarlin
IF "%1"=="" (
SET halfmem=4096
SET quartermem=2048
) ELSE (
SET /A halfmem=%1/2
SET /A quartermem=halfmem/2
)

java.exe -Dnio.mx=%quartermem%mb -Dnio.ms=512mb -server -d64 -Xms%halfmem%m -Xmx%halfmem%m -XX:+UseG1GC -XX:+DisableExplicitGC -XX:NewSize=%quartermem%m -XX:MaxGCPauseMillis=2000 -jar "%~dp0\GrassMarlin.jar" -ui SDI
GOTO end

:config
java.exe -version
java.exe -cp "%~dp0GrassMarlin.jar" util.SetConfiguration "-dGrassMarlin\appData=%~2"
GOTO end

:help
ECHO Usage: %0 (-config {AppData}|[{AvailableMemory}])
ECHO If the -config option is not present, GrassMarlin will be launched.
ECHO When the -config option is present, this will set per-machine config values.
ECHO
ECHO {AppData} - The Path to the AppData folder where data will be stored on the
ECHO local machine. This is not the path for user data, but rather for
ECHO system-level data.
ECHO {AvailableMemory} - The amount of total system memory, in megabytes. If not
ECHO specified, 8192 will be assumed. The options for the
ECHO Java Garbage Collector will be tuned to use half the total
ECHO system memory.
ECHO
ECHO
GOTO end

:end
IF ERRORLEVEL 1 (
PAUSE
)
Binary file removed GM3/Plugins/iadgov.csvimport.jar
Binary file not shown.
Binary file removed GM3/Plugins/iadgov.offlinepcap.jar
Binary file not shown.
Binary file removed GM3/Plugins/iadgov.svgexport.jar
Binary file not shown.
3 changes: 3 additions & 0 deletions GM3/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Several capabilities are disabled by default such as loading plugins and live capture
In order to enable these capabilities add the proper application flag/s to the end of the java execution line in the batch file.
The application flags are listed in VM Params.txt
24 changes: 24 additions & 0 deletions GM3/VM Params.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
== VM Arguments:
Basic Options:
-Dnio.mx=3gb -Dnio=512mb -server -d64 -Xms6g -Xmx6g -XX:+UseG1GC -XX:+DisableExplicitGC -XX:NewSize=3072m -XX:MaxGCPauseMillis=2000

Detailed UI Stuff:
-Dprism.verbose=true

== Application parameters:
Enable Develiper Menus:
-iacceptallresponsibilityforwhatiamabouttodo

Set UI Mode:
-ui (DIAGNOSTIC|CONSOLE|SDI)
CONFIGURATION option is not implemented yet, but will be.

Application Flags (disabled unless explicitly enabled):
-allowPlugins
-allowActiveScanning
-allowLivePcap


Dev SDI:
-Dprism.verbose=true -Dnio.mx=3gb -Dnio=512mb -server -d64 -Xms6g -Xmx6g -XX:+UseG1GC -XX:+DisableExplicitGC -XX:NewSize=3072m -XX:MaxGCPauseMillis=2000
-ui SDI -iacceptallresponsibilityforwhatiamabouttodo
569 changes: 279 additions & 290 deletions GM3/build-ant.xml

Large diffs are not rendered by default.

Binary file removed GM3/data/GrassMarlin.ico
Binary file not shown.
Loading

0 comments on commit 697737e

Please sign in to comment.