Skip to content

seynth/NavaInjector

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nava

Nava work against SEB 3.10.1

The goal of this script is to prevent SEB to start new obfuscated desktop and put in KIOSK mode. My method is to patch all necessary function with Harmony C#. You can see all that function inside NavaInjector/Milim/patch

performing wintab

Quick Usage

First download nava.exe, then run it as Administrator, but make sure to turn off Real-time Protection windows defender.

Wait until it say [Nava] Ready, then you can start your Safe Exam Browser by double click .seb file or from exercise/quiz provider. Dont close your terminal!. Hiding Taskbar can be done by go to Taskbar settings > Taskbar behaviors > Automatically hide the taskbar

Warning

Always close your SEB with bottom right power button on the taskbar provided by SEB.

ko-fi

Build from scratch

Requirement

Step 1 - Build the runner (Nava.dll)

Nava.dll is a payload that have init() function, this function act like DllMain. Init function executed automatically after injector inject this Nava.dll to both SafeExamBrowser.exe and SafeExamBrowser.Client.exe. The purpose of this dll to manipulate .NET CLR to call some function i've patched using Harmony C#. That's why this script will not change browser-exam-key and config-key-hash

git clone https://github.com/seynth/NavaInjector
cd NavaInjector\Nava
go build -o nava.dll --buildmode=c-shared

Step 2 - Build the payload (Milim.dll)

Milim.dll is a Harmony C# project that have all necessary modified function of Safe Exam Browser, when Milim.dll injected to parent and client process it will do the work like preventing to make obfuscated desktop, whitelisted all blacklisted software, unintercepted the keyboard, and more.

cd ..\Milim
dotnet build -c Debug -p:Platform=x64

Step 3 - Build the injector

The injector is entry point of this project. I embed Nava.dll and Milim.dll to this executable to make it standalone executable. Make sure to turn off Real-time Protection windows defender before build the executable

cd ..\injector
copy ..\Milim\bin\x64\Debug\Milim.dll .\
copy ..\Nava\nava.dll .\
go build -o nava_standalone.exe
# To build without a terminal window appearing, please use this command
go build -ldflags="-H windowsgui" -o nava_standalone.exe

Since there is no visible console output, please allow 30-60 seconds for Nava to initialize. When you're done you can kill Nava by opening Task Manager > Search nava_standalone > Right Click > End Task

About

Bypass KIOSK mode SEB at runtime and more

Topics

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors