├── LICENSE ├── README.md ├── lokix-banner.png ├── screenshots-demo.gif ├── screenshots-download.gif ├── screenshots-execute.gif ├── screenshots-update.gif └── source ├── README.md ├── agent └── lokix-agent │ ├── LokiXAgent │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── LokiXAgent.csproj │ ├── LokiXAgent.csproj.user │ ├── LokiXAgent.sln │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── app.config │ ├── app.manifest │ ├── bin │ │ └── Release │ │ │ └── agent.exe │ ├── lokixicon.ico │ └── obj │ │ ├── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LokiXAgent.Form1.resources │ │ ├── LokiXAgent.Properties.Resources.resources │ │ ├── LokiXAgent.csproj.CoreCompileInputs.cache │ │ ├── LokiXAgent.csproj.FileListAbsolute.txt │ │ ├── LokiXAgent.csproj.GenerateResource.cache │ │ ├── LokiXAgent.csprojAssemblyReference.cache │ │ ├── LokiXAgent.exe │ │ ├── LokiXAgent.pdb │ │ └── TempPE │ │ │ └── Properties.Resources.Designer.cs.dll │ │ └── Release │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LokiXAgent.Form1.resources │ │ ├── LokiXAgent.Properties.Resources.resources │ │ ├── LokiXAgent.csproj.CoreCompileInputs.cache │ │ ├── LokiXAgent.csproj.FileListAbsolute.txt │ │ ├── LokiXAgent.csproj.GenerateResource.cache │ │ ├── LokiXAgent.csprojAssemblyReference.cache │ │ ├── LokiXAgent.exe │ │ ├── LokiXAgent.pdb │ │ └── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ └── lokixicon.ico ├── backend └── lokix-be │ ├── README.md │ ├── app │ ├── Console │ │ └── Kernel.php │ ├── Endpoint.php │ ├── Exceptions │ │ └── Handler.php │ ├── FailureMessage.php │ ├── Http │ │ ├── Controllers │ │ │ ├── AgentActionController.php │ │ │ ├── AgentController.php │ │ │ ├── Auth │ │ │ │ ├── ConfirmPasswordController.php │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ ├── RegisterController.php │ │ │ │ ├── ResetPasswordController.php │ │ │ │ └── VerificationController.php │ │ │ ├── Controller.php │ │ │ ├── DashboardController.php │ │ │ ├── ResultsController.php │ │ │ ├── ScansController.php │ │ │ ├── UserController.php │ │ │ ├── UserMgmtController.php │ │ │ └── UserProfileController.php │ │ ├── Kernel.php │ │ └── Middleware │ │ │ ├── Authenticate.php │ │ │ ├── CheckForMaintenanceMode.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ ├── TrimStrings.php │ │ │ ├── TrustHosts.php │ │ │ ├── TrustProxies.php │ │ │ └── VerifyCsrfToken.php │ ├── Loki.php │ ├── Providers │ │ ├── AppServiceProvider.php │ │ ├── AuthServiceProvider.php │ │ ├── BroadcastServiceProvider.php │ │ ├── EventServiceProvider.php │ │ └── RouteServiceProvider.php │ ├── Result.php │ ├── Scan.php │ └── User.php │ ├── artisan │ ├── bootstrap │ ├── app.php │ └── cache │ │ ├── packages.php │ │ └── services.php │ ├── composer.json │ ├── composer.lock │ ├── config │ ├── app.php │ ├── auth.php │ ├── broadcasting.php │ ├── cache.php │ ├── cors.php │ ├── database.php │ ├── filesystems.php │ ├── flare.php │ ├── hashing.php │ ├── ignition.php │ ├── logging.php │ ├── mail.php │ ├── queue.php │ ├── sanctum.php │ ├── services.php │ ├── session.php │ ├── tinker.php │ ├── trustedproxy.php │ └── view.php │ ├── database │ ├── factories │ │ └── UserFactory.php │ ├── migrations │ │ ├── 2014_10_12_000000_create_users_table.php │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ ├── 2019_08_19_000000_create_failed_jobs_table.php │ │ ├── 2019_12_14_000001_create_personal_access_tokens_table.php │ │ ├── 2020_07_29_013203_create_endpoints_table.php │ │ ├── 2020_07_29_013600_create_scans_table.php │ │ ├── 2020_07_29_013754_create_failure_messages_table.php │ │ ├── 2020_07_29_013858_create_results_table.php │ │ └── 2020_07_29_013935_create_lokis_table.php │ └── seeds │ │ └── DatabaseSeeder.php │ ├── env.file │ ├── package.json │ ├── phpunit.xml │ ├── public │ ├── index.php │ ├── robots.txt │ └── web.config │ ├── resources │ ├── js │ │ ├── app.js │ │ └── bootstrap.js │ ├── lang │ │ └── en │ │ │ ├── auth.php │ │ │ ├── pagination.php │ │ │ ├── passwords.php │ │ │ └── validation.php │ ├── sass │ │ └── app.scss │ └── views │ │ └── vendor │ │ └── mail │ │ ├── html │ │ ├── button.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── panel.blade.php │ │ └── subcopy.blade.php │ │ └── text │ │ ├── button.blade.php │ │ ├── footer.blade.php │ │ ├── header.blade.php │ │ ├── layout.blade.php │ │ ├── message.blade.php │ │ ├── panel.blade.php │ │ ├── subcopy.blade.php │ │ └── table.blade.php │ ├── routes │ ├── api.php │ ├── channels.php │ ├── console.php │ └── web.php │ ├── server.php │ ├── storage │ ├── README.md │ ├── app │ │ ├── README.md │ │ ├── agent.exe │ │ ├── loki.tar.gz │ │ ├── loki │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── config │ │ │ │ └── excludes.cfg │ │ │ ├── docs │ │ │ │ ├── LICENSE-PE-Sieve │ │ │ │ └── LICENSE-doublepulsarcheck │ │ │ ├── lib │ │ │ │ ├── __init__.pyc │ │ │ │ ├── doublepulsar.py │ │ │ │ ├── helpers.py │ │ │ │ ├── helpers.pyc │ │ │ │ ├── levenshtein.py │ │ │ │ ├── lokilogger.py │ │ │ │ ├── lokilogger.pyc │ │ │ │ ├── pesieve.py │ │ │ │ ├── pluginframework.py │ │ │ │ └── privrules.py │ │ │ ├── loki-upgrader.exe │ │ │ ├── loki-upgrader.py │ │ │ ├── loki.exe │ │ │ ├── plugins │ │ │ │ └── loki-plugin-wmi.py │ │ │ ├── requirements.txt │ │ │ └── tools │ │ │ │ ├── pe-sieve32.exe │ │ │ │ └── pe-sieve64.exe │ │ └── loki_update.py │ ├── framework │ │ ├── cache │ │ │ └── data │ │ │ │ ├── 16 │ │ │ │ └── 08 │ │ │ │ │ └── 16084301b08d944477b5882b40ce833fa2507ec4 │ │ │ │ ├── 44 │ │ │ │ └── d1 │ │ │ │ │ └── 44d142505dd1a3b497197e2f459d2aec779e9ed6 │ │ │ │ ├── 53 │ │ │ │ └── c9 │ │ │ │ │ └── 53c9aae19ee1f0e0dcfa738e8868c6cb1d775cac │ │ │ │ ├── 76 │ │ │ │ └── e7 │ │ │ │ │ └── 76e7c0fdd0cc0d46502f9d381b947cdf6aa69891 │ │ │ │ ├── 9c │ │ │ │ └── 1c │ │ │ │ │ └── 9c1c01dc3ac1445a500251fc34a15d3e75a849df │ │ │ │ ├── c2 │ │ │ │ └── 4f │ │ │ │ │ └── c24f92750673b2169c8cb7bfbc999cfa8457dc7c │ │ │ │ ├── f4 │ │ │ │ └── f5 │ │ │ │ │ └── f4f59e822581d785ba910fbf3f268eca79db8204 │ │ │ │ └── fe │ │ │ │ └── 38 │ │ │ │ └── fe387513e8ce24f4bcf31fd9327f5e46a97fa12a │ │ ├── sessions │ │ │ └── session │ │ └── views │ │ │ ├── 73836c6f857d2b82283e1fd11971c9fc00fc8709.php │ │ │ └── ab5bf13ffb710d51c6b487fb8946daedcf969741.php │ └── logs │ │ └── laravel.log │ ├── tests │ ├── CreatesApplication.php │ ├── Feature │ │ └── ExampleTest.php │ ├── TestCase.php │ └── Unit │ │ └── ExampleTest.php │ └── webpack.mix.js ├── frontend └── lokix-fe │ ├── README.md │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ ├── favicon.png │ └── index.html │ └── src │ ├── App.vue │ ├── api.js │ ├── assets │ ├── img │ │ ├── apple-icon.png │ │ ├── favicon.png │ │ ├── lokix-logo.png │ │ ├── mask.png │ │ ├── side-bg.jpg │ │ ├── side-bg2.jpg │ │ └── vue-logo.png │ └── scss │ │ ├── material-dashboard.scss │ │ └── md │ │ ├── _alerts.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _chartist.scss │ │ ├── _checkboxes.scss │ │ ├── _colors.scss │ │ ├── _dialogs.scss │ │ ├── _dropdown.scss │ │ ├── _fixed-plugin.scss │ │ ├── _footers.scss │ │ ├── _forms.scss │ │ ├── _inputs-size.scss │ │ ├── _inputs.scss │ │ ├── _layout.scss │ │ ├── _misc.scss │ │ ├── _mixins.scss │ │ ├── _navbars.scss │ │ ├── _pagination.scss │ │ ├── _pills.scss │ │ ├── _popups.scss │ │ ├── _responsive.scss │ │ ├── _ripples.scss │ │ ├── _shadows.scss │ │ ├── _sidebar-and-main-panel.scss │ │ ├── _tables.scss │ │ ├── _tabs.scss │ │ ├── _togglebutton.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ ├── mixins │ │ ├── _chartist.scss │ │ ├── _transparency.scss │ │ └── _vendor-prefixes.scss │ │ └── plugins │ │ └── _perfect-scrollbar.scss │ ├── components │ ├── Cards │ │ └── StatsCard.vue │ ├── Dropdown.vue │ ├── NotificationPlugin │ │ ├── Notification.vue │ │ ├── Notifications.vue │ │ └── index.js │ ├── SidebarPlugin │ │ ├── SideBar.vue │ │ ├── SidebarLink.vue │ │ └── index.js │ ├── Tables │ │ ├── FailedTable.vue │ │ ├── ProgressTable.vue │ │ ├── ResultsTable.vue │ │ ├── TopTenTable.vue │ │ └── UsersTable.vue │ └── index.js │ ├── globalComponents.js │ ├── globalDirectives.js │ ├── main.js │ ├── material-dashboard.js │ ├── pages │ ├── Completed.vue │ ├── Dashboard.vue │ ├── DeployAgent.vue │ ├── Failed.vue │ ├── Layout │ │ ├── Content.vue │ │ ├── ContentFooter.vue │ │ ├── DashboardLayout.vue │ │ ├── MobileMenu.vue │ │ └── TopNavbar.vue │ ├── Login.vue │ ├── Logout.vue │ ├── Progress.vue │ ├── Results.vue │ ├── UpdateAgent.vue │ ├── UserManagement.vue │ ├── UserProfile.vue │ └── index.js │ └── routes │ └── routes.js └── icons ├── lokix-banner.png ├── lokixicon.ico ├── lokixicon.jpg └── lokixicon.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/README.md -------------------------------------------------------------------------------- /lokix-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/lokix-banner.png -------------------------------------------------------------------------------- /screenshots-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/screenshots-demo.gif -------------------------------------------------------------------------------- /screenshots-download.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/screenshots-download.gif -------------------------------------------------------------------------------- /screenshots-execute.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/screenshots-execute.gif -------------------------------------------------------------------------------- /screenshots-update.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/screenshots-update.gif -------------------------------------------------------------------------------- /source/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Form1.Designer.cs -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Form1.cs -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Form1.resx -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/LokiXAgent.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/LokiXAgent.csproj -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/LokiXAgent.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/LokiXAgent.csproj.user -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/LokiXAgent.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/LokiXAgent.sln -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Program.cs -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Properties/Resources.resx -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/Properties/Settings.settings -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/app.config -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/app.manifest -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/bin/Release/agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/bin/Release/agent.exe -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/lokixicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/lokixicon.ico -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.Form1.resources -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.Properties.Resources.resources -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0663c69924a67ad9c25961eac5242f8bf53526ce 2 | -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.exe -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/LokiXAgent.pdb -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.Form1.resources -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.Properties.Resources.resources -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 55f33c18e2317ad84b8497682c85ceb455bb4d5d 2 | -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.exe -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/LokiXAgent.pdb -------------------------------------------------------------------------------- /source/agent/lokix-agent/LokiXAgent/obj/Release/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/LokiXAgent/obj/Release/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /source/agent/lokix-agent/lokixicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/agent/lokix-agent/lokixicon.ico -------------------------------------------------------------------------------- /source/backend/lokix-be/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Console/Kernel.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Endpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Endpoint.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/FailureMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/FailureMessage.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/AgentActionController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/AgentActionController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/AgentController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/AgentController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/Auth/ConfirmPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/Auth/ConfirmPasswordController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/Controller.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/DashboardController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/DashboardController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/ResultsController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/ResultsController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/ScansController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/ScansController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/UserMgmtController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/UserMgmtController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Controllers/UserProfileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Controllers/UserProfileController.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Kernel.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Middleware/TrustHosts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Middleware/TrustHosts.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Loki.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Loki.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Result.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/Scan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/Scan.php -------------------------------------------------------------------------------- /source/backend/lokix-be/app/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/app/User.php -------------------------------------------------------------------------------- /source/backend/lokix-be/artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/artisan -------------------------------------------------------------------------------- /source/backend/lokix-be/bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/bootstrap/app.php -------------------------------------------------------------------------------- /source/backend/lokix-be/bootstrap/cache/packages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/bootstrap/cache/packages.php -------------------------------------------------------------------------------- /source/backend/lokix-be/bootstrap/cache/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/bootstrap/cache/services.php -------------------------------------------------------------------------------- /source/backend/lokix-be/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/composer.json -------------------------------------------------------------------------------- /source/backend/lokix-be/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/composer.lock -------------------------------------------------------------------------------- /source/backend/lokix-be/config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/app.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/auth.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/broadcasting.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/cache.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/cors.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/cors.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/database.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/filesystems.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/flare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/flare.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/hashing.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/ignition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/ignition.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/logging.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/mail.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/queue.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/sanctum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/sanctum.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/services.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/session.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/tinker.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/trustedproxy.php -------------------------------------------------------------------------------- /source/backend/lokix-be/config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/config/view.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/factories/UserFactory.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2014_10_12_000000_create_users_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2014_10_12_100000_create_password_resets_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2014_10_12_100000_create_password_resets_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2019_08_19_000000_create_failed_jobs_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2019_08_19_000000_create_failed_jobs_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2019_12_14_000001_create_personal_access_tokens_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2020_07_29_013203_create_endpoints_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2020_07_29_013203_create_endpoints_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2020_07_29_013600_create_scans_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2020_07_29_013600_create_scans_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2020_07_29_013754_create_failure_messages_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2020_07_29_013754_create_failure_messages_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2020_07_29_013858_create_results_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2020_07_29_013858_create_results_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/migrations/2020_07_29_013935_create_lokis_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/migrations/2020_07_29_013935_create_lokis_table.php -------------------------------------------------------------------------------- /source/backend/lokix-be/database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /source/backend/lokix-be/env.file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/env.file -------------------------------------------------------------------------------- /source/backend/lokix-be/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/package.json -------------------------------------------------------------------------------- /source/backend/lokix-be/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/phpunit.xml -------------------------------------------------------------------------------- /source/backend/lokix-be/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/public/index.php -------------------------------------------------------------------------------- /source/backend/lokix-be/public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /source/backend/lokix-be/public/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/public/web.config -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/js/app.js: -------------------------------------------------------------------------------- 1 | require('./bootstrap'); 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/js/bootstrap.js -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/lang/en/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/lang/en/auth.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/lang/en/pagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/lang/en/pagination.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/lang/en/passwords.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/lang/en/passwords.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/lang/en/validation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/lang/en/validation.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/sass/app.scss: -------------------------------------------------------------------------------- 1 | // 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/html/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/html/button.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/html/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/html/header.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/html/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/html/layout.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/html/panel.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/html/panel.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/html/subcopy.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/html/subcopy.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/text/button.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/text/button.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/text/footer.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/text/header.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/text/header.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/text/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/text/layout.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/text/message.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/resources/views/vendor/mail/text/message.blade.php -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/text/panel.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/text/subcopy.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/resources/views/vendor/mail/text/table.blade.php: -------------------------------------------------------------------------------- 1 | {{ $slot }} 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/routes/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/routes/api.php -------------------------------------------------------------------------------- /source/backend/lokix-be/routes/channels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/routes/channels.php -------------------------------------------------------------------------------- /source/backend/lokix-be/routes/console.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/routes/console.php -------------------------------------------------------------------------------- /source/backend/lokix-be/routes/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/routes/web.php -------------------------------------------------------------------------------- /source/backend/lokix-be/server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/server.php -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/agent.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/agent.exe -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki.tar.gz -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/LICENSE -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/README.md -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/config/excludes.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/config/excludes.cfg -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/docs/LICENSE-PE-Sieve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/docs/LICENSE-PE-Sieve -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/docs/LICENSE-doublepulsarcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/docs/LICENSE-doublepulsarcheck -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/__init__.pyc -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/doublepulsar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/doublepulsar.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/helpers.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/helpers.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/helpers.pyc -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/levenshtein.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/levenshtein.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/lokilogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/lokilogger.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/lokilogger.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/lokilogger.pyc -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/pesieve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/pesieve.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/pluginframework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/pluginframework.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/lib/privrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/lib/privrules.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/loki-upgrader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/loki-upgrader.exe -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/loki-upgrader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/loki-upgrader.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/loki.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/loki.exe -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/plugins/loki-plugin-wmi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/plugins/loki-plugin-wmi.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/requirements.txt: -------------------------------------------------------------------------------- 1 | netaddr 2 | psutil 3 | pylzma 4 | yara-python 5 | -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/tools/pe-sieve32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/tools/pe-sieve32.exe -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki/tools/pe-sieve64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki/tools/pe-sieve64.exe -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/app/loki_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/app/loki_update.py -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/cache/data/16/08/16084301b08d944477b5882b40ce833fa2507ec4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/framework/cache/data/16/08/16084301b08d944477b5882b40ce833fa2507ec4 -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/cache/data/44/d1/44d142505dd1a3b497197e2f459d2aec779e9ed6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/framework/cache/data/44/d1/44d142505dd1a3b497197e2f459d2aec779e9ed6 -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/cache/data/53/c9/53c9aae19ee1f0e0dcfa738e8868c6cb1d775cac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/framework/cache/data/53/c9/53c9aae19ee1f0e0dcfa738e8868c6cb1d775cac -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/cache/data/76/e7/76e7c0fdd0cc0d46502f9d381b947cdf6aa69891: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/framework/cache/data/76/e7/76e7c0fdd0cc0d46502f9d381b947cdf6aa69891 -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/cache/data/9c/1c/9c1c01dc3ac1445a500251fc34a15d3e75a849df: -------------------------------------------------------------------------------- 1 | 1596619023i:20; -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/cache/data/c2/4f/c24f92750673b2169c8cb7bfbc999cfa8457dc7c: -------------------------------------------------------------------------------- 1 | 1596619064i:1; -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/cache/data/f4/f5/f4f59e822581d785ba910fbf3f268eca79db8204: -------------------------------------------------------------------------------- 1 | 1596235861i:22; -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/cache/data/fe/38/fe387513e8ce24f4bcf31fd9327f5e46a97fa12a: -------------------------------------------------------------------------------- 1 | 1596497336i:2; -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/sessions/session: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/views/73836c6f857d2b82283e1fd11971c9fc00fc8709.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/framework/views/73836c6f857d2b82283e1fd11971c9fc00fc8709.php -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/framework/views/ab5bf13ffb710d51c6b487fb8946daedcf969741.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/storage/framework/views/ab5bf13ffb710d51c6b487fb8946daedcf969741.php -------------------------------------------------------------------------------- /source/backend/lokix-be/storage/logs/laravel.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/backend/lokix-be/tests/CreatesApplication.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/tests/CreatesApplication.php -------------------------------------------------------------------------------- /source/backend/lokix-be/tests/Feature/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/tests/Feature/ExampleTest.php -------------------------------------------------------------------------------- /source/backend/lokix-be/tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/tests/TestCase.php -------------------------------------------------------------------------------- /source/backend/lokix-be/tests/Unit/ExampleTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/tests/Unit/ExampleTest.php -------------------------------------------------------------------------------- /source/backend/lokix-be/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/backend/lokix-be/webpack.mix.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /source/frontend/lokix-fe/babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ["@vue/app"] 3 | }; 4 | -------------------------------------------------------------------------------- /source/frontend/lokix-fe/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/package-lock.json -------------------------------------------------------------------------------- /source/frontend/lokix-fe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/package.json -------------------------------------------------------------------------------- /source/frontend/lokix-fe/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/postcss.config.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/public/favicon.png -------------------------------------------------------------------------------- /source/frontend/lokix-fe/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/public/index.html -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/App.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/api.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/img/apple-icon.png -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/img/favicon.png -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/img/lokix-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/img/lokix-logo.png -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/img/mask.png -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/img/side-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/img/side-bg.jpg -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/img/side-bg2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/img/side-bg2.jpg -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/img/vue-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/img/vue-logo.png -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/material-dashboard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/material-dashboard.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_alerts.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_buttons.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_cards.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_chartist.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_checkboxes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_checkboxes.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_colors.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_colors.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_dialogs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_dialogs.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_dropdown.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_fixed-plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_fixed-plugin.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_footers.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_forms.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_inputs-size.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_inputs-size.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_inputs.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_layout.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_misc.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_mixins.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_navbars.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_pagination.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_pills.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_pills.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_popups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_popups.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_responsive.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_ripples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_ripples.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_shadows.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_shadows.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_sidebar-and-main-panel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_sidebar-and-main-panel.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_tables.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_tabs.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_togglebutton.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_togglebutton.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_typography.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/_variables.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/mixins/_chartist.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/mixins/_chartist.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/mixins/_transparency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/mixins/_transparency.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/assets/scss/md/plugins/_perfect-scrollbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/assets/scss/md/plugins/_perfect-scrollbar.scss -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/Cards/StatsCard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/Cards/StatsCard.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/Dropdown.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/Dropdown.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/NotificationPlugin/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/NotificationPlugin/Notification.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/NotificationPlugin/Notifications.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/NotificationPlugin/Notifications.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/NotificationPlugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/NotificationPlugin/index.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/SidebarPlugin/SideBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/SidebarPlugin/SideBar.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/SidebarPlugin/SidebarLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/SidebarPlugin/SidebarLink.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/SidebarPlugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/SidebarPlugin/index.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/Tables/FailedTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/Tables/FailedTable.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/Tables/ProgressTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/Tables/ProgressTable.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/Tables/ResultsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/Tables/ResultsTable.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/Tables/TopTenTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/Tables/TopTenTable.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/Tables/UsersTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/Tables/UsersTable.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/components/index.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/globalComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/globalComponents.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/globalDirectives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/globalDirectives.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/main.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/material-dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/material-dashboard.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Completed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Completed.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Dashboard.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/DeployAgent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/DeployAgent.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Failed.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Failed.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Layout/Content.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Layout/Content.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Layout/ContentFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Layout/ContentFooter.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Layout/DashboardLayout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Layout/DashboardLayout.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Layout/MobileMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Layout/MobileMenu.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Layout/TopNavbar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Layout/TopNavbar.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Login.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Login.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Logout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Logout.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Progress.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Progress.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/Results.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/Results.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/UpdateAgent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/UpdateAgent.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/UserManagement.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/UserManagement.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/UserProfile.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/UserProfile.vue -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/pages/index.js -------------------------------------------------------------------------------- /source/frontend/lokix-fe/src/routes/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/frontend/lokix-fe/src/routes/routes.js -------------------------------------------------------------------------------- /source/icons/lokix-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/icons/lokix-banner.png -------------------------------------------------------------------------------- /source/icons/lokixicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/icons/lokixicon.ico -------------------------------------------------------------------------------- /source/icons/lokixicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/icons/lokixicon.jpg -------------------------------------------------------------------------------- /source/icons/lokixicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alph4w0lf/LokiX/HEAD/source/icons/lokixicon.png --------------------------------------------------------------------------------