{"id":20273593,"url":"https://github.com/astropilot/sn-attack-simulation","last_synced_at":"2026-03-19T15:02:28.082Z","repository":{"id":91469955,"uuid":"264690121","full_name":"Astropilot/SN-Attack-Simulation","owner":"Astropilot","description":"Dictionary attack simulation","archived":false,"fork":false,"pushed_at":"2020-05-18T09:29:46.000Z","size":1343,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-03T21:29:35.389Z","etag":null,"topics":["bruteforce-attacks","cybersecurity","school-project","simulation"],"latest_commit_sha":null,"homepage":"https://simu.codexus.fr/","language":"HTML","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/Astropilot.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":"2020-05-17T14:51:13.000Z","updated_at":"2023-10-10T16:05:39.000Z","dependencies_parsed_at":"2023-07-17T20:21:11.896Z","dependency_job_id":null,"html_url":"https://github.com/Astropilot/SN-Attack-Simulation","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/Astropilot/SN-Attack-Simulation","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astropilot%2FSN-Attack-Simulation","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astropilot%2FSN-Attack-Simulation/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astropilot%2FSN-Attack-Simulation/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astropilot%2FSN-Attack-Simulation/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Astropilot","download_url":"https://codeload.github.com/Astropilot/SN-Attack-Simulation/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Astropilot%2FSN-Attack-Simulation/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30209086,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-07T05:23:27.321Z","status":"ssl_error","status_checked_at":"2026-03-07T05:00:17.256Z","response_time":53,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["bruteforce-attacks","cybersecurity","school-project","simulation"],"created_at":"2024-11-14T12:49:33.675Z","updated_at":"2026-03-07T06:31:59.048Z","avatar_url":"https://github.com/Astropilot.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003e\n  \u003cbr\u003e\n  Dictionary attack simulation\n\u003c/h1\u003e\n\n\u003ch4 align=\"center\"\u003e\nA school project to simulate a cyber-attack and the response to it\u003c/h4\u003e\n\n\u003cp align=\"center\"\n  \u003cimg src=\"https://img.shields.io/badge/Made%20with-%E2%9D%A4%EF%B8%8F-yellow.svg\"\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"#about\"\u003eAbout\u003c/a\u003e •\n  \u003ca href=\"#getting-started\"\u003eGetting Started\u003c/a\u003e •\n  \u003ca href=\"#download\"\u003eDownload\u003c/a\u003e •\n  \u003ca href=\"#authors\"\u003eAuthors\u003c/a\u003e •\n  \u003ca href=\"#license\"\u003eLicense\u003c/a\u003e\n\u003c/p\u003e\n\n## About\n\nAs part of the Digital Sciences module, we had to carry out a simulation on a given theme, ours being the cybersecurity of large systems.\n\nThe objective of the simulation is to simulate a cyber attack and the response to it. We chose to take the attack by dictionary (Bruteforce). The developed website plays both the role of vulnerable site and attacker.\n\nThe simulation is available online here: [https://simu.codexus.fr/](https://simu.codexus.fr/)\n\n## Getting Started\n\n### Prerequisites\n\nTo make this project work you will need:\n\n* PHP 7.+\n* A web server like Apache or Nginx\n\n### Installing\n\n* Put all the files in your site directory\n* Configure your web server to serve the `public/` folder directly.\n\nA example with Apache in your `httpd.conf` file:\n```ini\nDocumentRoot \"path/to/folder/public\"\n\u003cDirectory \"path/to/folder/public\"\u003e\n    Options FollowSymLinks Includes ExecCGI\n    AllowOverride All\n    Require all granted\n\u003c/Directory\u003e\n```\n\nAs Nginx does not support .htaccess, you need to add its equivalent in the configuration file, here is an example:\n```Nginx\nserver {\n    listen 80;\n    listen [::]:80;\n\n    root /var/www/SN-Attack-Simulation/public;\n    index index.php;\n\n    server_name simu.codexus.fr;\n\n    autoindex off;\n\n    location ~ \\.php$ {\n        include snippets/fastcgi-php.conf;\n        fastcgi_pass unix:/run/php/php7.0-fpm.sock;\n    }\n\n    location / {\n        try_files $uri $uri/ /index.php;\n    }\n}\n```\n\n### Utils CLI\n\nWe provide a mini PHP cli application with some util commands.\nHere the list of the different commands available:\n- `clear-cache` : Clear the cache within `app/cache` folder. (Basically it delete all .php and .chtml files)\n\n## Download\n\nYou can [download](https://github.com/Astropilot/SN-Attack-Simulation/releases/tag/v1.0.0) the latest installable version present in releases.\n\n## Authors\n\n* Ching Lee\n* Oswa Poncet\n* Yassine Badani\n* Yohann Martin ([Github@Astropilot](https://github.com/Astropilot))\n* Ziyad Adrar ([Github@ziyad-A](https://github.com/ziyad-A))\n\n## Licence\n\nMIT\n\n---\n\n\u003e [isep.fr](https://www.isep.fr/) \u0026nbsp;\u0026middot;\u0026nbsp;\n\u003e 2019-2020 \u0026nbsp;\u0026middot;\u0026nbsp;\n\u003e Sciences du numérique\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastropilot%2Fsn-attack-simulation","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fastropilot%2Fsn-attack-simulation","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fastropilot%2Fsn-attack-simulation/lists"}