Skip to content

Commit 6a3651b

Browse files
committed
prep for next release
1 parent aa135b2 commit 6a3651b

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,12 @@ A client-side GitHub token analyzer and repository browser. No server required,
3737

3838
## Print Reports
3939

40-
Token Analyzer generates professional PDF reports via browser print functionality with proper headers, footers, and formatting.
40+
Token Analyzer generates PDF reports via browser print functionality with proper headers, footers, and formatting.
41+
42+
43+
## 🤖 AI-Assisted Development
44+
45+
This project was developed with the assistance of AI tools, most notably Cursor IDE. These tools helped accelerate development and improve velocity. All AI-generated code has been carefully reviewed and validated through human inspection to ensure it aligns with the project’s intended functionality and quality standards.
4146

4247
## License
4348

ghcreds.html

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1405,7 +1405,13 @@
14051405
<body>
14061406
<div class="container">
14071407
<div class="header">
1408-
<h1>🔍 GH Token Analyzer</h1>
1408+
<div style="display: flex; align-items: center; gap: 20px;">
1409+
<h1>🔍 GH Token Analyzer</h1>
1410+
<div style="display: flex; gap: 12px;">
1411+
<a href="index.html" style="color: var(--text-accent); text-decoration: none; font-weight: 600; font-size: 14px; padding: 6px 12px; border-radius: 6px; transition: all 0.2s ease;" onmouseover="this.style.background='var(--progress-bg)'" onmouseout="this.style.background='transparent'">🏠 Home</a>
1412+
<a href="about.html" style="color: var(--text-accent); text-decoration: none; font-weight: 600; font-size: 14px; padding: 6px 12px; border-radius: 6px; transition: all 0.2s ease;" onmouseover="this.style.background='var(--progress-bg)'" onmouseout="this.style.background='transparent'">ℹ️ About</a>
1413+
</div>
1414+
</div>
14091415
<button class="theme-toggle" onclick="toggleTheme()" id="theme-toggle">
14101416
🌙 Dark
14111417
</button>
@@ -1414,6 +1420,24 @@ <h1>🔍 GH Token Analyzer</h1>
14141420
<div class="content-wrapper">
14151421
<div class="main-content">
14161422
<div class="input-section">
1423+
<div style="background: var(--success-bg); border: 1px solid var(--text-accent); border-radius: 8px; padding: 16px; margin-bottom: 24px; text-align: center;">
1424+
<div style="font-size: 14px; color: var(--success-text); font-weight: 600; margin-bottom: 8px;">
1425+
💡 Inspired by the excellent work of @6mile
1426+
</div>
1427+
<div style="font-size: 13px; color: var(--text-secondary);">
1428+
This tool is inspired by <a href="https://github.com/6mile/gimmepatz" target="_blank" rel="noopener noreferrer" style="color: var(--text-accent); text-decoration: none; font-weight: 600;">gimmepatz</a> - a comprehensive PAT reconnaissance tool for security professionals
1429+
</div>
1430+
</div>
1431+
1432+
<div style="background: var(--warning-bg); border: 1px solid var(--color-yellow); border-radius: 8px; padding: 16px; margin-bottom: 24px; text-align: center;">
1433+
<div style="font-size: 14px; color: var(--warning-text); font-weight: 600; margin-bottom: 8px;">
1434+
🔒 Privacy & Security Notice
1435+
</div>
1436+
<div style="font-size: 13px; color: var(--warning-text);">
1437+
<strong>No tokens are stored or transmitted to any server.</strong> All analysis happens entirely in your browser (client-side).
1438+
Your tokens never leave your device and are not logged or saved anywhere.
1439+
</div>
1440+
</div>
14171441
<div class="input-group">
14181442
<label for="token-input">GitHub Personal Access Token</label>
14191443
<div class="input-with-button">
@@ -1444,6 +1468,7 @@ <h1>🔍 GH Token Analyzer</h1>
14441468
<div class="footer-links">
14451469
<a href="https://cyfinoid.com" class="footer-link" target="_blank" rel="noopener noreferrer">Cyfinoid Research</a>
14461470
<a href="https://github.com/cyfinoid/ghnavigator" class="footer-link" target="_blank" rel="noopener noreferrer">GitHub Repository</a>
1471+
<a href="https://github.com/6mile/gimmepatz" class="footer-link" target="_blank" rel="noopener noreferrer">Inspired by gimmepatz</a>
14471472
<a href="https://cyfinoid.com/trainings/#upcoming-trainings" class="footer-link" target="_blank" rel="noopener noreferrer">Training Programs</a>
14481473
<a href="https://cyfinoid.com/opensource-by-cyfinoid/" class="footer-link" target="_blank" rel="noopener noreferrer">Open Source Projects</a>
14491474
</div>

index.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -660,7 +660,12 @@
660660
<div class="app-container">
661661
<header class="header">
662662
<div class="header-left">
663-
<h1>🗂️ GH Navigator</h1>
663+
<div style="display: flex; align-items: center; gap: 20px;">
664+
<h1>🗂️ GH Navigator</h1>
665+
<div style="display: flex; gap: 12px;">
666+
<a href="about.html" style="color: var(--text-accent); text-decoration: none; font-weight: 600; font-size: 14px; padding: 6px 12px; border-radius: 6px; transition: all 0.2s ease;" onmouseover="this.style.background='var(--progress-bg)'" onmouseout="this.style.background='transparent'">ℹ️ About</a>
667+
</div>
668+
</div>
664669
<div class="token-input-container">
665670
<input type="text"
666671
class="token-input"

0 commit comments

Comments
 (0)