Added latest project

This commit is contained in:
ploc
2025-04-20 09:43:15 +02:00
parent 1b1d6553a1
commit a975cc12e2
2 changed files with 42 additions and 2 deletions
+1
View File
@@ -11,6 +11,7 @@ node_modules
dist dist
dist-ssr dist-ssr
*.local *.local
package-lock.json
# Editor directories and files # Editor directories and files
.vscode/* .vscode/*
+41 -2
View File
@@ -76,7 +76,46 @@ function Projects() {
"description": "This is the report for a school project. The project was to make a security audit on a machine (Basic Pentesting 1 on VulnHub). This was a really fun project to make, as it helped me learn how to do a penetration test as well as write a report for it. This repo is private, since this project is still made by new students. Therefore, you can request access if you want to read it!", "description": "This is the report for a school project. The project was to make a security audit on a machine (Basic Pentesting 1 on VulnHub). This was a really fun project to make, as it helped me learn how to do a penetration test as well as write a report for it. This repo is private, since this project is still made by new students. Therefore, you can request access if you want to read it!",
"visibility": "Private", "visibility": "Private",
"link": "https://github.com/Ploc300/ProjetCyber" "link": "https://github.com/Ploc300/ProjetCyber"
} },
{
"name": "Pylint Disable Analyzer V2",
"tech": [
"C"
],
"description": "This is a rewrite of my older project \"Pylint Disable Analyzer\" to learn and improve my C skills. I have decided to make this since I wanted to learn C but I needed some project that could be usefull in the futur. Since the python version work but can be pretty slow on really big projects, I have decided to remake it entirely in C (which makes it way faster).",
"visibility": "Public",
"link": "https://gitlab.plocserv.fr/ploc300/pylintanalyzerv2"
}, {
"name": "Own-Os",
"tech": [
"Assembly",
"C"
],
"description": "As the title say, I'm trying to make my own os. The goal is not to make a fully functional os but more to learn about low-level programming, kernel, and everything related. It is based on the amazing repository: https://github.com/cfenollosa/os-tutorial",
"visibility": "Private",
"link": "https://gitlab.plocserv.fr/ploc300/own-os"
}, {
"name": "dCodeAbuser",
"tech": [
"Python",
"Website Scrapping"
],
"description": "While doing some CTF challenges, some friends of mine showed me an amazing website \"dcode.fr\". I have used it a lot but always thought it is missing something, a public API / a way to automate request. So I decided to make this tool to automate scrapping the result.",
"visibility": "Public",
"link": "https://gitlab.plocserv.fr/ploc300/dcodeabuser"
}, {
"name": "Arch Config",
"tech": [
"Python",
"Lua",
"Shell",
"CSS",
"Config Files"
],
"description": "After re-installing Arch Linux on my laptop, I wanted to synchronize my config with my desktop. Therefore, one of the easiest way to do that for me was to create a git repository. So here we are!",
"visibility": "Private",
"link": "https://gitlab.plocserv.fr/plocserv/arch_config"
}
] ]
return ( return (
@@ -110,4 +149,4 @@ function Projects() {
) )
} }
export default Projects; export default Projects;