Skip to main content

Here's what a VPN can't protect you from (but you need to use it)

The abbreviation " VPN " has slowly become established among average Internet users, which is certainly good, but the problem is that people have started to see VPN as the ultimate solution to all problems.

Create your own data encryption program

Create your own data encryption program

Create a data encryption program in Notepad in 3 minutes!

How?

All you need is Notepad++ (maybe a regular Notepad). If you are ready to get started!

Open Notepad ++ and paste the code below this paragraph. Then click on "Save As.." and select "All files" below, and for the name type "encrypt .vbs" (you can do anything else but it must be at the end of .vbs ).

set x = WScript.CreateObject("WScript.Shell")
mySecret = inputbox("Input password and press OK for encryption")
mySecret = StrReverse(mySecret)
x.Run "%windir%\notepad"
wscript.sleep 1000
x.sendkeys encode(mySecret)


function encode(s)
For i = 1 To Len(s)
newtxt = Mid(s, i, 1)
newtxt = Chr(Asc(newtxt)+5)
coded = coded & newtxt
Next
encode = coded
End Function

Save it somewhere, e.g. on the desktop.

Now open Notepad++ again and paste that SAME Code again. But now we have to change something.

Find line number 12 and at the end of the line you will see that it says "+5"

All you have to do is delete that Plus (+) and replace it with Minus (-).

Save this file in the same way as the first one, but put "decrypt.vbs " for the name

You now have 2 files, the first to encrypt your password and the second to decrypt.

More about Encryption at this link.

Comments

Popular this month

Self-destructive email

Self-Destructing email is a service that offers a unique email address for a specified period, usually 10 minutes. After the scheduled period of the email address expires, it is automatically destroyed and all messages that arrived at that address. IMPORTANT : These email addresses can be detected! Look at the alternative .

AI assistants - comparison for 2018

Personal assistants with artificial intelligence are improving more and faster as time goes on. We now have four leading AI assistants coming to us from four different companies. Of course, every company wants to have the best assistant, so tests are done to get ranking results.

How to hack WiFi using Android device

" How to hack wifi " - is one of the common questions I get, so I decided to present here some Android applications that can help with that. Let me immediately mention: in this text, you will not learn how to hack a WiFi password, but how to hack other users on that network. If you still want to hack your WiFi password, look for instructions HERE .

When can we expect Street View from Serbia on the maps?

How did we get overwhelmed by the news that Google vehicles have arrived that are mapping the streets of cities and in our country, I believe you are wondering when we will be able to see our cities on the maps?

How to change IMEI number on Android phone?

IMEI is an abbreviation of "international mobile equipment identity" and each mobile phone should have a unique IMEI number. You cannot change this number with the operator, but you can temporarily change it on your device. It allows the operator to accurately identify your device and thus enable/disable network services. Also, you can use the possibility of changing the IMEI number, at least for a short time, if you know exactly what you want, but I leave those ideas to you because this is an educational article.