Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jobertabma/transformations
https://github.com/jobertabma/transformations
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jobertabma/transformations
- Owner: jobertabma
- Created: 2020-05-04T01:36:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-26T22:53:57.000Z (almost 2 years ago)
- Last Synced: 2024-05-27T12:17:47.680Z (5 months ago)
- Language: JavaScript
- Size: 1.68 MB
- Stars: 171
- Watchers: 8
- Forks: 20
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - jobertabma/transformations - (JavaScript)
README
# What is this?
This tool will help you understand how input is transformed on a system, which can help you craft better payloads.
![example 1](https://pbs.twimg.com/media/EXI1zgtU4AA-p5h?format=jpg&name=4096x4096)
Example: if you notice that a server responds with `c1aa46d751f1ffa58481418667134109ac5f573c` when you give in `test`, this tool will immediately tell you that it’s `stringReverse(sha1(md5(md5("test"))))`.
![example 2](https://pbs.twimg.com/media/EXI10SuVcAAwqOp?format=jpg&name=4096x4096)
# Online version
This tool can be used at https://transformations.jobertabma.nl/
# Docker version
You can also run this tool offline.
```
git clone https://github.com/jobertabma/transformations
cd transformations
docker build --tag transformations .
docker run -d -p 8080:80 transformations
```You can then access the tool at http://localhost:8080/.