Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@renekorss/jquery-html5-uploader
Advanced tools
jQuery HTML5 Uploader is a lightweight jQuery plugin that lets you to quickly add an upload system a-la-Gmail into your web app.
You only need to create a dropbox element (i.e. a div) and jQuery HTML5 Uploader will do the rest. Then you can drag & drop one or more files on the element and the files will be uploaded.
It also works with the multiple input file element.
The upload function is divided into two asynchronous operations: client side, the file is loaded in the browser memory with a FileReader object. Useful if you want, for example, to show the image preview while uploading a picture. The server side operation consists in sending the binary file string to the postUrl (see settings).
It has been tested and works on Firefox and Chrome.
npm install @renekorss/jquery-html5-uploader
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.html5uploader.min.js"></script>
<script type="text/javascript">
$(function() {
$("#dropbox, #multiple").html5Uploader({
name: "foo",
postUrl: "bar.php"
});
});
</script>
<div id="dropbox"></div>
<input id="multiple" type="file" multiple>
name
: upload field identifier.postUrl
: the url to post the file data.onClientAbort
: Called when the read operation is aborted.onClientError
: Called when an error occurs.onClientLoad
: Called when the read operation is successfully completed.onClientLoadEnd
: Called when the read is completed, whether successful or not. This is called after either onload or onerror.onClientLoadStart
: Called when reading the data is about to begin.onClientProgress
: Called periodically while the data is being read.onServerAbort
: Called when the post operation is aborted.onServerError
: Called when an error occurs.onServerLoad
: Called when the post operation is successfully completed.onServerLoadStart
: Called when posting the data is about to begin.onServerProgress
: Called periodically while the data is being posted.onServerReadyStateChange
: A JavaScript function object that is called whenever the readyState attribute changes. The callback is called from the user interface thread.onSuccess
: Called when the post operation is successfully completed, the ReadyState is 4 and the HttpStatus is 200. Useful to get back informations from the server.FAQs
jQuery drag & drop file uploader
The npm package @renekorss/jquery-html5-uploader receives a total of 1 weekly downloads. As such, @renekorss/jquery-html5-uploader popularity was classified as not popular.
We found that @renekorss/jquery-html5-uploader 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.