bjdejongblog.nl Report : Visit Site


  • Ranking Alexa Global: # 4,557,306

    Server:Apache/2.4.18...

    The main IP address: 79.143.189.101,Your server Germany,Munich ISP:Contabo GmbH  TLD:nl CountryCode:DE

    The description :about linux / ubuntu / css / html / c# / security and everything else..........

    This report updates in 20-Jul-2018

Technical data of the bjdejongblog.nl


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host bjdejongblog.nl. Currently, hosted in Germany and its service provider is Contabo GmbH .

Latitude: 48.137428283691
Longitude: 11.575489997864
Country: Germany (DE)
City: Munich
Region: Bayern
ISP: Contabo GmbH

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called Apache/2.4.18 containing the details of what the browser wants and will accept back from the web server.

Content-Length:28277
Content-Encoding:gzip
Vary:Accept-Encoding
Keep-Alive:timeout=5, max=100
Server:Apache/2.4.18
Last-Modified:Fri, 20 Jul 2018 02:07:39 GMT
Connection:Keep-Alive
Link:; rel="https://api.w.org/"
Date:Fri, 20 Jul 2018 02:07:39 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns0.transip.net. hostmaster.transip.nl. 2018062001 14400 1800 2419200 300
ns:ns0.transip.net.
ns1.transip.nl.
ns2.transip.eu.
ipv4:IP:79.143.189.101
ASN:51167
OWNER:CONTABO, DE
Country:DE
ipv6:2a02:c205:2013:3565::1//51167//CONTABO, DE//DE
txt:"v=spf1 ip4:79.143.189.101 ip6:2a02:c205:2013:3565::1 ~all"
mx:MX preference = 10, mail exchanger = mail.zzphostingnoord.nl.

HtmlToText

