NameSilo

[Resolved] Reversing url_encode type effect in perl?

Spacemail by SpaceshipSpacemail by Spaceship
Watch

beaver6813

Established Member
Impact
16
Reversing url_encode type effect in perl?

Hey,

There is an upload script i'm using, it locks the files and only chmods them to 600, making them virtually impossible to access in php, i've managed to deconstruct how it works but to get perl to chmod the file i need to know the file name... but it only has it in url encoded form:

Code:
$tmp_filename =~ s/([^a-zA-Z0-9_\-.])/uc sprintf("%%%02x",ord($1))/eg;

Anyone know how to reverse this so i can have the url in plain form in perl?

Resolved. Some guy over at devshed gave the code to reverse :) For future reference the opposite would be:

Code:
$tmp_filename =~ s{%([a-fA-F0-9][a-fA-F0-9])}{pack("C", hex($1))}eg;
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
.US domains.US domains
Dynadot — .com Registration $8.99Dynadot — .com Registration $8.99

We're social

Unstoppable Domains
Domain Recover
DomainEasy — Live Options
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back