Sinisterly
Base64 URI Download Link Generator - Convert any file into a link - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Hacking Tools (https://sinister.ly/Forum-Hacking-Tools)
+--- Thread: Base64 URI Download Link Generator - Convert any file into a link (/Thread-Base64-URI-Download-Link-Generator-Convert-any-file-into-a-link)



Base64 URI Download Link Generator - Convert any file into a link - hacxx - 08-15-2017

[Image: glyJniq.jpg]

Base64 URI Download Link Generator is a tool that will convert any file into a downloadable html link. This is useful in certain cases, for example you want to send an html email to a user with actionable stuff! All you have to do is open the file you want to embed, Convert to Ascii, copy the code to "Base64 URI Download Link Generator", give it a filename and extension, a name and press "Encode".

In a few seconds, depending on the size of the file, a html code with base64 encoding will be generated.

The main reason why i code this tool was because attachments are been blocked on most email providers and you won't be able to send exe, zip, cmd, lnk, etc. This is a security method implemented by email providers to reduce virus spreading and "Base64 URI Download Link Generator" is the way to use if you want to send suspicious files to a user and still bypass email providers filters.

Note: The program is a bit slow.

Note 2: Data URI Scheme doesn't work with IE or EDGE. Also there is a premium tool based on this program called "URI FUD Generator" that reduces antivirus detection on certain files (not 100% FUD but with good results)! PM me for more info.

Download:
http://www.mediafire.com/file/xwmm726kobqdsbl/Base64_URI_Download_Link_Generator.rar

Virustotal:
https://virustotal.com/#/file/f37dd22bb44f5fbd798ac25db6a0f47e32c64c34c12e9271348eb0f6a88e90a8/detection


RE: Base64 URI Download Link Generator - Convert any file into a link - titbang - 08-15-2017

Thanks for the share. You can do this relatively easily if you are using Linux and bash as well.

Code:
#!/bin/bash base = "$(cat $1 | base64)" echo "<a download='$1' href='data:application/octet-stream;base64,$base'>Click Me</a>" > $2

Usage: ./encode.sh <input file> <output html>


RE: Base64 URI Download Link Generator - Convert any file into a link - Bish0pQ - 08-15-2017

This is quite nice. I will definitely be trying this out and see if I have use for it. Looks decent as well, one more question, do you have like a website where you upload all of your programs/webpages? Since you made quite a lot of pages but haven't seen them on a website or something from you. You should bundle them on a single website.


RE: Base64 URI Download Link Generator - Convert any file into a link - mothered - 08-15-2017

It's functional and certainly worthy of keeping on hand.

Appreciate the contribution, thanks.