Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
T
TokenDecryptionTool
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Sadnan Kibria Kawshik
TokenDecryptionTool
Commits
7dd4b210
Commit
7dd4b210
authored
Jul 22, 2025
by
Sadnan Kibria Kawshik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
readme file added
parent
dbc7d17f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
4 deletions
+46
-4
README.md
README.md
+41
-0
config.py
config.py
+5
-4
No files found.
README.md
0 → 100644
View file @
7dd4b210
# Token Decryption Tool
A command-line utility for decrypting tokens and validating JWTs using AES and JWT algorithms.
## Features
-
AES decryption utility
-
JWT validation and decoding
-
Interactive menu for user operations
## Requirements
-
Python 3.12+
-
Install dependencies from
`requirements.txt`
## Installation
1.
Clone the repository:
```
bash
git clone <repo-url>
cd
TokenDecryptionTool
```
2. Install dependencies:
```
bash
pip
install
-r
requirements.txt
```
## Usage
Run the tool from the
command
line:
```
bash
python main.py
```
Follow the interactive menu to decrypt tokens or validate JWTs.
## File Structure
-
`main.py`
: Entry point and menu logic
-
`aes_utils.py`
: AES decryption utilities
-
`jwt_utils.py`
: JWT validation utilities
-
`config.py`
: Configuration settings
-
`requirements.txt`
: Python dependencies
## License
MIT
config.py
View file @
7dd4b210
JWT_SECRET
=
"c2VjcmV0a2V5Zm9yaml3dA=="
#
#input your secrets
AES_ENCRYPTION_KEY
=
"MySuperSecretKey123!"
JWT_SECRET
=
"c2VjcmV0a2V5Zm9yaml3dA=="
# jwt secret key
AES_ENCRYPTION_IV
=
"ThisIs16ByteIV__"
AES_ENCRYPTION_KEY
=
"MySuperSecretKey123!"
# AES encryption key
\ No newline at end of file
AES_ENCRYPTION_IV
=
"ThisIs16ByteIV__"
# AES initialization vector
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment