Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions Domain/Cyber Security/SoumyaPatnaik_CyberSecurityPortfolio.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
---- ENIGMA CYBERSECURITY TASK -----
---CYBERSECURITY PORTFOLIO---

Name : Soumya Patnaik
Regd. no: 2502100012
Branch : Metallurgical and Materials Engineering

-------------------------------------------------------------------------------------------

PHASE : 1 KALI LINUX INSTALLATION
In this phase I have learnt how to install Kali linux on windows using Oracle Virtualbox and then set the hardware configs accordingly and then i upgraded my system by the command "sudo apt update"

--------------------------------------------------------------------------------------------

PHASE: 2 INSTALLING GEDIT (GRAPHICAL TEXT EDITOR) IN OUR VIRTUAL SYSTEM
In this phase i have learnt how to install "gobuster" on my virtual Kali linux system.

--- Challenges faced ---
i) Firstly when i entered the command "apt install gobuster" but since i was not giving the command in root terminal, it didn't worked so i tried it in root terminal and it finally ran
ii) Secondly, when i ran the command in the root terminal it had error so i went back to the normal terminal and ran the command "sudo apt install" then it worked.

--------------------------------------------------------------------------------------------

PHASE : 3 FIRST RECON MISSION USING GOBUSTER

In this phase I have installed a real security tool (Gobuster) and used it to gather real info

OBJECTIVE

Install GoBuster, understanding its basic usage, and running a simple scan.


ABOUT GOBUSTER

GoBuster is a command-line tool used for brute-forcing directories and files on web servers. It takes a list of common directory names (like /admin, /login, /images) and checks whether those paths exist on a website. This helps in discovering hidden or forgotten parts of a web application.

Tool installation :
sudo apt install gobuster

Tool Usage:
gobuster dir -u http://testphp.vulnweb.com -w /usr/share/wordlists/dirbuster/directory-list-2.3-medium.txt
wget http://testphp.vulnweb.com

Sample Output :
--2026-03-23 09:59:50-- http://testphp.vulweb.com/
Resolving testphp.vulweb.com (testphp.vulweb.com)... 199.191.50.185
Connecting to testphp.vulweb.com (testphp.vulweb.com)|199.191.50.185|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html’

index.html [ <=> ] 122 --.-KB/s in 0s

2026-03-23 09:59:51 (3.79 MB/s) - ‘index.html’ saved [122]





Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
🧠 Enigma Coding Club Website
=============================

Official website for **Enigma**, the coding club. This platform serves as a central hub for showcasing events, managing inductions, and building a strong developer community.

Overview
--------

The Enigma website is designed to:

* Introduce the club and its vision

* Showcase ongoing and past events

* Manage induction processes

* Provide resources for members

* Create a strong digital presence for the club


Tech Stack
----------

* **Frontend:** React js

* **Styling:** Tailwind CSS _(if applicable)_

* **Animations :** GSAP , Framer-motion


Features
--------

* **Homepage** – Introduction and highlights

* **Teams**– Briefly described the persons behind the commits

* **Projects** – Described about the various Projects made here

* **Induction Portal** – Registration and selection info

* **Blogs** – Insights of the famous blogs of our club

##Deployed link :
https://enigma-three-inky.vercel.app/


Note
----

* This project is part of the **Enigma Coding Club induction process**

* The goal is to demonstrate development skills, structure, and creativity
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'
import { defineConfig, globalIgnores } from 'eslint/config'

export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [
js.configs.recommended,
tseslint.configs.recommended,
reactHooks.configs.flat.recommended,
reactRefresh.configs.vite,
],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
},
])
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<!doctype html>
<html lang="en">

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="./Enigma_logo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Enigma Offical</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
Loading