x
This website is using cookies. More info. That's Fine
Welcome to FrostCandy's PassBank
Use FrostCandy's PassBank

By using FrostCandy's PassBank (FCPB), anyone can use long secure passwords without saving them to insecure files or pieces of paper.

Remember simple passwords in your head and use them to secure all your sites and devices when you need them.

Help protect Grandma from getting hacked, go forth and spread the good news of FCPB on your social media.

Direct Link to FCPB:
(Bookmark It) https://passbank.frostcandy.com/pass
Browser Extentions:
Videos:
Support FrostCandy
I would be happy to work for free, but I need to eat. If you use the software please consider supporting it. Help buy me the time I need to continue working on projects like this for those who can not pay. $5.00 $10.00 $20.00, anything helps.
Why should I trust FrostCandy?
Anyone with simple javascript skill can read the FCPB code and verify that it does not store your password on our server.

Notice:
Make sure you only use the official FCPB products from:
passbank.frostcandy.com
Testimony
Hey, I know your password is: SWFSOUND

Your computer was infected with my malware, RAT (Remote Administration Tool), your browser wasn't updated / patched, in such case it's enough to just visit some website where my iframe is placed to get automatically infected, if you want to find out more - Google: "Drive-by exploit".

My malware gave me full access and control over your computer, meaning, I got access to all your accounts (see password above) and I can see everything on your screen, turn on your camera or microphone and you won't even notice about it.

I collected all your private data and I RECORDED YOU (through your webcam) SATISFYING YOURSELF!

After that I removed my malware to not leave any traces.

I can send the video to all your contacts, post it on social network, publish it on the whole web, including the darknet, where the sick people are, I can publish all I found on your computer everywhere!

Only you can prevent me from doing this and only I can help you out in this situation.

Transfer exactly 1200$ with the current bitcoin (BTC) price to my bitcoin address.

It's a very good offer, compared to all that horrible shit that will happen if I publish everything.

You can easily buy bitcoin here: www.paxful.com , www.coingate.com , www.coinbase.com , or check for bitcoin ATM near you, or Google for other exchanger. You can send the bitcoin directly to my address, or create your own wallet first here: www.login.blockchain.com/en/#/signup/ , then receive and send to mine.

My bitcoin address is: 1PuxZLDEz2as13NKcTzC2BGadF2g2zhdfo

Copy and paste my address, it's (cAsE-sEnSEtiVE)

I give you 2 days time to transfer the bitcoin.

As I got access to this email account, I will know if this email has already been read. If you get this email multiple times, it's to make sure that you read it, my mailer script is configured like this and after payment you can ignore it. After receiving the payment, I will remove everything and you can life your live in peace like before.

Next time update your browser before browsing the web.
Web Developers
Let's face it, getting the general population to create good secure passwords is a real problem. Pa$$word1 will pass most of our checks. It may be easy to remember, but it's not very secure.

Making the process easier on your users means more customers, especially if you are taking steps to making them more secure.

As you see below, add the FCPB logo next to your password and password update form boxes. The customer clicks the logo and gets a FCPB popup pre-filled with your websites URL.

Example:
Here is some simple example code you could put on your site to make it work:

HTML
The div element needs to be on the top layer of your site, typically you just put it directly after the <body> tag. This is where the popup action happens.

The image element goes next to your password, and password update fields for people to click on.

<!-- Put this after your <body> tag: -->
<div id="FCPBmodal"><div id="FCPBmodalContent"></div></div>

<!-- Drop this image tag next to your password boxes -->
<img id="FCPBimage" src="fcpb.png"/>
CSS
Put the following style block inside your <head> tags:

<style>
#FCPBmodal{display:none;position:fixed;z-index:1;left:0;top:0;width:100%;height:100%;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4);padding-top: 10px;cursor:pointer;}
#FCPBmodalContent{position:relative;margin:auto;border:1px solid #000;width:300px;height:460px;
-webkit-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.75);-moz-box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.75);box-shadow: 0px 0px 17px 0px rgba(0,0,0,0.75);
}
#FCPBiframe{width:300px;height:460px;border:none;margin:0;padding:0;}
#FCPBimage{width:25px;height:25px;cursor:pointer;vertical-align:text-bottom;}
#FCPBclose{position:absolute;top:0px;right:0px;background-color:#FA130B;width:25px;height:25px;border-radius:0px 0px 0px 10px;border:1px solid #000;text-align:center;}
</style>

Javascript
Put the following script block inside your <head> tags:
(optional) Set the FCPBurl to your site url

<script>
document.onreadystatechange = function(){
if(document.readyState === "complete"){
document.getElementById("FCPBimage").onclick = function() {
// (Optional) Ex: My.Site.Com or Site.Com
var FCPBurl = "";
// If you did not set FCPBurl
// it is automatically current url.
FCPBurl = (FCPBurl!="")?FCPBurl:window.location.hostname.toLowerCase();
document.getElementById("FCPBmodalContent").innerHTML = "<div id=\"FCPBclose\">&#10006;</div><iframe id=\"FCPBiframe\" src=\"https://passbank.frostcandy.com/passbankorg.php?url="+FCPBurl+"\"></iframe>";
document.getElementById("FCPBmodal").style.display = "block";
}
window.onclick = function(event) {if(event.target.id == "FCPBmodal" || event.target.id == "FCPBclose") {document.getElementById("FCPBmodal").style.display = "none";}}
}
}
</script>

FCPB Image
Download and use this standardized logo so customers recognize and understand what it is for when they see it.

After you upload the image to your server you need to make sure the image in your HTML section has the correct path to the image on your webserver.