bjdejong blog about linux / ubuntu / css / html / c# / security and everything else……. menu skip to content home contact setup shared folder for ubuntu guest leave a reply first of all install virtualbox guest additions (goto “devices” -> “insert guest additions cd image…”) and reboot your machine. in virtualbox goto “devices” -> “shared folders” -> “shared folder settings..”. press the “plus” button to the right of the (empty) folder list. choose your path and type a folder name (select auto mount and make permanent for convenience). press ok now the shared folder is created but not active yet in your guest. reboot your guest machine and go to the folder / media / sf_sharename (virtualbox creates a folder in /media with the name of your share with a sf_ prefix. when you cd into this directory you probable get an access denied error. to solve this add your account to the vboxsf group with this command: sudo usermod - ag vboxsf [ username ] to mount the shared folder with specific gid (change gid to your desired value): sudo mount - t vboxsf downloads / mnt / shared - o umask = 0022 , gid = 999 this entry was posted in uncategorized on june 14, 2018 by berend de jong . xampp: installing and using it on windows 2012 r2 leave a reply what is xampp xampp stands for cross-platform (x), apache (a), mariadb (m), php (p) and perl (p). it is a simple, lightweight apache distribution that makes it extremely easy for developers to create a local web server for testing and deployment purposes. xampp installation download your xampp installation here . after installation start the xampp control panel (right click on tray icon for xampp and choose show/hide). xampp control panel start the apache and mysql service. pid(s) and port(s) should show a number now indicating the services are listening at the ports shown. apache after installation navigate to http://localhost . if apache is started the xampp dashboard is shown in your browser. mysql (mariadb) to check if mysql is up and running choose the phpmyadmin link on the dashboard; if everything is ok the phpmyadmin dashboard shows up. first thing todo is change your root password for the mysql instance. change directory to c:\xampp\mysql\bin and execute the command: mysqladmin.exe --user=root password "<newpwd>" to change the mysql password execute the command: mysqladmin.exe --user=root --password=<oldpwd> password newpwd now phpmyadmin will stop working because you just changed the root password. to solve this open the phpmyadmin configuration file at c:\xampp\phpmyadmin\config.inc.php . change the blowfish_secret to some random value not being xampp. next set a value of “cookie” for auth_type. next time you navigate to the phpmyadmin site phpmyadmin will ask for a username and password. setup your first apache web-site if both apache and mysql are running you can go ahead and setup your first site. in xampp sites are stored at c:\xampp\htdocs . create a directory called xamp.test.tld . inside this directroy create a document index.php with the following contents: php <?php phpinfo(); 1 2 <?php phpinfo ( ) ; ok; now on to the apache configuration. open the file c:\xampp\apache\conf\extra\httpd-vhosts.conf and add the following text to the bottom of this file: apache <virtualhost *:80> documentroot c:/xampp/htdocs/ servername localhost </virtualhost> <virtualhost *:80> documentroot c:/xampp/htdocs/xampp.test.tld servername xampp.test.tld <directory "c:/xampp/htdocs/xampp.test.tld"> require all granted allowoverride all </directory> </virtualhost> 1 2 3 4 5 6 7 8 9 10 11 12 13 < virtualhost *:80 > documentroot c : / xampp / htdocs / servername localhost < /virtualhost > < virtualhost *:80 > documentroot c : / xampp / htdocs / xampp . test . tld servername xampp . test . tld < directory "c:/xampp/htdocs/xampp.test.tld" > require all granted allowoverride all < /directory > < /virtualhost > the first virtualhost is the primary or default virtualhost. hosts that have an unknown servername (ie there is no virtualhost definition with this servername attribute) are served from this virtual host. in out setup this is also localhost. that’s all for the apache configuration. one more thing left to configure and that is the windows host file at c:\windows\system32\drivers\etc\hosts . add the following line to this file: 127.0.0.1 xampp.test.tld your configuration is now complete. restart your apache server and send your browser to http://xamp.test.tld . the phpinfo page should appear. create ssl website open ssl for a site to use ssl we have to create a certificate first which has to be referenced in our apache virtual host definition. to create your own certificates check this great tutorial. it will guide you step by step through creating a root ca, intermediate ca, certificates and revocation lists. for future reference a short transcript can be found here. the root certificate you create has to be installed in the trusted root user certificate store. after you have create and installed the root ca you can start using the new certificates in your apache configuration. lets create a new ssl website for xampp.test.tld . open the file c:\xampp\apache\conf\extra\httpd-vhosts.conf and add the following lines to the end of this file: apache <virtualhost *:443> documentroot c:/xampp/htdocs/xampp.test.tld servername xampp.test.tld sslengine on sslcertificatefile "conf/mycerts/ca/intermediate/certs/xampp.test.tld.cert.pem" sslcertificatekeyfile "conf/mycerts/ca/intermediate/private/xampp.test.tld.key.pem" sslcertificatechainfile "conf/mycerts/ca/intermediate/certs/ca-chain.cert.pem" </virtualhost> 1 2 3 4 5 6 7 8 < virtualhost *:443 > documentroot c : / xampp / htdocs / xampp . test . tld servername xampp . test . tld sslengine on sslcertificatefile "conf/mycerts/ca/intermediate/certs/xampp.test.tld.cert.pem" sslcertificatekeyfile "conf/mycerts/ca/intermediate/private/xampp.test.tld.key.pem" sslcertificatechainfile "conf/mycerts/ca/intermediate/certs/ca-chain.cert.pem" < /virtualhost > this virtual host defines the ssl site. as you can see there are references to the certificates you created before with openssl. now send your browser to https : //xampp.test.tld (mind the s in https) and you should see the php information page. this entry was posted in handy , windows on august 30, 2016 by berend de jong . setup wget proxy on ubuntu leave a reply setup wget to use proxy when you are behind a proxy server you have to tell wget to use that proxy server. to do this create a . wgetrc file in your home directory with the contents below (of course change username, password and proxy url). use_proxy = on http_proxy = http://username:[email protected]:80/ https_proxy = http://username:[email protected]:80/ 1 2 3 use_proxy = on http_proxy = http : //username:[email protected]:80/ https_proxy = http : //username:[email protected]:80/ if you want to disable certificate checking add the line below to your .wgetrc shell check_certificate = off 1 check_certificate = off this entry was posted in handy , ubuntu on june 20, 2016 by berend de jong . linux ls – first directories than files leave a reply if you would like to list directories first and than the files with the linux ls command you would have to execute the following ls command ls - l -- group - directories - first the -- group - directories - first takes care of showing the directories first and than the files. my favorite ls alias is (add / change it in your . bashrc ): ls -alf --group-directories-first --color=auto # -a => do not show the implied . and .. directories # -l => use a long listing # -f => appends an indicator to entries (a / for a directory) 1 2 3 4 ls - alf -- group - directories - first -- color = auto # -a => do not show the implied . and .. directories # -l => use a long listing # -f =>

URL analysis for bjdejongblog.nl


