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.
outdated-browser
Advanced tools
A time saving tool for developers. It detects outdated browsers and advises users to upgrade to a new version.
So, you're tired of people visiting your modern website with an outdated browser and not doing anything about it. Maybe they aren't "power" users, maybe it's your auntie running a last century browser trying to see awesome CSS3 animations and transforms. Let the user know that’s an outdated browser, and advise them on a better one.
With this solution you can check if the user’s browser can handle your website. If not, it will show a cool looking notice advising the user to update the browser. It’ll be up to the user to upgrade or not. Don't force the user!
That's it! As simple as it can get.
Important: Because of old browsers (e.g. IE6, IE7), we recommend to implement this plugin before any other javascripts (plugins or your own scripts) — these browsers have "strange" js errors and the plugin may not be working as intended.
Include the CSS located in the HTML head:
<link rel="stylesheet" href="your_path/outdatedbrowser/outdatedbrowser.min.css">
Include plugin's script at the bottom of the HTML body:
<script src="your_path/outdatedbrowser/outdatedbrowser.min.js"></script>
Paste the required HTML at the end of your document (see demo examples):
<div id="outdated"></div>
Call the plugin by placing the following at the bottom of the HTML body:
— Plain Javascript
//event listener: DOM ready
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
if (oldonload) {
oldonload();
}
func();
}
}
}
//call plugin function after DOM ready
addLoadEvent(function(){
outdatedBrowser({
bgColor: '#f25648',
color: '#ffffff',
lowerThan: 'transform',
languagePath: 'your_path/outdatedbrowser/lang/en.html'
})
});
Using the plugin without AJAX calls:
— Paste the required HTML at the end of your document (see demo examples):
<div id="outdated">
<h6>Your browser is out-of-date!</h6>
<p>Update your browser to view this website correctly. <a id="btnUpdateBrowser" href="http://outdatedbrowser.com/">Update my browser now </a></p>
<p class="last"><a href="#" id="btnCloseUpdateBrowser" title="Close">×</a></p>
</div>
Targeting browsers:
You can do it in one of two ways: using Internet Explorer browsers as reference or specifying a CSS property. The outcome is the same, choose what is easier for you.
Lower Than (<):
Choose the language:
Download the “lang" folder: If you have the language you want, just write the correct path for the language file in your project; If you don’t have your language, you can write your own html file, and please share it with us.
And you're done!
PS: check the "demo" folder, it may help you.
Before opening a new issue please check our FAQ page
Fork the project.
Read through the issues or report new ones.
Write some tests to make sure we don't accidentally break each other's code.
Send a pull request.
TRANSLATIONS
Rename with a proper language abbreviation: it — italian , de — german, fr — french, nl — dutch , br — brazilian portuguese, etc.
NOTE: we are using a two letter code for the language. If you have variations of the same language use URL country code, e.g.: br—brazilian portuguese; us—american english
— Wordpress Plugin by Deblyn Prado
— Ruby Gem by Luisa Lima
— Yii2 widget
— Drupal Plugin by Mag. Andreas Mayr
— Magento Extension by Joey Hoer
Made with love at Bürocratik
v1.0.2
Date: 2014-07-03
<br><br> Bürocratik
FAQs
A time saving tool for developers. It detects outdated browsers and advises users to upgrade to a new version.
The npm package outdated-browser receives a total of 384 weekly downloads. As such, outdated-browser popularity was classified as not popular.
We found that outdated-browser 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.