| Author |
Message |
cs
Guest
|
Posted:
Fri Nov 18, 2005 9:30 am Post subject:
How to hide the Location of the media file ? |
|
|
Hi can anyone help me about this ? I need to hide the location that showing
the source of the media ( mms://xxx.xxx.xxx.xxx/racecar_100.wmv )whether in
the properties of the file or even the source code on HTML .
any simple way to do that ?
|
|
| Back to top |
|
 |
Neil Smith [MVP Digital M
Guest
|
Posted:
Fri Nov 18, 2005 5:30 pm Post subject:
Re: How to hide the Location of the media file ? |
|
|
On Thu, 17 Nov 2005 22:07:02 -0800, "cs"
<cs@discussions.microsoft.com> wrote:
| Quote: | Hi can anyone help me about this ? I need to hide the location that showing
the source of the media ( mms://xxx.xxx.xxx.xxx/racecar_100.wmv )whether in
the properties of the file or even the source code on HTML .
any simple way to do that ?
|
I would have to say, in all honesty - don't bother.
Anybody with the right tools (available as standard) and motivation
*can* extract the connection value - even just running "netstat -an"
will show you the connections to a remote server, it's one tiny
nslookup step from there to discover your server name and another tiny
tracert step to find out how to get there.
That's leaving out tools like etherial for scanning/tracing packets.
Cheers - Neil |
|
| Back to top |
|
 |
Big Orange
Guest
|
Posted:
Sat Nov 19, 2005 9:30 pm Post subject:
Re: How to hide the Location of the media file ? |
|
|
"Neil Smith [MVP Digital Media]" <neil@nospam.com> wrote in message
news:lv2sn1d72fu7i13rd9c156t7lapfgo6faa@4ax.com...
| Quote: | I would have to say, in all honesty - don't bother.
|
A locksmith can also get into a Lexus with the proper tools. I think a
recommendation to keep out most people would work in 90+ percent of the
cases.
Mike
|
|
| Back to top |
|
 |
cs
Guest
|
Posted:
Mon Nov 21, 2005 9:30 am Post subject:
Re: How to hide the Location of the media file ? |
|
|
haha.. agree. Luckily my users is not that technical ... so as long can hide
... it would great helpful.
"Big Orange" wrote:
| Quote: | "Neil Smith [MVP Digital Media]" <neil@nospam.com> wrote in message
news:lv2sn1d72fu7i13rd9c156t7lapfgo6faa@4ax.com...
I would have to say, in all honesty - don't bother.
A locksmith can also get into a Lexus with the proper tools. I think a
recommendation to keep out most people would work in 90+ percent of the
cases.
Mike
|
|
|
| Back to top |
|
 |
Neil Smith [MVP Digital M
Guest
|
Posted:
Mon Nov 21, 2005 1:30 pm Post subject:
Re: How to hide the Location of the media file ? |
|
|
On Sun, 20 Nov 2005 21:49:02 -0800, "cs"
<cs@discussions.microsoft.com> wrote:
| Quote: | haha.. agree. Luckily my users is not that technical ... so as long can hide
.. it would great helpful.
"Big Orange" wrote:
|
The just URL Encode the path to the server and file in your HTML, eg
mms:%2F%2F%6D%79%73%65%72%76%65%72%2E%63%6F%6D%2F%70%61%74%68%2F%74%6F%2F%6D%79%2F%66%69%6C%65%2E%77%6D%76
The browser will decode that to the correct URL. To play :
<script language="javascript1.2">
pathstr="//myserver.com/path/to/my/file.wmv";
resstr="";
for (i=0; i<pathstr.length; i++) {
resstr+="%"+pathstr.charCodeAt(i).toString(16).toUpperCase();
}
document.write('<a href="mms:'+resstr+'">Click For Media</a>');
</script>
HTH
Cheers - Neil
| Quote: | "Neil Smith [MVP Digital Media]" <neil@nospam.com> wrote in message
news:lv2sn1d72fu7i13rd9c156t7lapfgo6faa@4ax.com...
I would have to say, in all honesty - don't bother.
A locksmith can also get into a Lexus with the proper tools. I think a
recommendation to keep out most people would work in 90+ percent of the
cases.
Mike
|
|
|
| Back to top |
|
 |
Mike Lowery
Guest
|
Posted:
Mon Nov 21, 2005 9:30 pm Post subject:
Re: How to hide the Location of the media file ? |
|
|
"Neil Smith [MVP Digital Media]" <neil@nospam.com> wrote in message
news:ki83o19u08jibghcslk3dn57r3pnjlk7lq@4ax.com...
| Quote: | On Sun, 20 Nov 2005 21:49:02 -0800, "cs"
cs@discussions.microsoft.com> wrote:
haha.. agree. Luckily my users is not that technical ... so as long can hide
.. it would great helpful.
"Big Orange" wrote:
The just URL Encode the path to the server and file in your HTML, eg
mms:%2F%2F%6D%79%73%65%72%76%65%72%2E%63%6F%6D%2F%70%61%74%68%2F%74%6F%2F%6D%79%2F%66%69%6C%65%2E%77%6D%76
The browser will decode that to the correct URL. To play :
script language="javascript1.2"
pathstr="//myserver.com/path/to/my/file.wmv";
resstr="";
for (i=0; i<pathstr.length; i++) {
resstr+="%"+pathstr.charCodeAt(i).toString(16).toUpperCase();
}
document.write('<a href="mms:'+resstr+'">Click For Media</a>');
/script
|
Here's a useful tool:
http://www.damienmjones.com/work/obfuscator.htm |
|
| Back to top |
|
 |
cs
Guest
|
Posted:
Wed Nov 23, 2005 9:15 am Post subject:
Re: How to hide the Location of the media file ? |
|
|
Cool man .. Thanks for the help
"Mike Lowery" wrote:
| Quote: |
"Neil Smith [MVP Digital Media]" <neil@nospam.com> wrote in message
news:ki83o19u08jibghcslk3dn57r3pnjlk7lq@4ax.com...
On Sun, 20 Nov 2005 21:49:02 -0800, "cs"
cs@discussions.microsoft.com> wrote:
haha.. agree. Luckily my users is not that technical ... so as long can hide
.. it would great helpful.
"Big Orange" wrote:
The just URL Encode the path to the server and file in your HTML, eg
mms:%2F%2F%6D%79%73%65%72%76%65%72%2E%63%6F%6D%2F%70%61%74%68%2F%74%6F%2F%6D%79%2F%66%69%6C%65%2E%77%6D%76
The browser will decode that to the correct URL. To play :
script language="javascript1.2"
pathstr="//myserver.com/path/to/my/file.wmv";
resstr="";
for (i=0; i<pathstr.length; i++) {
resstr+="%"+pathstr.charCodeAt(i).toString(16).toUpperCase();
}
document.write('<a href="mms:'+resstr+'">Click For Media</a>');
/script
Here's a useful tool:
http://www.damienmjones.com/work/obfuscator.htm
|
|
|
| Back to top |
|
 |
|
|
|
|