473,799 Members | 3,146 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

How to Hide file link

Hi

I have to hide my file link, so I use 'iframe'.
( In iframe, use script to insert file link value at parent window's script
variable)

However It's easy to find the file link value!!
(If someone see the iframe's source)

Is there more powerful way for hiding?
Or using iframe more well?

Thanks.
Jul 20 '05 #1
3 7477
rf

"Lee Jong Sung" <sa******@korea .com> wrote in message
news:be******** **@news1.kornet .net...
Hi

I have to hide my file link, so I use 'iframe'.
( In iframe, use script to insert file link value at parent window's script variable)

However It's easy to find the file link value!!
(If someone see the iframe's source)

Is there more powerful way for hiding?
Or using iframe more well?


There is no way to hide anything.

Cheers
Richard.
Jul 20 '05 #2
Yes, you're right.
but isn't there some way to make hard to know the link value ?
I just like to bother some one to try find it.

Can you tell me hint or something of encrytion in PHP and decreiption at
Javascript?
I think it's a good way for me.

Or anyother ideas?
"rf" <ma**********@t he.time> wrote in message
news:Vu******** **********@news-server.bigpond. net.au...

"Lee Jong Sung" <sa******@korea .com> wrote in message
news:be******** **@news1.kornet .net...
Hi

I have to hide my file link, so I use 'iframe'.
( In iframe, use script to insert file link value at parent window's

script
variable)

However It's easy to find the file link value!!
(If someone see the iframe's source)

Is there more powerful way for hiding?
Or using iframe more well?


There is no way to hide anything.

Cheers
Richard.

Jul 20 '05 #3
"Lee Jong Sung" <sa******@korea .com> wrote in message
news:be******** **@news1.kornet .net...
Yes, you're right.
but isn't there some way to make hard to know the link
value ? I just like to bother some one to try find it.
The most extreme attempts to conceal information in web pages take just
10 minutes to reverse (often much less). So it's no bother.

Extraction information such as the SRC attributes of IFRAME tags is even
easier. For example, the javascript: URL:-

javascript:void (function(){var
s='';n=document .getElementsByT agName('iframe' );for(var
c=n.length;c--;){s+=n[c].src+'\n';}aler t(s);}());

- can be bookmarked and then executed in any page and will list the -
src - attributes of all IFRAME elements on the page. Similar approaches
might list all of the location.href values for each item in the frames
collection, or the href of all links in the document.links collection
and so on. That is all getting the browser to tell you about its current
state so any source encoding/decoding is completely side-stepped. (The
list can also be displayed in a new window for easy cut-n-paste and an
IE specific javascript URL could put the list in the clipboard for easy
copying).
Can you tell me hint or something of encrytion in PHP and
decreiption at Javascript?
I think it's a good way for me.
You would turn a page that does not need to be JavaScript dependent into
a page that is JavaScript dependent but you will not be doing anything
useful towards acheaving your stated goal.
Or anyother ideas?


If you don't want the user of a web browser to know something your
_only_ option is not to send that information to them.

Richard.
Jul 20 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
12074
by: Mark | last post by:
Sorry, I'm a newbie to php ;) I was thinking about using php to write the script file, something like: <script type="text/javascript" src="http://insert_url_here.com/myScript.php"></script> The php file then echo'ing the source code. If that works then how can I stop the php file being loaded directly, that is the user browsing
8
18814
by: André Gasser | last post by:
Hello there! Can someone please help me on this: I have a php file which lists some records. On this list, the records can be sorted on different columns. currently the sort column and the direction of sorting is passed using GET values, this means the user clicks the column name (which is a link) so the new sort column and direction is passed to the script
4
18858
by: Atz | last post by:
<a href="" onmousedown="setTimeout('status=\'Hide\'',5000)" onmouseover="window.status='Hide'; return true"> send link </a> I use this for hidding link path in status bar. This is working fine but if u click "fast" many times on same link you can easy read path link and variables. I try to change timeout time but no effect. Is there a better way to hide/encrypt this, without to removing status bar.
2
2330
by: benny | last post by:
Hi, I am trying on redirect the to the file EnterpriseManager2.0.zip without having to show the absolute link on http://w0018/EnterpriseManager2.0.zip where the download utility cannot get that absolute link. I tried:- 1. window.open("http://w0018/EnterpriseManager2.0.zip") and 2.
10
4661
by: oLE | last post by:
I would like to add some javascript to show/hide a certain row of a table. The first row of the table contain the hyperlink that calls the javascript the second row is the one i want to show/hide with the javascript in a toggle fashion. the problem is a know very little javascript and have become incredibly frustrated because i went ahead thinking it was going to be like C. its not. I know i can use these lines to do the actual work:
1
1728
by: Shapper | last post by:
Hello, I have this code line inside an ASP.Net Repeater: <a href='<%# DataBinder.Eval(Container.DataItem, "link") %>'><%= readMore %></a> What I need to do is: 1. Show readMore value if <%# DataBinder.Eval(Container.DataItem, "link") %> is not empty.
4
4232
by: bridgemanusa | last post by:
Hi All: I have a very long page of html that I want to take portions and hide them in divs, then show when a link is clicked. I have the hide show part working when the link is clicked, however I would really like to use linked images instead to do the following: - When open.gif is clicked, the contents of the div show and open.gif is swapped with close.gif - subsequently, when close.gif is clicked, the div contents get hidden
1
2273
by: bonnijose | last post by:
good morning to all, i am uploading my "First" web server files today. for security reasons can anyone using the internet see "ALL" the files in my web server account? i mean, if someone type http://www.xxxxxxx.com then he would see my
6
1998
by: michael941 | last post by:
Hi, I have 2 tables in an html page. I have div them separately and id them as id1 and id2. I have a link there. What I need is click the link to hide one table and show the other and verse when click the link again. I tried many ways in javascript but failed. Could someone please help? Thanks a lot!
0
9688
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9546
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
1
10243
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9078
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7570
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5590
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4146
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3762
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2941
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.