Nmap Security Scanner
*Intro
*Ref Guide
*Install Guide
*Download
*Changelog
*Book
*Docs
Security Lists
*Nmap Hackers
*Nmap Dev
*Bugtraq
*Full Disclosure
*Pen Test
*Basics
*More
Security Tools
*Pass crackers
*Sniffers
*Vuln Scanners
*Web scanners
*Wireless
*Exploitation
*Packet crafters
*More
Site News
Site Search:
Exploit World
Advertising
About/Contact
Credits
Sponsors:
edgeos



WebApp Sec: Re: [ Q ] URL obfuscation tools/scripts

Re: [ Q ] URL obfuscation tools/scripts

From: mark <mark_at_gether.org.uk>
Date: Mon, 05 Jan 2004 18:02:35 +0000

or php and its dechex function.... (ord function just gets ascii number
of char)

#!/usr/local/bin/php -qCn
<?php
 
       $string = "hello there";
        $out = '';
        for($x=0;$x<strlen($string);$x++){
                $out .= "%".dechex(ord($string[$x]));
        }

    echo $out."\n";
?>
Received on Jan 05 2004

[ Nmap | Sec Tools | Mailing Lists | Site News | About/Contact | Advertising | Privacy ]