When you setting up a service which is supposed to receive and transfer important data, one of the main concerns is security and basically how to keep the data safe when it is passing an unsecure network. There is a lot of ways to secure your connection like using different protocols like https, SSL, TLS, etc… but sometimes you are dealing with a service which does not support any of those protocols, in this case you have to use another service as a third party to address this issue. The real question is what protocol is going to fulfill your needs as a fast, flexible and multi platform service! <center>https://i.imgsafe.org/9ef165701e.jpg</center> <center>[Source](https://n0where.net/stunnel/)</center> ## <center>Introducing Stunnel</center> Stunnel is a third party application which can help you to secure your data by encrypting it with different protocols outside your main application. ### Let’s put it in a scenario to understand how it really works Imagine you have a database which is listening on the port 1433 and you want your users to connect to the database in a secure and encrypted network At first you have to run stunnel on your server side with the IP address 192.168.1.100(note that if your service supports protocols like SSL, you don’t need to have the server side, just install stunnel on the client) and configure it in a way that the stunnel process listens on a specific port (like 10001) and sends data received on that port to the main service port (in this case 1433) And on the client side you should install stunnel and configure it in a way that the stunnel receives on a specific port (let’s say 6004) and send the data to the server 192.168.1.100 port 10001. Finally you need to configure your service on the client side to start the session on its IP(127.0.0.1) and port 6004. Let’s list all the actions that happen when you start your service 1. Client request to connect to its local IP on the port 6004 2. Stunnel receives the connection request and pass it to 192.168.1.100:10001 3. Server receives the request and send it to its local IP on the port 1433 https://i.imgsafe.org/9ac9be5e32.jpg As you can see stunnel is exactly in the middle and encrypts all the data Ok enough about the concept, now we are going to dirty our hands with installing and configuring the stunnel. Before installing stunnel we need to install openssl as a perquisite and for making certificate. ## <center>Installing openssl</center> (I added installaition of openssl just in case if you needed that to generate certificate) To check whether the openssl is installed on your server simply run following command: #### openssl version Result should be something like this: “OpenSSL 1.0.1e-fips 11 Feb 2013” If it couldn’t find the openssl command then you need to install it first. #### mkdir /src #### cd /src #### wget https://www.openssl.org/source/openssl-1.0.2-latest.tar.gz #### tar -zxf filename #### cd openssl-1.0.2a #### ./config #### make #### make test #### make install To make sure that you are using the latest version even if you had an older version already installed #### mv /usr/bin/openssl /root/ #### ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl Now check your openssl version again #### openssl version Now you should see an output like this: “OpenSSL 1.0.2k 26 Jan 2017” ## <center>Installing Stunnel</center> Download the latest version #### cd /src #### wget https://www.stunnel.org/downloads/stunnel-5.40.tar.gz Keep in mind that the version might change, if you get error go to the [stunnel]( https://www.stunnel.org/downloads.html) download page and see the latest version number #### tar -xvf stunnel-5.40.tar.gz #### yum install gcc #### ./configure #### make #### make install #### stunnel -version Now you got your stunnel installed ### Generating the private key Stunnel have provided some scripts in its source to make it easier for users to create certificate pairs #### cd /src/stunnel-5.40/tools #### ./makecert.sh Note that you can fill the requested questions or simply just press enter <center>https://i.imgsafe.org/9ca3d6e832.jpg</center> This command is going to create a stunnel.pem file including the private key and certificate Now we need the configuration file for stunnel which by default resides in /src/stunnel-5.40/tools Remember that to start stunnel you need to pass the conf file as a parameter to the command #### (Example: stunnel /src/stunnel-5.40/tools/stunnel.conf) You can create the configuration file as server mode, client mode and both, also you can have different options and protocols for your stunnel but here to keep it simple and show you how it is done, I am going to create two config file with the basic configuration To do that you need a stunnel.pem(for server) file and a certificate.crt(for client) file Go head and edit the stunnel.conf #### vi stunnel.conf ``` debug = 7 output = stunnel.log cert = stunnel.pem [test] accept = 127.0.0.1:10001 connect = 127.0.0.1:1433 ``` <center>https://i.imgsafe.org/9dc1d62e84.jpg</center> Now create a file #### vi client.conf ``` debug = 7 output = stunnel-server.log [test] client = yes accept = 127.0.0.1:6004 connect = 127.0.0.1:10001 CAfile = certificate.crt ``` <center>https://i.imgsafe.org/9dc679a432.jpg</center> To create certificate.crt you can easily copy the certificate from the .pem file Your certificate.crt file should look like this: <center>https://i.imgsafe.org/9def451a87.jpg</center> For more options and details click [here](https://www.stunnel.org/static/stunnel.html) In this video I am going to show you the data captured from port 10001 which is encrypted and port 1433 which is plain (something was wrong with youtube, so I had to share it by [drobbox](https://www.dropbox.com/home?preview=%DB%B2%DB%B0%DB%B1%DB%B7-%DB%B0%DB%B2-%DB%B0%DB%B7+at+%DB%B1%DB%B8-%DB%B4%DB%B1-%DB%B5%DB%B9.mp4)) That is it, now you have stunnel service up, running and working properly in basic level ### I hope you guys find it useful enough to upvote and resteem ## <center>This post is 100% powered up</center> ## <center>https://i.imgsafe.org/cd2d14ec42.gif</center> ## <center>https://i.imgsafe.org/cd2d0cf565.gif</center> ## <center>https://i.imgsafe.org/cd2d06f677.gif</center> <center> https://i.imgsafe.org/cd2d1dba11.gif</center> <center>Tue Feb 7 19:02:16 IST 2017</center>
author | meysam |
---|---|
permlink | stunnel-how-to-secure-your-connection-step-by-step-guide-with-configuration-files |
category | tutorial |
json_metadata | {"tags":["tutorial","linux","learning","beginner","security"],"image":["https://i.imgsafe.org/9ef165701e.jpg","https://i.imgsafe.org/9ac9be5e32.jpg","https://i.imgsafe.org/9ca3d6e832.jpg","https://i.imgsafe.org/9dc1d62e84.jpg","https://i.imgsafe.org/9dc679a432.jpg","https://i.imgsafe.org/9def451a87.jpg","https://i.imgsafe.org/cd2d14ec42.gif","https://i.imgsafe.org/cd2d0cf565.gif","https://i.imgsafe.org/cd2d06f677.gif","https://i.imgsafe.org/cd2d1dba11.gif"],"links":["https://n0where.net/stunnel/","https://www.openssl.org/source/openssl-1.0.2-latest.tar.gz","https://www.stunnel.org/downloads/stunnel-5.40.tar.gz","https://www.stunnel.org/downloads.html","https://www.stunnel.org/static/stunnel.html","https://www.dropbox.com/home?preview=%DB%B2%DB%B0%DB%B1%DB%B7-%DB%B0%DB%B2-%DB%B0%DB%B7+at+%DB%B1%DB%B8-%DB%B4%DB%B1-%DB%B5%DB%B9.mp4"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-02-07 16:01:12 |
last_update | 2017-02-07 18:07:09 |
depth | 0 |
children | 5 |
last_payout | 2017-03-10 19:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 17.120 HBD |
curator_payout_value | 3.129 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6,351 |
author_reputation | 24,504,907,990,035 |
root_title | "Stunnel - how to Secure your connection(Step by Step guide with configuration files)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 2,446,047 |
net_rshares | 49,582,219,075,377 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
berniesanders | 0 | 4,356,414,948,803 | 50% | ||
penambang | 0 | 4,993,354,019 | 30% | ||
berkah | 0 | 45,427,424,052 | 100% | ||
proskynneo | 0 | 3,782,729,893,825 | 55% | ||
val-b | 0 | 7,465,705,139,708 | 55% | ||
badassmother | 0 | 309,291,500,030 | 75% | ||
kushed | 0 | 2,454,358,440,056 | 100% | ||
silver | 0 | 291,255,069,262 | 50% | ||
silversteem | 0 | 589,944,921,687 | 50% | ||
ihashfury | 0 | 93,964,649,587 | 43% | ||
nextgencrypto | 0 | 1,865,740,818,747 | 50% | ||
rossco99 | 0 | 78,288,320,555 | 30% | ||
wang | 0 | 759,757,962,608 | 54% | ||
jaewoocho | 0 | 2,175,065,858,641 | 55% | ||
steemit200 | 0 | 1,063,216,932,675 | 75% | ||
xeroc | 0 | 128,388,405,581 | 30% | ||
steem-id | 0 | 37,554,761,377 | 30% | ||
clayop | 0 | 1,058,751,699,544 | 55% | ||
lovejoy | 0 | 16,751,270,504 | 30% | ||
au1nethyb1 | 0 | 1,177,929,423,611 | 75% | ||
jason | 0 | 19,076,255,312 | 43% | ||
benjojo | 0 | 1,264,363,989,502 | 100% | ||
boatymcboatface | 0 | 32,728,705,027 | 30% | ||
pairmike | 0 | 11,025,403,288 | 30% | ||
pheonike | 0 | 11,959,742,354 | 6% | ||
proctologic | 0 | 1,603,019,244 | 2% | ||
donkeypong | 0 | 1,048,015,117,804 | 50% | ||
hcf27 | 0 | 4,124,463,522 | 100% | ||
ash | 0 | 123,316,062,588 | 100% | ||
relativelyboston | 0 | 1,052,207,904 | 100% | ||
acidsun | 0 | 21,791,064,817 | 50% | ||
jademont | 0 | 17,327,031,657 | 100% | ||
steemship | 0 | 533,539,541,221 | 60% | ||
spaninv | 0 | 1,207,492,319 | 100% | ||
instructor2121 | 0 | 54,236,112,864 | 100% | ||
murh | 0 | 1,356,510,045 | 10% | ||
blakemiles84 | 0 | 22,856,423,959 | 30% | ||
theshell | 0 | 7,220,057,033 | 30% | ||
thecryptofiend | 0 | 323,788,995,640 | 100% | ||
drinkzya | 0 | 24,294,370,673 | 100% | ||
pangur-ban | 0 | 2,420,813,235 | 100% | ||
ratel | 0 | 15,711,260,864 | 100% | ||
thecryptodrive | 0 | 182,554,835,856 | 100% | ||
pseudonymous | 0 | 303,813,367 | 100% | ||
michaelx | 0 | 3,473,212,228 | 30% | ||
anwenbaumeister | 0 | 547,726,169,568 | 60% | ||
grandpere | 0 | 60,550,432,398 | 100% | ||
albertogm | 0 | 3,896,564,855 | 30% | ||
crok | 0 | 5,525,402,116 | 100% | ||
christoph3 | 0 | 5,881,743,354 | 100% | ||
tyler-fletcher | 0 | 3,895,715,463 | 100% | ||
razvanelulmarin | 0 | 41,444,157,706 | 100% | ||
fyrstikken | 0 | 56,379,091,339 | 1% | ||
clement | 0 | 6,211,623,713 | 100% | ||
isteemit | 0 | 32,088,132,257 | 100% | ||
skapaneas | 0 | 12,277,818,502 | 100% | ||
venuspcs | 0 | 87,620,036,182 | 100% | ||
sgtechservices | 0 | 21,397,981,847 | 100% | ||
thebatchman | 0 | 1,119,714,361 | 3% | ||
good-karma | 0 | 62,691,249,417 | 43% | ||
roelandp | 0 | 139,347,619,425 | 30% | ||
billykeed | 0 | 10,227,750,239 | 86% | ||
lehard | 0 | 12,954,845,030 | 100% | ||
joshbreslauer | 0 | 460,107,256,946 | 100% | ||
stranger27 | 0 | 8,014,935,983 | 60% | ||
furion | 0 | 5,723,256,161 | 1% | ||
on0tole | 0 | 9,798,720,237 | 100% | ||
anasya | 0 | 19,179,364,682 | 100% | ||
mrwang | 0 | 47,120,798,446 | 100% | ||
vl248 | 0 | 9,387,255,301 | 100% | ||
sveokla | 0 | 4,537,957,401 | 100% | ||
marinabogumil | 0 | 5,636,348,432 | 100% | ||
jesta | 0 | 1,523,132,727,241 | 100% | ||
anmuravjev | 0 | 1,439,723,177 | 100% | ||
jaycobbell | 0 | 14,774,170,030 | 100% | ||
condra | 0 | 49,460,775,378 | 100% | ||
raymondspeaks | 0 | 1,393,901,311 | 30% | ||
kell234 | 0 | 1,841,200,851 | 100% | ||
thebatchman1 | 0 | 69,194,420 | 3% | ||
hyiparena | 0 | 4,201,146,806 | 100% | ||
shla-rafia | 0 | 9,712,807,537 | 22.5% | ||
arcange | 0 | 70,281,816,154 | 100% | ||
the-future | 0 | 30,530,393,005 | 100% | ||
cryptojoy.com | 0 | 224,919,341 | 30% | ||
konti | 0 | 5,173,511,815 | 100% | ||
fiona777 | 0 | 4,426,923,320 | 70% | ||
phenom | 0 | 2,580,328,390 | 30% | ||
fubar-bdhr | 0 | 35,453,296,118 | 40% | ||
sharker | 0 | 8,353,492,110 | 100% | ||
zaebars | 0 | 50,018,043,896 | 100% | ||
jedau | 0 | 5,485,058,958 | 100% | ||
sokoloffa | 0 | 9,872,199,032 | 100% | ||
mondeja | 0 | 3,126,412,582 | 100% | ||
sergey44 | 0 | 375,396,898 | 100% | ||
crypto.owl | 0 | 7,411,090,519 | 100% | ||
marius19 | 0 | 116,829,007,631 | 100% | ||
winstonwolfe | 0 | 31,724,751,034 | 100% | ||
happyphoenix | 0 | 58,380,150 | 3% | ||
kooshikoo | 0 | 10,079,611,528 | 40% | ||
claudiop63 | 0 | 87,984,096,222 | 100% | ||
ace108 | 0 | 37,520,465,012 | 100% | ||
tygergamer | 0 | 21,598,990,300 | 100% | ||
nelu.ceban | 0 | 3,515,255,188 | 100% | ||
bkkshadow | 0 | 1,400,797,747 | 3% | ||
smailer | 0 | 45,095,672,360 | 100% | ||
dmilash | 0 | 14,627,279,117 | 100% | ||
jed78 | 0 | 6,002,823,471 | 100% | ||
shortcut | 0 | 27,163,169,373 | 30% | ||
steemdrive | 0 | 90,171,438,358 | 100% | ||
gomeravibz | 0 | 38,214,508,649 | 100% | ||
litrbooh | 0 | 2,117,389,944 | 100% | ||
nekromarinist | 0 | 19,139,177,795 | 100% | ||
sykochica | 0 | 55,657,929,443 | 100% | ||
always1success | 0 | 5,948,571,702 | 100% | ||
toxichan | 0 | 972,632,811 | 70% | ||
brendio | 0 | 9,481,877,517 | 24% | ||
asdes | 0 | 3,014,452,043 | 100% | ||
mama-steem | 0 | 1,438,534,823 | 100% | ||
stephen.king989 | 0 | 21,660,119,727 | 70% | ||
uuuhha | 0 | 11,858,165,192 | 100% | ||
romancs | 0 | 2,751,914,749 | 100% | ||
shiri | 0 | 1,676,863,864 | 100% | ||
ipumba | 0 | 3,249,988,452 | 100% | ||
d3nv3r | 0 | 2,366,769,697 | 40% | ||
riosparada | 0 | 10,189,856,695 | 100% | ||
dolov | 0 | 2,043,865,535 | 50% | ||
bigsambucca | 0 | 245,164,482 | 100% | ||
steemradio | 0 | 172,221,134 | 30% | ||
randyclemens | 0 | 10,224,952,129 | 100% | ||
krishtopa | 0 | 54,195,870,233 | 100% | ||
future24 | 0 | 22,482,584,705 | 40% | ||
darthnava | 0 | 10,408,984,167 | 60% | ||
villainblack | 0 | 5,803,353,400 | 100% | ||
cmorton | 0 | 835,807,957 | 12% | ||
numberone | 0 | 4,950,876,900 | 100% | ||
vegascomic | 0 | 16,683,745,502 | 100% | ||
cryptoblu | 0 | 97,126,400 | 100% | ||
virtualgrowth | 0 | 3,471,649,366 | 20% | ||
jayfox | 0 | 1,245,055,401 | 100% | ||
seadroo22 | 0 | 3,814,098,903 | 100% | ||
dollarvigilante | 0 | 1,198,223,803,617 | 100% | ||
anotherjoe | 0 | 244,125,105,183 | 100% | ||
serejandmyself | 0 | 295,833,652,850 | 100% | ||
demo | 0 | 116,069,722 | 43% | ||
jsantana | 0 | 12,877,686,779 | 100% | ||
mrlogic | 0 | 12,688,144,760 | 100% | ||
professorx | 0 | 726,085,288 | 100% | ||
barrycooper | 0 | 163,509,555,052 | 100% | ||
sethlinson | 0 | 18,071,923,980 | 100% | ||
hilarski | 0 | 219,379,628,666 | 100% | ||
craigwilliamz | 0 | 4,152,278,655 | 100% | ||
imag1ne | 0 | 1,723,540,720 | 100% | ||
shadowspub | 0 | 4,749,464,467 | 30% | ||
leno4ek | 0 | 1,763,776,649 | 100% | ||
escapeamericanow | 0 | 6,085,995,132 | 100% | ||
englishtchrivy | 0 | 29,122,187,533 | 50% | ||
nulliusinverba | 0 | 890,784,104 | 30% | ||
stephenkendal | 0 | 17,296,006,910 | 100% | ||
charlie777pt | 0 | 11,306,713,351 | 100% | ||
ashleywilliamz | 0 | 1,619,240,103 | 100% | ||
mikehere | 0 | 22,587,278,366 | 100% | ||
uwelang | 0 | 4,439,575,013 | 100% | ||
annaarthur | 0 | 8,784,455,458 | 100% | ||
randomli | 0 | 1,648,533,537 | 100% | ||
nadin3 | 0 | 5,553,088,685 | 100% | ||
xanoxt | 0 | 20,070,403,633 | 100% | ||
victoriart | 0 | 8,831,645,824 | 100% | ||
l0k1 | 0 | 5,188,420,514 | 3% | ||
maryfromsochi | 0 | 1,997,384,222 | 100% | ||
tatianka | 0 | 2,011,223,261 | 100% | ||
thecyclist | 0 | 1,362,346,664,020 | 50% | ||
zettar | 0 | 1,497,762,356 | 100% | ||
betamusic | 0 | 27,884,881,658 | 100% | ||
rada | 0 | 975,169,992 | 100% | ||
ebargains | 0 | 7,191,867,292 | 100% | ||
kiwideb | 0 | 56,174,527,713 | 100% | ||
jacobts | 0 | 6,632,334,511 | 60% | ||
elena-singer | 0 | 5,826,818,182 | 100% | ||
renzoarg | 0 | 11,478,552,181 | 100% | ||
finleyexp | 0 | 992,248,236 | 100% | ||
dexter-k | 0 | 74,772,748,109 | 100% | ||
charlieshrem | 0 | 1,174,053,928,672 | 100% | ||
tracemayer | 0 | 4,688,620,436 | 30% | ||
feruz | 0 | 114,870,247 | 43% | ||
burnin | 0 | 11,900,573,640 | 100% | ||
anton333 | 0 | 5,315,022,787 | 100% | ||
gringalicious | 0 | 99,231,509,501 | 50% | ||
steemsquad | 0 | 1,536,410,966 | 100% | ||
pickoum | 0 | 22,840,421,010 | 100% | ||
ekaterinka | 0 | 1,850,076,303 | 100% | ||
michelle.gent | 0 | 129,848,538,996 | 100% | ||
clayboyn | 0 | 37,777,550,732 | 100% | ||
develcuy | 0 | 4,448,159,796 | 100% | ||
lajulius | 0 | 9,157,963,798 | 100% | ||
jang | 0 | 6,190,917,361 | 42% | ||
borishaifa | 0 | 6,555,769,382 | 100% | ||
mapalatv | 0 | 1,146,914,911 | 100% | ||
teemsteem | 0 | 103,529,514 | 100% | ||
thegame | 0 | 519,523,384 | 10% | ||
haphazard-hstead | 0 | 22,707,687,484 | 100% | ||
fortinbuff | 0 | 15,677,858,406 | 100% | ||
steembets | 0 | 527,597,936 | 10% | ||
luzcypher | 0 | 113,887,652,058 | 100% | ||
crimson | 0 | 404,787,775 | 55% | ||
grisha-danunaher | 0 | 14,358,298,598 | 60% | ||
dylanhobalart | 0 | 14,212,579,631 | 100% | ||
curie | 0 | 454,147,421,807 | 100% | ||
killbis | 0 | 7,950,722,973 | 100% | ||
cebymaster | 0 | 5,596,807,135 | 100% | ||
htyfn | 0 | 2,075,430,248 | 100% | ||
rusteemitblog | 0 | 6,015,697,863 | 100% | ||
food-creator | 0 | 5,537,064,391 | 100% | ||
beginningtoend | 0 | 40,556,827,753 | 100% | ||
kaktus1818 | 0 | 148,983,940 | 100% | ||
orenshani7 | 0 | 5,676,448,681 | 100% | ||
gamer00 | 0 | 112,007,204,304 | 100% | ||
expat | 0 | 122,969,590 | 100% | ||
therajmahal | 0 | 1,910,651,606 | 100% | ||
steemtrail | 0 | 35,924,303,257 | 100% | ||
miqdad | 0 | 147,564,523 | 100% | ||
hendrikdegrote | 0 | 4,852,564,596,051 | 55% | ||
marel | 0 | 1,252,984,317 | 100% | ||
steemlift | 0 | 2,682,812,667 | 100% | ||
galveston | 0 | 2,192,615,104 | 50% | ||
tomino | 0 | 150,314,494,567 | 100% | ||
revostrike | 0 | 139,789,862 | 30% | ||
alcibiades | 0 | 22,179,903,664 | 100% | ||
tdv.witness | 0 | 27,711,747,723 | 100% | ||
sherry-dow | 0 | 95,355,343 | 100% | ||
ianboil | 0 | 689,622,264 | 30% | ||
zatrhas | 0 | 2,065,752,680 | 40% | ||
zathras | 0 | 3,081,888,006 | 40% | ||
ebryans | 0 | 7,978,690,714 | 50% | ||
jessamynorchard | 0 | 34,685,448,022 | 100% | ||
steemspeak | 0 | 229,392,883 | 1% | ||
ejhaasteem | 0 | 13,571,448,155 | 100% | ||
fyrst-witness | 0 | 367,880,207 | 1% | ||
max-max | 0 | 2,932,724,733 | 100% | ||
nataliia | 0 | 158,395,346 | 100% | ||
garvofe | 0 | 5,160,149,601 | 100% | ||
steemland.com | 0 | 526,456,124 | 10% | ||
expatembassy | 0 | 116,977,957 | 100% | ||
eroche | 0 | 28,227,342,250 | 100% | ||
sqube | 0 | 2,957,563,549 | 1% | ||
maxse | 0 | 3,497,186,601 | 100% | ||
gardening-trail | 0 | 3,285,191,434 | 100% | ||
business-trail | 0 | 983,264,812 | 100% | ||
crypto-trail | 0 | 356,151,396 | 100% | ||
chessminator | 0 | 127,348,156 | 100% | ||
catto000 | 0 | 6,774,315,540 | 50% | ||
liliana.duarte | 0 | 33,138,829,359 | 100% | ||
foraging-trail | 0 | 1,366,114,833 | 100% | ||
baerdric | 0 | 30,392,760,678 | 100% | ||
gligli060 | 0 | 1,245,871,699 | 100% | ||
commenthunter | 0 | 740,753,397 | 50% | ||
gutzofter | 0 | 44,107,934,038 | 100% | ||
grildrig | 0 | 3,806,239,448 | 100% | ||
teofilex11 | 0 | 11,421,113,431 | 100% | ||
alex1983ch | 0 | 4,442,768,898 | 100% | ||
technovedanta | 0 | 28,480,965,714 | 100% | ||
esteemapp | 0 | 119,250,840 | 43% | ||
chiliec | 0 | 14,578,735,956 | 100% | ||
steemprentice | 0 | 11,350,002,549 | 30% | ||
engagement | 0 | 1,903,993,319,821 | 50% | ||
damiendecoster | 0 | 923,372,157 | 100% | ||
finder | 0 | 568,688,658 | 100% | ||
taskmanager | 0 | 34,931,287,885 | 50% | ||
seablue | 0 | 5,243,954,637 | 50% | ||
timm | 0 | 381,850,168 | 100% | ||
steemittalk | 0 | 2,605,503,390 | 100% | ||
steemychess | 0 | 555,290,113 | 100% | ||
cardboard | 0 | 3,842,097,591 | 80% | ||
beeskee | 0 | 2,781,280,077 | 50% | ||
gildar | 0 | 593,551,605 | 100% | ||
littlemozart | 0 | 6,297,749,701 | 100% | ||
saleg25 | 0 | 1,224,602,952 | 50% | ||
killuminatic | 0 | 252,771,432 | 100% | ||
meysam | 0 | 11,853,850,452 | 100% | ||
pizzagate-trail | 0 | 2,274,029,627 | 100% | ||
dxrafi | 0 | 955,708,171 | 100% | ||
madlenfox | 0 | 198,934,024 | 100% | ||
steemit.news | 0 | 1,362,474,414 | 100% | ||
simply1moore | 0 | 1,887,960,656 | 100% | ||
jphenderson | 0 | 382,598,807 | 30% | ||
tamersameeh | 0 | 337,942,431 | 100% | ||
beerbot | 0 | 1,934,249,726 | 40% | ||
stmdxrafi | 0 | 325,540,173 | 100% | ||
steemnews.online | 0 | 2,050,414,885 | 100% | ||
adambalm | 0 | 17,678,708,840 | 100% | ||
ilovebatcatstew | 0 | 4,288,339,853 | 100% | ||
personz | 0 | 7,079,445,749 | 100% | ||
standpoint | 0 | 276,058,942 | 100% | ||
michaeladamparis | 0 | 3,978,097,570 | 30% | ||
richa.proffy | 0 | 441,858,886 | 100% | ||
lastminuteman | 0 | 1,609,441,009 | 25% | ||
melania | 0 | 6,308,927,161 | 100% | ||
kyle.anderson | 0 | 2,082,468,968 | 100% | ||
alexandergomez | 0 | 17,937,771,767 | 100% | ||
triddin | 0 | 29,728,688,727 | 50% | ||
internutter | 0 | 5,865,387,829 | 40% | ||
barvon | 0 | 3,259,124,236 | 96% | ||
fiction-trail | 0 | 3,388,096,238 | 100% | ||
djsonic | 0 | 484,298,883 | 100% | ||
rahul.stan | 0 | 418,557,866 | 100% | ||
red-pepper | 0 | 417,520,296 | 100% | ||
playfulfoodie | 0 | 4,142,272,635 | 80% | ||
fisteganos | 0 | 626,628,798 | 10% | ||
poetry-trail | 0 | 1,004,671,877 | 100% | ||
paleo-trail | 0 | 475,903,008 | 100% | ||
dalek | 0 | 243,052,942 | 100% | ||
bounties | 0 | 62,595,356 | 43% | ||
steempoll | 0 | 62,595,217 | 43% | ||
blockained | 0 | 143,976,473 | 100% | ||
blockchained | 0 | 594,834,326 | 100% | ||
marco.world | 0 | 143,971,625 | 100% | ||
catharcissism | 0 | 12,253,132,371 | 100% | ||
neogia | 0 | 17,693,071,158 | 100% | ||
ogochukwu | 0 | 850,795,770 | 100% | ||
smalltalk | 0 | 1,432,660,375 | 100% | ||
tonylondon | 0 | 716,602,192 | 100% | ||
vrezh | 0 | 133,507,479 | 100% | ||
arttrail | 0 | 320,384,004 | 100% | ||
blacklist | 0 | 208,572,169 | 1% | ||
benjiparler | 0 | 244,160,302 | 100% | ||
oleg81 | 0 | 728,177,061 | 100% | ||
steemstock | 0 | 150,948,656 | 100% | ||
cfreidsma | 0 | 1,391,961,721 | 100% | ||
binnielishous88 | 0 | 328,250,989 | 100% | ||
bobinson | 0 | 0 | 100% |
Upvoted, followed and Resteemed. Thank you
author | alexandergomez |
---|---|
permlink | re-meysam-stunnel-how-to-secure-your-connection-step-by-step-guide-with-configuration-files-20170207t170541811z |
category | tutorial |
json_metadata | {"tags":["tutorial"],"app":"steemit/0.1"} |
created | 2017-02-07 17:05:48 |
last_update | 2017-02-07 17:05:48 |
depth | 1 |
children | 1 |
last_payout | 2017-03-10 19:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 4,360,173,193,042 |
root_title | "Stunnel - how to Secure your connection(Step by Step guide with configuration files)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,446,434 |
net_rshares | 11,089,158,435 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
meysam | 0 | 11,089,158,435 | 100% |
@alexandergomez thank you sir, I appreciate the support followed back
author | meysam |
---|---|
permlink | re-alexandergomez-re-meysam-stunnel-how-to-secure-your-connection-step-by-step-guide-with-configuration-files-20170207t175406538z |
category | tutorial |
json_metadata | {"tags":["tutorial"],"users":["alexandergomez"],"app":"steemit/0.1"} |
created | 2017-02-07 17:54:06 |
last_update | 2017-02-07 17:54:06 |
depth | 2 |
children | 0 |
last_payout | 2017-03-10 19:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 70 |
author_reputation | 24,504,907,990,035 |
root_title | "Stunnel - how to Secure your connection(Step by Step guide with configuration files)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,446,699 |
net_rshares | 0 |
very informational #bookmark
author | bobinson |
---|---|
permlink | re-meysam-stunnel-how-to-secure-your-connection-step-by-step-guide-with-configuration-files-20181012t183012119z |
category | tutorial |
json_metadata | {"tags":["tutorial","bookmark"],"app":"steemit/0.1"} |
created | 2018-10-12 18:30:12 |
last_update | 2018-10-12 18:30:12 |
depth | 1 |
children | 0 |
last_payout | 2018-10-19 18:30:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 55,343,141,313,811 |
root_title | "Stunnel - how to Secure your connection(Step by Step guide with configuration files)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 73,164,199 |
net_rshares | 0 |
Hello @meysam, Congratulations! Your post has been chosen by the communities of SteemTrail as one of our top picks today. Also, as a selection for being a top pick today, you have been [awarded a TRAIL token for your participation](https://discord.gg/w4sdqkS) on our innovative platform...STEEM. [Please visit SteemTrail](https://discord.gg/w4sdqkS) to get instructions on how to claim your TRAIL token today. If you wish to not receive comments from SteemTrail, please reply with "Stop" to opt out. Happy TRAIL! http://i.imgur.com/vs9Ai7I.png
author | steemtrail |
---|---|
permlink | re-meysam-stunnel-how-to-secure-your-connection-step-by-step-guide-with-configuration-files-20170208t043334842z |
category | tutorial |
json_metadata | {"tags":["tutorial"],"users":["meysam"],"image":["http://i.imgur.com/vs9Ai7I.png"],"links":["https://discord.gg/w4sdqkS"],"app":"steemit/0.1"} |
created | 2017-02-08 04:33:45 |
last_update | 2017-02-08 04:33:45 |
depth | 1 |
children | 1 |
last_payout | 2017-03-10 19:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.967 HBD |
curator_payout_value | 0.033 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 550 |
author_reputation | 263,209,530,304,931 |
root_title | "Stunnel - how to Secure your connection(Step by Step guide with configuration files)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,450,869 |
net_rshares | 9,632,851,196,860 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
fuzzyvest | 0 | 4,169,911,392,044 | 100% | ||
pairmike | 0 | 33,076,971,404 | 100% | ||
pheonike | 0 | 47,840,807,616 | 30% | ||
ash | 0 | 120,860,004,611 | 100% | ||
relativelyboston | 0 | 1,052,207,904 | 100% | ||
acidsun | 0 | 21,791,266,769 | 50% | ||
jademont | 0 | 17,327,031,657 | 100% | ||
instructor2121 | 0 | 54,236,112,864 | 100% | ||
drinkzya | 0 | 24,294,370,673 | 100% | ||
pangur-ban | 0 | 2,420,832,617 | 100% | ||
ratel | 0 | 14,925,737,419 | 100% | ||
thecryptodrive | 0 | 182,554,835,856 | 100% | ||
grandpere | 0 | 46,187,996,231 | 100% | ||
albertogm | 0 | 12,988,843,381 | 100% | ||
crok | 0 | 5,525,402,116 | 100% | ||
christoph3 | 0 | 5,881,743,354 | 100% | ||
tyler-fletcher | 0 | 3,700,929,690 | 100% | ||
razvanelulmarin | 0 | 41,444,157,706 | 100% | ||
clement | 0 | 5,901,050,447 | 100% | ||
skapaneas | 0 | 14,032,022,660 | 100% | ||
venuspcs | 0 | 87,620,036,182 | 100% | ||
sgtechservices | 0 | 21,397,981,847 | 100% | ||
mrwang | 0 | 47,120,798,446 | 100% | ||
vl248 | 0 | 8,917,900,455 | 100% | ||
jaycobbell | 0 | 14,774,170,030 | 100% | ||
condra | 0 | 49,460,775,378 | 100% | ||
raymondspeaks | 0 | 4,181,760,206 | 100% | ||
arcange | 0 | 70,281,816,154 | 100% | ||
cryptojoy.com | 0 | 749,733,222 | 100% | ||
phenom | 0 | 8,601,261,365 | 100% | ||
jedau | 0 | 5,234,924,730 | 100% | ||
happyphoenix | 0 | 262,731,310 | 20% | ||
kooshikoo | 0 | 10,079,611,528 | 40% | ||
claudiop63 | 0 | 87,984,096,222 | 100% | ||
tygergamer | 0 | 21,598,990,300 | 100% | ||
nelu.ceban | 0 | 3,330,286,774 | 100% | ||
bkkshadow | 0 | 9,833,371,489 | 20% | ||
jed78 | 0 | 6,002,823,471 | 100% | ||
steemdrive | 0 | 90,171,438,358 | 100% | ||
always1success | 0 | 5,635,492,733 | 100% | ||
toxichan | 0 | 972,659,071 | 70% | ||
stephen.king989 | 0 | 21,660,119,727 | 70% | ||
shiri | 0 | 1,676,863,864 | 100% | ||
riosparada | 0 | 10,226,325,970 | 100% | ||
dolov | 0 | 2,043,865,535 | 50% | ||
bigsambucca | 0 | 245,166,983 | 100% | ||
steemradio | 0 | 516,684,662 | 100% | ||
vegascomic | 0 | 16,683,745,502 | 100% | ||
cryptoblu | 0 | 97,126,400 | 100% | ||
jayfox | 0 | 1,120,664,279 | 100% | ||
seadroo22 | 0 | 3,814,098,903 | 100% | ||
dollarvigilante | 0 | 1,198,223,803,617 | 100% | ||
anotherjoe | 0 | 244,125,105,183 | 100% | ||
serejandmyself | 0 | 295,833,652,850 | 100% | ||
mrlogic | 0 | 12,688,144,760 | 100% | ||
professorx | 0 | 830,141,881 | 100% | ||
barrycooper | 0 | 163,509,555,052 | 100% | ||
sethlinson | 0 | 18,071,923,980 | 100% | ||
hilarski | 0 | 219,379,628,666 | 100% | ||
imag1ne | 0 | 820,733,676 | 50% | ||
leno4ek | 0 | 1,675,587,817 | 100% | ||
escapeamericanow | 0 | 6,085,995,132 | 100% | ||
nulliusinverba | 0 | 2,969,328,283 | 100% | ||
charlie777pt | 0 | 11,306,713,351 | 100% | ||
mikehere | 0 | 22,587,278,366 | 100% | ||
uwelang | 0 | 4,439,575,013 | 100% | ||
randomli | 0 | 1,573,600,194 | 100% | ||
l0k1 | 0 | 12,972,534,146 | 10% | ||
maryfromsochi | 0 | 1,897,515,011 | 100% | ||
zettar | 0 | 1,422,874,238 | 100% | ||
rada | 0 | 975,169,992 | 100% | ||
ebargains | 0 | 3,018,772,916 | 100% | ||
kiwideb | 0 | 56,174,527,713 | 100% | ||
jacobts | 0 | 6,632,334,511 | 60% | ||
renzoarg | 0 | 10,713,540,038 | 100% | ||
finleyexp | 0 | 992,248,236 | 100% | ||
dexter-k | 0 | 74,772,748,109 | 100% | ||
charlieshrem | 0 | 1,174,055,819,370 | 100% | ||
tracemayer | 0 | 15,629,126,602 | 100% | ||
burnin | 0 | 11,107,718,510 | 100% | ||
develcuy | 0 | 4,225,751,806 | 100% | ||
teemsteem | 0 | 103,529,514 | 100% | ||
haphazard-hstead | 0 | 22,707,687,484 | 100% | ||
fortinbuff | 0 | 15,677,858,406 | 100% | ||
luzcypher | 0 | 111,109,904,447 | 100% | ||
grisha-danunaher | 0 | 14,358,298,598 | 60% | ||
dylanhobalart | 0 | 14,212,579,631 | 100% | ||
killbis | 0 | 7,950,722,973 | 100% | ||
kaktus1818 | 0 | 148,983,940 | 100% | ||
orenshani7 | 0 | 4,920,025,062 | 100% | ||
gamer00 | 0 | 112,007,204,304 | 100% | ||
expat | 0 | 122,969,590 | 100% | ||
steemtrail | 0 | 35,924,303,257 | 100% | ||
miqdad | 0 | 147,564,523 | 100% | ||
revostrike | 0 | 489,265,976 | 100% | ||
tdv.witness | 0 | 27,711,747,723 | 100% | ||
sherry-dow | 0 | 83,435,925 | 100% | ||
ianboil | 0 | 2,298,767,975 | 100% | ||
ebryans | 0 | 7,978,690,714 | 50% | ||
jessamynorchard | 0 | 34,685,448,022 | 100% | ||
ejhaasteem | 0 | 13,571,448,155 | 100% | ||
garvofe | 0 | 5,034,893,879 | 100% | ||
expatembassy | 0 | 116,977,957 | 100% | ||
gardening-trail | 0 | 3,285,191,434 | 100% | ||
business-trail | 0 | 983,264,812 | 100% | ||
crypto-trail | 0 | 356,151,396 | 100% | ||
chessminator | 0 | 127,348,156 | 100% | ||
liliana.duarte | 0 | 32,448,437,081 | 100% | ||
foraging-trail | 0 | 1,338,234,938 | 100% | ||
baerdric | 0 | 30,392,760,678 | 100% | ||
alex1983ch | 0 | 4,442,768,898 | 100% | ||
technovedanta | 0 | 28,480,965,714 | 100% | ||
seablue | 0 | 5,243,954,637 | 50% | ||
timm | 0 | 381,850,168 | 100% | ||
steemittalk | 0 | 2,605,503,390 | 100% | ||
steemychess | 0 | 555,290,113 | 100% | ||
gildar | 0 | 659,526,793 | 100% | ||
saleg25 | 0 | 1,224,602,952 | 50% | ||
meysam | 0 | 10,707,374,722 | 100% | ||
pizzagate-trail | 0 | 2,274,029,627 | 100% | ||
dxrafi | 0 | 955,708,171 | 100% | ||
steemit.news | 0 | 1,362,474,414 | 100% | ||
simply1moore | 0 | 1,887,960,656 | 100% | ||
tamersameeh | 0 | 337,949,101 | 100% | ||
stmdxrafi | 0 | 325,540,173 | 100% | ||
steemnews.online | 0 | 2,003,814,547 | 100% | ||
adambalm | 0 | 17,678,708,840 | 100% | ||
ilovebatcatstew | 0 | 4,288,339,853 | 100% | ||
standpoint | 0 | 276,058,942 | 100% | ||
michaeladamparis | 0 | 3,978,097,570 | 30% | ||
richa.proffy | 0 | 441,858,886 | 100% | ||
fiction-trail | 0 | 3,388,096,238 | 100% | ||
playfulfoodie | 0 | 4,142,272,635 | 80% | ||
poetry-trail | 0 | 1,004,671,877 | 100% | ||
paleo-trail | 0 | 475,903,008 | 100% | ||
catharcissism | 0 | 12,253,132,371 | 100% | ||
smalltalk | 0 | 1,432,660,375 | 100% | ||
tonylondon | 0 | 581,795,612 | 100% | ||
vrezh | 0 | 126,832,105 | 100% | ||
arttrail | 0 | 320,384,004 | 100% | ||
benjiparler | 0 | 244,162,803 | 100% | ||
steemstock | 0 | 120,762,260 | 100% | ||
cfreidsma | 0 | 1,391,961,721 | 100% |
thanks
author | meysam |
---|---|
permlink | re-steemtrail-re-meysam-stunnel-how-to-secure-your-connection-step-by-step-guide-with-configuration-files-20170208t050058811z |
category | tutorial |
json_metadata | {"tags":["tutorial"],"app":"steemit/0.1"} |
created | 2017-02-08 05:01:00 |
last_update | 2017-02-08 05:01:00 |
depth | 2 |
children | 0 |
last_payout | 2017-03-10 19:53:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 6 |
author_reputation | 24,504,907,990,035 |
root_title | "Stunnel - how to Secure your connection(Step by Step guide with configuration files)" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 2,451,007 |
net_rshares | 0 |