Skip to content

fix: Update AES decryption mode to CTR#231

Merged
dogancanbakir merged 1 commit intoprojectdiscovery:mainfrom
ounissi-zakaria:main
Feb 23, 2026
Merged

fix: Update AES decryption mode to CTR#231
dogancanbakir merged 1 commit intoprojectdiscovery:mainfrom
ounissi-zakaria:main

Conversation

@ounissi-zakaria
Copy link
Copy Markdown
Contributor

@ounissi-zakaria ounissi-zakaria commented Feb 17, 2026

Fix interactsh-web ↔ interactsh-server v1.3.0

Problem

interactsh-web couldn't decrypt interaction data from interactsh-server v1.3.0 (worked fine with v1.2.2).

Root Cause

Server v1.3.0 changed AES encryption from CFBCTR mode in util.go. The Go CLI client was updated in client.go (NewCFBDecrypterNewCTR), but the web client was not.

Change Made

const decipher = crypto.createDecipheriv('aes-256-cfb', key, iv);

becomes

const decipher = crypto.createDecipheriv('aes-256-ctr', key, iv);

closes #232

@vercel
Copy link
Copy Markdown

vercel Bot commented Feb 17, 2026

@ounissi-zakaria is attempting to deploy a commit to the ProjectDiscovery Team on Vercel.

A member of the Team first needs to authorize it.

@dogancanbakir dogancanbakir merged commit fa05efd into projectdiscovery:main Feb 23, 2026
1 check failed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

interactsh-web still uses deprecated CFB schema, incompatible with newer version of intercatsh

3 participants