{"id":33967495,"url":"https://github.com/ndum/laravel-seb","last_synced_at":"2025-12-12T23:48:59.377Z","repository":{"id":43465688,"uuid":"418183658","full_name":"ndum/laravel-seb","owner":"ndum","description":"Laravel Package for generating encrypted SEB (Safe Exam Browser) exam configurations","archived":false,"fork":false,"pushed_at":"2025-04-28T14:32:26.000Z","size":23,"stargazers_count":3,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-11-10T16:41:21.754Z","etag":null,"topics":["encryption","exams","laravel","pbkdf2","php80","safeexambrowser","seb"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ndum.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-10-17T16:06:36.000Z","updated_at":"2025-06-01T15:19:07.000Z","dependencies_parsed_at":"2024-05-15T13:27:01.201Z","dependency_job_id":null,"html_url":"https://github.com/ndum/laravel-seb","commit_stats":{"total_commits":8,"total_committers":2,"mean_commits":4.0,"dds":0.375,"last_synced_commit":"a427072905e478634492d4c7ba79073967fa6f37"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/ndum/laravel-seb","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndum%2Flaravel-seb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndum%2Flaravel-seb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndum%2Flaravel-seb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndum%2Flaravel-seb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ndum","download_url":"https://codeload.github.com/ndum/laravel-seb/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ndum%2Flaravel-seb/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27695524,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-12T02:00:06.775Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["encryption","exams","laravel","pbkdf2","php80","safeexambrowser","seb"],"created_at":"2025-12-12T23:48:58.827Z","updated_at":"2025-12-12T23:48:59.368Z","avatar_url":"https://github.com/ndum.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# laravel-seb\n\nThis Laravel-Package provides the possibility to generate encrypted [SEB](https://safeexambrowser.org/news_de.html) (Safe Exam Browser) configurations.\nits mainly used to generate automatic seb-exams configurations with secure defaults options.\n\n## Requirements\nLaravel 8 or newer with php8 and enabled ext-openssl, ext-zlib\n\n## Limititations\nIts can only be used for password-encrypted exams (client-configurations currently are not supported)\n\n## Installation\nInstall via Composer.\n\n```bash\n$ composer require ndum/laravel-seb\n```\n\n## Examples\n\n**_NOTE:_** For production - Please use secure passwords and a secure seb-config!\n\n### Parameters\n\n```\n$sebConfig = seb-config as json-array (show examples/example_seb_config.json)\n$startPassword = encryption-password as string\n$quitPassword = close-password as string\n$adminPassword = admin-password as string\n```\n\n##### Traditionally:\n\n```php\nuse Ndum\\Laravel\\SebConfigGenerator;\nuse Storage;\n\n$config = Storage::disk('local')-\u003eget('/examples/example_seb_config.json'); // just as example...\n$startPassword = 'test';\n$quitPassword = 'test';\n$adminPassword = 'test';\n\n$sebConfig = json_decode($config, true);\n\n$generator = new SebConfigGenerator();\n$encryptedSebConfig = $generator-\u003ecreateSebConfig($sebConfig, $startPassword, $quitPassword, $adminPassword);\ndd($encryptedSebConfig);\n```\n\n##### Facade:\n\n```php\nuse Ndum\\Laravel\\Facades\\SebConfigGenerator;\nuse Storage;\n\n$config = Storage::disk('local')-\u003eget('/examples/example_seb_config.json'); // just as example...\n$startPassword = 'test';\n$quitPassword = 'test';\n$adminPassword = 'test';\n\n$sebConfig = json_decode($config, true);\n\n$encryptedSebConfig = SebConfigGenerator::createSebConfig($sebConfig, $startPassword, $quitPassword, $adminPassword);\ndd($encryptedSebConfig);\n```\n\n## Issues / Contributions\nDirectly via [GitHub](https://github.com/ndum/laravel-seb/issues)\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE-File](LICENSE) for details\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fndum%2Flaravel-seb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fndum%2Flaravel-seb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fndum%2Flaravel-seb/lists"}