{"id":13462258,"url":"https://github.com/secusu/secusu","last_synced_at":"2025-12-13T04:00:44.671Z","repository":{"id":37588157,"uuid":"54470288","full_name":"secusu/secusu","owner":"secusu","description":"SЁCU is a public API to store self-destructing data payloads with url shortener and handle anonymous chat-rooms.","archived":false,"fork":false,"pushed_at":"2023-04-19T21:15:46.000Z","size":585,"stargazers_count":32,"open_issues_count":14,"forks_count":11,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-10-29T11:10:59.483Z","etag":null,"topics":["application","cybercog","decrypt","destructing-data-payloads","encrypt","messenger","package","privacy","secu","security","stanford-javascript-crypto","url-shortener"],"latest_commit_sha":null,"homepage":"https://secu.su","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/secusu.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2016-03-22T11:38:57.000Z","updated_at":"2024-05-13T01:23:29.000Z","dependencies_parsed_at":"2024-01-13T10:43:15.389Z","dependency_job_id":"d0efbeb8-d05a-4e2c-8a97-059f0ba104a4","html_url":"https://github.com/secusu/secusu","commit_stats":{"total_commits":51,"total_committers":4,"mean_commits":12.75,"dds":"0.17647058823529416","last_synced_commit":"3bd5be2cecff43966d12b63ef440c4f38ebd8fac"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/secusu%2Fsecusu","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/secusu%2Fsecusu/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/secusu%2Fsecusu/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/secusu%2Fsecusu/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/secusu","download_url":"https://codeload.github.com/secusu/secusu/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245382116,"owners_count":20606157,"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","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":["application","cybercog","decrypt","destructing-data-payloads","encrypt","messenger","package","privacy","secu","security","stanford-javascript-crypto","url-shortener"],"created_at":"2024-07-31T12:00:43.153Z","updated_at":"2025-12-13T04:00:39.511Z","avatar_url":"https://github.com/secusu.png","language":"PHP","readme":"# SЁCU\n\n\u003cp align=\"center\"\u003e\n\u003cimg src=\"https://user-images.githubusercontent.com/1849174/72083735-5dd72f00-3313-11ea-9ea1-1a5b57548232.png\"\u003e\n\u003c/p\u003e\n\n[![Discord](https://img.shields.io/static/v1?logo=discord\u0026label=\u0026message=Discord\u0026color=36393f\u0026style=flat-square)](https://discord.gg/rYkeBjp)\n[![Build Status](https://travis-ci.org/secusu/secusu.svg)](https://travis-ci.org/secusu/secusu)\n[![Latest Stable Version](https://poser.pugx.org/secu/secu/version)](https://packagist.org/packages/secu/secu)\n[![License](https://poser.pugx.org/secu/secu/license)](https://github.com/secusu/secusu/blob/master/LICENSE)\n\n## Introduction\n\n[SЁCU](https://secu.su/) is a public API to store self-destructing data payloads.\nThis repository includes only backend part using Laravel framework.\n\nFrontend could be found in [SЁCU web application repository](https://github.com/secusu/web-app).\n\n## Contents\n\n- [Features](#features)\n- [Configuration](#configuration)\n- [Installation](#installation)\n- [Changelog](#changelog)\n- [Contributing](#contributing)\n- [Testing](#testing)\n- [Security](#security)\n- [Contributors](#contributors)\n- [License](#license)\n- [About CyberCog](#about-cybercog)\n\n## Features\n\n- Uses only free open source libraries\n- Uses [Stanford Javascript Crypto Library](https://github.com/bitwiseshiftleft/sjcl)\n- Send password protected self-destructing data packages\n- Real-time encrypted chat server on node.js\n- Telegram bot for generate SЁCU records right from the Telegram\n- Following PHP Standard Recommendations:\n  - [PSR-1 (Basic Coding Standard)](http://www.php-fig.org/psr/psr-1/)\n  - [PSR-2 (Coding Style Guide)](http://www.php-fig.org/psr/psr-2/)\n  - [PSR-4 (Autoloading Standard)](http://www.php-fig.org/psr/psr-4/)\n- Covered with unit tests\n\n## Configuration\n\nCreate environment configuration file from example\n\n```sh\n$ cp .env.example .env\n```\n\nSpecify your environment parameters in `.env` file \n\n```\n$ vi .env\n```\n\n## Installation\n\nInstall PHP dependencies\n\n```sh\n$ composer install\n```\n\nGenerate application secret key\n\n```sh\n$ php artisan key:generate\n```\n\nPerform database migrations\n\n```sh\n$ php artisan migrate\n```\n\nIf you need to run node.js chat server install JavaScript dependencies\n\n```sh\n$ npm install\n```\n\n### Add CRON entry to your OS\n\n```\n* * * * * php /path/to/secu/artisan schedule:run \u003e\u003e /dev/null 2\u003e\u00261\n```\n\nThis will run schedule commands every minute. Schedule will delete outdated records.\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease refer to [CONTRIBUTING.md](https://github.com/secusu/secusu/blob/master/CONTRIBUTING.md) for information on how to contribute to SЁCU and its related projects.\n\n## Testing\n\nRun the tests with:\n\n```sh\n$ vendor/bin/phpunit\n```\n\n## Security\n\nIf you discover any security related issues, please email open@cybercog.su instead of using the issue tracker.\n\n## Contributors\n\n| \u003ca href=\"https://github.com/antonkomarev\"\u003e![@antonkomarev](https://avatars.githubusercontent.com/u/1849174?s=110)\u003cbr /\u003eAnton Komarev\u003c/a\u003e |  \n| :---: |\n\n[SЁCU contributors list](../../contributors)\n\n## License\n\nThe SЁCU application is an open-sourced software licensed under the [BSD 3-Clause License](https://opensource.org/licenses/BSD-3-Clause).\n\n## About CyberCog\n\n[CyberCog](https://cybercog.su) is a Social Unity of enthusiasts. Research best solutions in product \u0026 software development is our passion.\n\n- [Follow us on Twitter](https://twitter.com/cybercog)\n- [Read our articles on Medium](https://medium.com/cybercog)\n\n\u003ca href=\"https://cybercog.su\"\u003e\u003cimg src=\"https://cloud.githubusercontent.com/assets/1849174/18418932/e9edb390-7860-11e6-8a43-aa3fad524664.png\" alt=\"CyberCog\"\u003e\u003c/a\u003e\n","funding_links":[],"categories":["Laravel"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsecusu%2Fsecusu","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsecusu%2Fsecusu","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsecusu%2Fsecusu/lists"}