https://bjdejongblog.nl/2013/12/
https://www.addtoany.com/add_to/twitter?linkurl=https%3a%2f%2fbjdejongblog.nl%2fsublime-and-sftp%2f&linkname=sublime%20and%20sftp
https://www.addtoany.com/add_to/google_plus?linkurl=https%3a%2f%2fbjdejongblog.nl%2fsetup-shared-folder-for-ubuntu-guest%2f&linkname=setup%20shared%20folder%20for%20ubuntu%20guest
https://www.addtoany.com/add_to/twitter?linkurl=https%3a%2f%2fbjdejongblog.nl%2finstalling-openelec-on-the-raspberry-pi%2f&linkname=openelec%20installation%20on%20the%20raspberry%20pi
https://bjdejongblog.nl/setup-wget-proxy-ubuntu/#respond
https://bjdejongblog.nl/setup-shared-folder-for-ubuntu-guest/#respond
https://bjdejongblog.nl/2016/06/
https://bjdejongblog.nl/2015/01/
https://bjdejongblog.nl/category/android/
https://bjdejongblog.nl/2013/08/
https://bjdejongblog.nl/comments/feed/
https://www.addtoany.com/add_to/google_plus?linkurl=https%3a%2f%2fbjdejongblog.nl%2fadd-admin-user-to-wordpress-with-sql-statements%2f&linkname=add%20admin%20user%20to%20wordpress%20with%20sql%20statements
https://bjdejongblog.nl/category/mac-os-x/
https://www.addtoany.com/add_to/facebook?linkurl=https%3a%2f%2fbjdejongblog.nl%2finstalling-openelec-on-the-raspberry-pi%2f&linkname=openelec%20installation%20on%20the%20raspberry%20pi
https://bjdejongblog.nl/2018/06/

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain name: bjdejongblog.nl
Status: active

Registrar:
TransIP B.V.
Schipholweg 9b
2316XB LEIDEN
Netherlands

Abuse Contact:
[email protected]

DNSSEC: yes

Domain nameservers:
ns0.transip.net
ns1.transip.nl
ns2.transip.eu

Record maintained by: NL Domain Registry

Copyright notice
No part of this publication may be reproduced, published, stored in a
retrieval system, or transmitted, in any form or by any means,
electronic, mechanical, recording, or otherwise, without prior
permission of the Foundation for Internet Domain Registration in the
Netherlands (SIDN).
These restrictions apply equally to registrars, except in that
reproductions and publications are permitted insofar as they are
reasonable, necessary and solely in the context of the registration
activities referred to in the General Terms and Conditions for .nl
Registrars.
Any use of this material for advertising, targeting commercial offers or
similar activities is explicitly forbidden and liable to result in legal
action. Anyone who is aware or suspects that such activities are taking
place is asked to inform the Foundation for Internet Domain Registration
in the Netherlands.
(c) The Foundation for Internet Domain Registration in the Netherlands
(SIDN) Dutch Copyright Act, protection of authors' rights (Section 10,
subsection 1, clause 1).

  REFERRER http://www.domain-registry.nl

  REGISTRAR Stichting Internet Domeinregistratie NL

SERVERS

  SERVER whois.domain-registry.nl

  ARGS bjdejongblog.nl

  PORT 43

  TYPE domain

DOMAIN

  NAME bjdejongblog.nl

  STATUS active

SPONSOR
TransIP B.V.
Schipholweg 9b
2316XB LEIDEN
Netherlands
Abuse Contact:
[email protected]
DNSSEC: yes

