██████╗ ██╗ ██╗ ██████╗██╗ ██╗██╗ ██╗███╗ ██╗ ██████╗ ██████╗ ██████╗ ██╗ ██╗██████╗
██╔══██╗╚██╗ ██╔╝██╔════╝██║ ██║██║ ██║████╗ ██║ ██╔════╝ ██╔══██╗██╔═══██╗██║ ██║██╔══██╗
██████╔╝ ╚████╔╝ ██║ ███████║███████║██╔██╗ ██║ ██║ ███╗██████╔╝██║ ██║██║ ██║██████╔╝
██╔══██╗ ╚██╔╝ ██║ ██╔══██║╚════██║██║╚██╗██║ ██║ ██║██╔══██╗██║ ██║██║ ██║██╔═══╝
██████╔╝ ██║ ╚██████╗██║ ██║ ██║██║ ╚████║ ╚██████╔╝██║ ██║╚██████╔╝╚██████╔╝██║
╚═════╝ ╚═╝ ╚═════╝╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚═╝
[ Independent Cybersecurity Community ]
Independent Cybersecurity Community
Welcome to ByCh4n-Group - an independent cybersecurity community dedicated to advancing digital security through open collaboration, responsible research, and knowledge sharing.
Visit our platform: https://bych4n-group.github.io
Advancing cybersecurity through open collaboration while maintaining the highest ethical standards and promoting free software principles.
- DedSec-inspired Design: Cyberpunk aesthetic with terminal-style interactions
- Interactive Terminal: Type-effect animations showcasing our community spirit
- Security Resources: Comprehensive documentation and research papers
- Community Blog: Latest insights, tutorials, and security research
- Project Showcase: Open source tools and security utilities
- Responsive Design: Optimized for all devices
- Frontend: HTML5, CSS3, JavaScript (Vanilla)
- Hosting: GitHub Pages
- Design: Custom CSS with cyberpunk/hacker aesthetic
- Fonts: Fira Code, JetBrains Mono
- Effects: Matrix animations, typewriter effects, glitch animations
├── index.html # Main landing page
├── assets/
│ ├── css/
│ │ └── style.css # Main stylesheet with DedSec theme
│ └── js/
│ └── script.js # Interactive effects and animations
├── blog/ # Blog posts and articles
│ └── *.html
├── docs/ # Documentation and resources
│ └── *.html
├── prod.md # Project planning document
└── README.md # This file
# Clone the repository
git clone https://github.com/ByCh4n-Group/ByCh4n-Group.github.io.git
# Navigate to project directory
cd ByCh4n-Group.github.io
# Serve locally (Python)
python -m http.server 8000
# Or with Node.js
npx serve .
# Visit http://localhost:8000- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
- Penetration Testing: Advanced web application security assessments
- Vulnerability Research: Responsible disclosure and security research
- Tool Development: Open source security utilities and scripts
- Education: Cybersecurity tutorials and learning resources
- Community: Building an inclusive environment for security professionals
We maintain high standards for community interaction:
- Ethical: All activities must be legal and ethical
- Responsible: Follow responsible disclosure practices
- Inclusive: Welcome security enthusiasts of all skill levels
- Open: Promote open source and free software principles
- Collaborative: Foster knowledge sharing and mentorship
- GitHub: github.com/ByCh4n-Group
- Website: bych4n-group.github.io
- Email: contact@bych4n-group.org
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by the DedSec aesthetic from Watch Dogs
- Built with love for the cybersecurity community
- Dedicated to advancing digital security through collaboration
"Knowledge should be free. Security should be accessible. Community should be inclusive."
- ByCh4n-Group Team
- Blog Sistemi: Teknik yazılar ve öğreticiler
- Döküman Sistemi: API rehberleri ve teknik dökümanlar
- Proje Vitrini: Açık kaynak projelerimiz
- SEO Optimizasyonu: Arama motorları için optimize edilmiş
- Hızlı Yükleme: Statik site avantajları
- Jekyll - Static site generator
- Liquid - Template engine
- SCSS - CSS preprocessing
- JavaScript - Interactive features
- GitHub Pages - Hosting
- Font Awesome - Icons
- Google Fonts - Typography
.
├── _config.yml # Jekyll konfigürasyonu
├── _layouts/ # Sayfa şablonları
│ ├── default.html
│ ├── home.html
│ ├── post.html
│ └── doc.html
├── _posts/ # Blog yazıları (Türkçe)
├── en/_posts/ # Blog yazıları (İngilizce)
├── _docs/ # Dökümanlar (Türkçe)
├── en/_docs/ # Dökümanlar (İngilizce)
├── assets/ # CSS, JS ve medya dosyaları
│ ├── css/
│ └── js/
├── blog/ # Blog sayfaları
├── docs/ # Döküman sayfaları
├── projects/ # Projeler sayfası
├── contact/ # İletişim sayfası
└── en/ # İngilizce sayfalar
- Ruby (2.7+)
- Bundler
- Git
# Repository'yi klonlayın
git clone https://github.com/ByCh4n-Group/ByCh4n-Group.github.io.git
cd ByCh4n-Group.github.io
# Bağımlılıkları yükleyin
bundle install
# Geliştirme sunucusunu başlatın
bundle exec jekyll serve
# Tarayıcınızda http://localhost:4000 adresini açın# Site oluştur
bundle exec jekyll build
# Taslak yazıları da dahil ederek serve et
bundle exec jekyll serve --drafts
# Production build
JEKYLL_ENV=production bundle exec jekyll buildTürkçe yazı için _posts/ klasörüne:
---
layout: post
title: "Yazı Başlığı"
date: 2024-12-24 10:00:00 +0300
categories: [kategori]
tags: [tag1, tag2]
lang: tr
author: "Yazar Adı"
excerpt: "Yazı özeti"
---
Yazı içeriği...İngilizce yazı için en/_posts/ klasörüne:
---
layout: post
title: "Article Title"
date: 2024-12-24 10:00:00 +0300
categories: [category]
tags: [tag1, tag2]
lang: en
author: "Author Name"
excerpt: "Article excerpt"
---
Article content...Türkçe döküman için _docs/ klasörüne:
---
layout: doc
title: "Döküman Başlığı"
description: "Döküman açıklaması"
category: "Kategori"
icon: "fas fa-icon"
lang: tr
order: 1
---
Döküman içeriği...--primary-color: #667eea;
--secondary-color: #764ba2;
--accent-color: #f093fb;
--text-color: #2d3748;
--text-light: #718096;- Ana Font: Inter
- Kod Font: Fira Code (syntax highlighting için)
- Mobile: < 768px
- Tablet: 768px - 1024px
- Desktop: > 1024px
Site Türkçe ve İngilizce olmak üzere iki dili destekler:
- Türkçe içerik ana dizinde
- İngilizce içerik
en/dizininde - Navigation menüsü dil bazında konfigüre edilebilir
- Dil değiştirici navbar'da mevcut
- Bu repository'yi fork edin
- Feature branch oluşturun (
git checkout -b feature/amazing-feature) - Değişikliklerinizi commit edin (
git commit -m 'Add amazing feature') - Branch'i push edin (
git push origin feature/amazing-feature) - Pull Request açın
type(scope): description
# Örnekler:
feat: add new blog post layout
fix: resolve navigation mobile issue
docs: update installation guide
style: improve button design
Bu proje MIT lisansı altında lisanslanmıştır. Detaylar için LICENSE dosyasına bakın.
- ByCh4n Group - Web geliştirme ve topluluk yönetimi
- Website: https://bych4n-group.github.io
- Discord: Sunucumuza katılın
- GitHub: @ByCh4n-Group
- Jekyll ve GitHub Pages ekibine
- Açık kaynak topluluğuna
- Tüm katkıda bulunan geliştiricilere
⭐ Bu repository'yi beğendiyseniz yıldız vermeyi unutmayın! ByCh4n-Group web page