Horse Racing Forum - PaceAdvantage.Com - Horse Racing Message Board

Go Back   Horse Racing Forum - PaceAdvantage.Com - Horse Racing Message Board > Off Topic > Off Topic - Computers


Reply
 
Thread Tools Rate Thread
Old 08-25-2020, 02:15 PM   #1
OverlayHunter
Registered User
 
Join Date: Oct 2003
Location: Columbus, Ohio
Posts: 396
Self-Destructing or Time-Limited Files

From time to time in business, I have to send someone files, typically pdf and jpg. It is important that those files be limited in function to make them difficult to pass along to others. The receiving party typically needs them for 2 hours or less.

Is there a way to render the files useless after a certain amount of time?

For example, can they be automatically overwritten (thereby effectively deleting them) or rendered impossible to open after a given period of time?

Are there other methods to accomplish the goal I haven't thought of?

I've poked around the internet but I haven't found what I need.

Thank you for the assistance.
OverlayHunter is offline   Reply With Quote Reply
Old 08-25-2020, 04:49 PM   #2
headhawg
crusty old guy
 
headhawg's Avatar
 
Join Date: Aug 2003
Location: Snarkytown USA
Posts: 3,914
The short answer is that it can be done, but probably not implemented in the way you want. Image files and PDFs need other programs to open them. In other words, they are not self-executable. The only solutions that I can think of are using a DRM company like Digify, or have some kind of custom .bat or .exe file "seek and destroy" the files you need deleted. If you are not a coder, then both solutions are expensive. And with the custom delete program, I am not sure that your clients would want to install it even if they could.

Another possibility could be storing the files in the cloud and restrict access to Read Only for a limited time period.
__________________
"Don't believe everything that you read on the Internet." -- Abraham Lincoln
headhawg is offline   Reply With Quote Reply
Old 08-25-2020, 04:59 PM   #3
JustRalph
Just another Facist
 
JustRalph's Avatar
 
Join Date: Mar 2002
Location: Now in Houston
Posts: 52,768
Where do they reside? Their own directory? On the customers hard drive/

You “send them”. What format email? USB drive ? Cd?

Found this via google

https://digify.com/blog/pdf-document...self-destruct/

We used to do this via dos back in the day
__________________
WE ARE THE DUMBEST COUNTRY ON THE PLANET!

Last edited by JustRalph; 08-25-2020 at 05:02 PM.
JustRalph is offline   Reply With Quote Reply
Old 08-25-2020, 05:23 PM   #4
Dave Schwartz
 
Dave Schwartz's Avatar
 
Join Date: Mar 2001
Location: Reno, NV
Posts: 16,908
Quote:
Originally Posted by OverlayHunter View Post
From time to time in business, I have to send someone files, typically pdf and jpg. It is important that those files be limited in function to make them difficult to pass along to others. The receiving party typically needs them for 2 hours or less.
Overlay,

Google's G-Suite has some of the capability and it could be made to work.

You can create a document in G-Suite and turn off the ability to:

* Save it (i.e. download it)
* Copy it to another folder (i.e. theirs)
* Select Text
* Convert to another file type.

You would have to manually control their access to the file. That is, in two hours (or whatever) you'd remove their access to the file.

My understanding is that this can only be accomplished with the pay-for version of G-Suite.

Now, the bad news... I do not know how to do this. Sorry.

Dave
PS: If you really need this, I can find the VA who coached me when I was trying to set something up in G-Suite. She was quite the expert. I bought 2 hours of her time for $80, as I recall.
Dave Schwartz is online now   Reply With Quote Reply
Old 08-25-2020, 05:28 PM   #5
Jeff P
Registered User
 
Jeff P's Avatar
 
Join Date: Dec 2001
Location: JCapper Platinum: Kind of like Deep Blue... but for horses.
Posts: 5,287
Have you considered setting a password that expires at a predefined date/time?

A Google search for the phrase "encrypt file password expires at a predefined time" (without the quotes) turned up the following link:

