-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHome.py
More file actions
47 lines (38 loc) · 1.26 KB
/
Copy pathHome.py
File metadata and controls
47 lines (38 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import streamlit as st
from main import create_directories
create_directories()
st.set_page_config(page_title="PySecSuite - Home", layout="centered")
st.title("🛡️ Welcome to PySecSuite")
st.subheader("Your all-in-one Python Cybersecurity Toolkit")
st.markdown("---")
st.markdown("### 🔧 What is PySecSuite?")
st.write(
"""
PySecSuite is a modular Python-based toolkit built for security testing, forensic analysis, and
educational purposes in cybersecurity.
This suite brings together several tools into a unified interface, making it easy for users to:
- Inspect networks
- Test password strength
- Analyze files for metadata or tampering
- Explore public information using OSINT
- Crack Wi-Fi handshakes
"""
)
st.markdown("### 🚀 Getting Started")
st.write(
"Use the sidebar to navigate between tools. Each module has its own page with a specific purpose."
)
st.markdown("### 🧪 Included Tools")
st.markdown(
"""
- 🔍 Network & Vulnerability Scanner
- 🔐 Password Cracker
- 📁 Forensic File Analyzer
- 📡 Wi-Fi Handshake Cracker
- 🌐 OSINT Toolkit
"""
)
st.markdown("---")
st.info(
"Visit the **About** page for author info, objectives, ethical use, and technical details."
)