
Security News
Google’s OSV Fix Just Added 500+ New Advisories — All Thanks to One Small Policy Change
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
An ES6 class to improve uploaders. Works great with Bootstrap but works with any input.
import Superfile from "./superfile.js";
Superfile.init();
Create a file input. It needs to be wrapped by a div with the superfile
class.
You can add a clear button and a preview image if you want.
<div class="mb-3 superfile">
<label for="formFile" class="form-label">Default file input example</label>
<div class="input-group">
<input class="form-control" type="file" id="formFile" name="file" />
<button class="btn btn-outline-secondary superfile-clear" type="button">Clear</button>
</div>
<img class="img-fluid superfile-preview" />
</div>
These are set through data
attributes:
You can use the regular accept
attribute.
<input type="file" accept=".gif,.jpg,.jpeg,.png,.doc,.docx" /> <input type="file" accept="image/*" />
img:not([src]) {
display: none;
}
.superfile:not(.superfile-ready) {
visibility: hidden;
}
.superfile-drag input {
background: palegoldenrod;
}
When set, the preview will get a src
attribute like blob:http://someaddress/30fde1c6-911e-4b50-a823-e778d100ffb3
and be displayed
https://codepen.io/lekoalabe/pen/wvdVoNa
This is a simple improvement over regular file input.
If you need more, look at :
FAQs
What's better than a file input ? A superfile input
We found that superfile demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
A data handling bug in OSV.dev caused disputed CVEs to disappear from vulnerability feeds until a recent fix restored over 500 advisories.
Research
/Security News
175 malicious npm packages (26k+ downloads) used unpkg CDN to host redirect scripts for a credential-phishing campaign targeting 135+ organizations worldwide.
Security News
Python 3.14 adds template strings, deferred annotations, and subinterpreters, plus free-threaded mode, an experimental JIT, and Sigstore verification.