punyStyleOpen
Produces an address that decodes under buggy IDN to start an HTML <style tag.
Created by: hackvertor
Installed 1 times
Viewed: 4
Category: Email
Created on: Wednesday, September 10, 2025 at 9:04:51 PM
Updated on: Wednesday, September 10, 2025 at 9:04:51 PM
Tag arguments
[]
Code
class punyStyleOpen {
encode(input) {
const local = (input || 'x').split('@')[0];
return local + '@xn--style-321';
}
}