Quick Crypt creates self-expiring encrypted files:
https://www.ghacks.net/2014/07/07/qu...crypted-files/

Quote:
Here you find several interesting options:
  1. Encrypt file using a system ID unique to the PC. Attempts to decrypt the file on other computer systems will result in errors even if the correct password is entered.

  2. Set a file expiration date. The file cannot be decrypted anymore once the expiration date is reached.

  3. Create a distributable zip file. This adds the Quick Crypt program and the encrypted file to a zip file for easy distribution since Quick Crypt is required to decrypt an archive.
FYI, I don't have any affiliation with, nor have I ever used, Quick Crypt.

However, reading the write up at the above link did spark some ideas.

I'm guessing the measures you decide to take ultimately depend on how important it is that your content be seen by intended viewers only and go nowhere from there.

That said, a few random thoughts --

Could a user get around an expired password simply by setting the date/time on a machine back to an older date/time? (For a lot of downloadable software the answer is actually yes.)

Some possibilities for dealing with that:

Could you create your own web-based content delivery system? I think it's possible (through scripting and various server settings) to create a non-public facing web page that displays content (an image) in a manner whereby: The user must login to view the content, the image cannot be downloaded by normal webbrowser behavior, and the page can only be viewed by an authenticated user n number of times and/or before a predefined date/time. Of course this comes with an obvious built-in weakness: The user who wants to can probably do a screen capture or use video recording software to record the pixels displayed on the monitor.(Although many mouse-keyboard combinations can trapped for via scripting. Whether or not you decide to go this route may depend on how much you trust your users.)

Basically, you send the user a link. Verify that the user has viewed the page. And take the page down afterwards.

Could you create your own client-based content delivery .exe file? Basically, you write your own source code (using whatever dev environment) and compile it as a downloadable .exe file which your user installs on a laptop or pc.