NSERVER

  NS0.TRANSIP.NET 80.69.67.67

  NS1.TRANSIP.NL 80.69.69.69

  NS2.TRANSIP.EU 37.97.255.53

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.ubjdejongblog.com
  • www.7bjdejongblog.com
  • www.hbjdejongblog.com
  • www.kbjdejongblog.com
  • www.jbjdejongblog.com
  • www.ibjdejongblog.com
  • www.8bjdejongblog.com
  • www.ybjdejongblog.com
  • www.bjdejongblogebc.com
  • www.bjdejongblogebc.com
  • www.bjdejongblog3bc.com
  • www.bjdejongblogwbc.com
  • www.bjdejongblogsbc.com
  • www.bjdejongblog#bc.com
  • www.bjdejongblogdbc.com
  • www.bjdejongblogfbc.com
  • www.bjdejongblog&bc.com
  • www.bjdejongblogrbc.com
  • www.urlw4ebc.com
  • www.bjdejongblog4bc.com
  • www.bjdejongblogc.com
  • www.bjdejongblogbc.com
  • www.bjdejongblogvc.com
  • www.bjdejongblogvbc.com
  • www.bjdejongblogvc.com
  • www.bjdejongblog c.com
  • www.bjdejongblog bc.com
  • www.bjdejongblog c.com
  • www.bjdejongbloggc.com
  • www.bjdejongbloggbc.com
  • www.bjdejongbloggc.com
  • www.bjdejongblogjc.com
  • www.bjdejongblogjbc.com
  • www.bjdejongblogjc.com
  • www.bjdejongblognc.com
  • www.bjdejongblognbc.com
  • www.bjdejongblognc.com
  • www.bjdejongbloghc.com
  • www.bjdejongbloghbc.com
  • www.bjdejongbloghc.com
  • www.bjdejongblog.com
  • www.bjdejongblogc.com
  • www.bjdejongblogx.com
  • www.bjdejongblogxc.com
  • www.bjdejongblogx.com
  • www.bjdejongblogf.com
  • www.bjdejongblogfc.com
  • www.bjdejongblogf.com
  • www.bjdejongblogv.com
  • www.bjdejongblogvc.com
  • www.bjdejongblogv.com
  • www.bjdejongblogd.com
  • www.bjdejongblogdc.com
  • www.bjdejongblogd.com
  • www.bjdejongblogcb.com
  • www.bjdejongblogcom
  • www.bjdejongblog..com
  • www.bjdejongblog/com
  • www.bjdejongblog/.com
  • www.bjdejongblog./com
  • www.bjdejongblogncom
  • www.bjdejongblogn.com
  • www.bjdejongblog.ncom
  • www.bjdejongblog;com
  • www.bjdejongblog;.com
  • www.bjdejongblog.;com
  • www.bjdejongbloglcom
  • www.bjdejongblogl.com
  • www.bjdejongblog.lcom
  • www.bjdejongblog com
  • www.bjdejongblog .com
  • www.bjdejongblog. com
  • www.bjdejongblog,com
  • www.bjdejongblog,.com
  • www.bjdejongblog.,com
  • www.bjdejongblogmcom
  • www.bjdejongblogm.com
  • www.bjdejongblog.mcom
  • www.bjdejongblog.ccom
  • www.bjdejongblog.om
  • www.bjdejongblog.ccom
  • www.bjdejongblog.xom
  • www.bjdejongblog.xcom
  • www.bjdejongblog.cxom
  • www.bjdejongblog.fom
  • www.bjdejongblog.fcom
  • www.bjdejongblog.cfom
  • www.bjdejongblog.vom
  • www.bjdejongblog.vcom
  • www.bjdejongblog.cvom
  • www.bjdejongblog.dom
  • www.bjdejongblog.dcom
  • www.bjdejongblog.cdom
  • www.bjdejongblogc.om
  • www.bjdejongblog.cm
  • www.bjdejongblog.coom
  • www.bjdejongblog.cpm
  • www.bjdejongblog.cpom
  • www.bjdejongblog.copm
  • www.bjdejongblog.cim
  • www.bjdejongblog.ciom
  • www.bjdejongblog.coim
  • www.bjdejongblog.ckm
  • www.bjdejongblog.ckom
  • www.bjdejongblog.cokm
  • www.bjdejongblog.clm
  • www.bjdejongblog.clom
  • www.bjdejongblog.colm
  • www.bjdejongblog.c0m
  • www.bjdejongblog.c0om
  • www.bjdejongblog.co0m
  • www.bjdejongblog.c:m
  • www.bjdejongblog.c:om
  • www.bjdejongblog.co:m
  • www.bjdejongblog.c9m
  • www.bjdejongblog.c9om
  • www.bjdejongblog.co9m
  • www.bjdejongblog.ocm
  • www.bjdejongblog.co
  • bjdejongblog.nlm
  • www.bjdejongblog.con
  • www.bjdejongblog.conm
  • bjdejongblog.nln
  • www.bjdejongblog.col
  • www.bjdejongblog.colm
  • bjdejongblog.nll
  • www.bjdejongblog.co
  • www.bjdejongblog.co m
  • bjdejongblog.nl
  • www.bjdejongblog.cok
  • www.bjdejongblog.cokm
  • bjdejongblog.nlk
  • www.bjdejongblog.co,
  • www.bjdejongblog.co,m
  • bjdejongblog.nl,
  • www.bjdejongblog.coj
  • www.bjdejongblog.cojm
  • bjdejongblog.nlj
  • www.bjdejongblog.cmo
Show All Mistakes Hide All Mistakes