The user double clicks the .exe file to launch your app, logs into the app using a one time only password, and from there the app displays an image file (.bmp, .png, .jpg, etc.) that resides on your remote server (and not on the user's machine.)

And of course, when the user shuts down the app, code in the app's form_terminate() event (or equivalent) deletes (or scrambles) the .exe file itself... which short of extraordinary measures taken by your user pretty much ensures your user sees the content exactly once.


-jp

.
__________________
Team JCapper: 2011 PAIHL Regular Season ROI Leader after 15 weeks
www.JCapper.com

Last edited by Jeff P; 08-25-2020 at 05:40 PM.
Jeff P is offline   Reply With Quote Reply
Old 08-25-2020, 07:56 PM   #6
OverlayHunter
Registered User
 
Join Date: Oct 2003
Location: Columbus, Ohio
Posts: 396
Headhawg, JR, Dave and Jeff, thank you, I sincerely appreciate all of the time you took and the helpful information you've provided. I am going to look into all of the ideas.

I don't have or need a website, cloud or email is what I was thinking for delivery but I have to look more carefully at your suggestions to see if I should more strongly consider other forms.

Headhawg, Read Only for a limited time sounds like a possibility that doesn't sound to,o complicated with the right cloud server.

JR and Headhawg, I'll look at Digify.

Dave, I'll look at G-Suite and if it looks practical, I'll ask for your VA's contact info.

Jeff, I actually stumbled onto Quick Crypt this morning but I didn't see all of the information you provided. I will look into that again, including your legitimate concern about changing date/time on the machine.

Again, thank you all.
OverlayHunter is offline   Reply With Quote Reply
Old 08-27-2020, 10:10 AM   #7
wilderness
Registered User
 
wilderness's Avatar
 
Join Date: Dec 2004
Location: 45th parallel
Posts: 2,178
Have some vague recollection of some PDF files that expired after x-Date.
No clue if the current version of Acrobat (and/or Acrobat Distiller (print driver)) offer a date.time stamp in the Security Settings (the more than 20YO version I've does not).
__________________
Best Don
wilderness is offline   Reply With Quote Reply
Old 08-27-2020, 03:56 PM   #8
Tom
The Voice of Reason!
 
Tom's Avatar
 
Join Date: Mar 2001
Location: Canandaigua, New york
Posts: 112,810
This type of file would be PERFECT to use for FREE PPs and send them to Mikesal........1 hour until file self-destructs, like Mission Impossible!

Try this.....

https://kbpdfstudio.qoppa.com/set-ex...pdf-documents/
__________________
Who does the Racing Form Detective like in this one?

Last edited by Tom; 08-27-2020 at 04:00 PM.
Tom is offline   Reply With Quote Reply
Old 08-28-2020, 07:15 AM   #9
wilderness
Registered User
 
wilderness's Avatar
 
Join Date: Dec 2004
Location: 45th parallel
Posts: 2,178
Hey Tom,
Odd how we forget these things as time passes.
To defeat the date stamp, all is required is changing the OS date.
__________________
Best Don
wilderness is offline   Reply With Quote Reply
Old 08-28-2020, 10:19 AM   #10
Dave Schwartz
 
Dave Schwartz's Avatar
 
Join Date: Mar 2001
Location: Reno, NV
Posts: 16,908
Quote:
Originally Posted by wilderness View Post
Hey Tom,
Odd how we forget these things as time passes.
To defeat the date stamp, all is required is changing the OS date.
Do that in a modern day windows scenario and a ton of software will stop working.
Dave Schwartz is online now   Reply With Quote Reply
Old 08-28-2020, 10:54 AM   #11
OverlayHunter
Registered User
 
Join Date: Oct 2003
Location: Columbus, Ohio
Posts: 396
Tom and Wilderness, thank you for the additional thoughts.

I've looked at each and every suggestion. At the moment, in terms of practicality and cost, G Suite (Dave's suggestion) seems to be the way for me to go. A couple of the other suggestions may be better solutions for others. I've posted 2 questions on the G Suite community forum but I will likely test it next week.

Thanks again to all of you for your time and good ideas.
OverlayHunter is offline   Reply With Quote Reply
Old 08-28-2020, 07:49 PM   #12
Magister Ludi
Registered User
 
Join Date: Oct 2012
Posts: 441
Ephemeral File Sharing Services

link
Magister Ludi is offline   Reply With Quote Reply
Old 08-28-2020, 09:30 PM   #13
mikesal57
Veteran
 
mikesal57's Avatar
 
Join Date: Sep 2003
Location: NEW YORK CITY
Posts: 3,670
Quote:
Originally Posted by Tom View Post
This type of file would be PERFECT to use for FREE PPs and send them to Mikesal........1 hour until file self-destructs, like Mission Impossible!

Try this.....

https://kbpdfstudio.qoppa.com/set-ex...pdf-documents/
You dont know how much damage I can do in that hour....
mikesal57 is offline   Reply With Quote Reply
Old 08-29-2020, 04:03 PM   #14
Tom
The Voice of Reason!
 
Tom's Avatar
 
Join Date: Mar 2001
Location: Canandaigua, New york
Posts: 112,810
Quote:
Originally Posted by Dave Schwartz View Post
Do that in a modern day windows scenario and a ton of software will stop working.
Even when it is correct, not all works right.
TVG will not work on my laptop - it says date and time are incorrect and then shows me what it is set to and what it shold be set to - IDENTICAL!
__________________
Who does the Racing Form Detective like in this one?
Tom is offline   Reply With Quote Reply
Reply





Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

» Advertisement
» Current Polls
Wh deserves to be the favorite? (last 4 figures)
Powered by vBadvanced CMPS v3.2.3

All times are GMT -4. The time now is 11:54 PM.


Powered by vBulletin® Version 3.8.9
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Copyright 1999 - 2023 -- PaceAdvantage.Com -- All Rights Reserved
We are a participant in the Amazon Services LLC Associates Program, an affiliate advertising program
designed to provide a means for us to earn fees by linking to Amazon.com and affiliated sites.