vincenzo-do.ch Report : Visit Site


  • Server:Apache...
    X-Powered-By:PHP/5.5.19

    The main IP address: 136.243.11.102,Your server Germany,Berlin ISP:Hetzner Online AG  TLD:ch CountryCode:DE

    The description :vblog vblog a blog about it stuff ;) foreground and background jobs – linux foreground and background jobs – linux 27. january 2017 vince a tool that is for sure not used enough is fg / bg. example: d...

    This report updates in 02-Jul-2018

Technical data of the vincenzo-do.ch


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host vincenzo-do.ch. Currently, hosted in Germany and its service provider is Hetzner Online AG .

Latitude: 52.524368286133
Longitude: 13.410530090332
Country: Germany (DE)
City: Berlin
Region: Berlin
ISP: Hetzner Online AG

HTTP Header Analysis


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

Content-Length:13261
X-XSS-Protection:1; mode=block
X-Powered-By:PHP/5.5.19
Content-Encoding:gzip
Vary:Accept-Encoding,User-Agent
Server:Apache
Connection:close
Link:; rel="https://api.w.org/"
Strict-Transport-Security:max-age=15768000
Date:Mon, 02 Jul 2018 09:37:50 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns335.hoststar.ch. hostmaster.hoststar.ch. 2016061001 10800 3600 604800 86400
txt:"v=spf1 a mx ~all"
ns:ns336.hoststar.ch.
ns335.hoststar.ch.
ipv4:IP:136.243.11.102
ASN:24940
OWNER:HETZNER-AS, DE
Country:DE
mx:MX preference = 10, mail exchanger = mail.vincenzo-do.ch.

HtmlToText

vblog vblog a blog about it stuff ;) foreground and background jobs – linux foreground and background jobs – linux 27. january 2017 vince a tool that is for sure not used enough is fg / bg. example: did you ever start editing a file and suddenly remembered that you needed to copy the values of the previous command? well this take care of this problem and many others! first of all, executing a command / job in background when in a shell is as simple as adding an “&” at the end of the command: watch -d ls -l & another way to do this is by using the “bg” command, or by pressing “ctrl+z”: watch -d ls -l bg in order to see all background running jobs use the “jobs” command: jobs [1] + suspended (signal) nano ca.crt and to bring one of them back to foreground, or use “ctrl+z”: fg %1 where “%1” is the number of the job. using this syntax you can also kill jobs: kill %1 this is a very simple feature which can make your live easier if you learn to use it. cheers, vincent what driver is my nic using? what driver is my nic using? 11. november 2016 vince hello people, in this small blog post i wanted to show you a nice script to see which drivers are used by the network interfaces of a linux machine. #!/bin/bash for f in /sys/class/net/*; do dev=$(basename $f) driver=$(readlink $f/device/driver/module) if [ $driver ]; then driver=$(basename $driver) fi addr=$(cat $f/address) operstate=$(cat $f/operstate) printf "%10s [%s]: %10s (%s)\n" "$dev" "$addr" "$driver" "$operstate" done i find this very useful when you need to find out if your interface is running at 10gb or only 1gb. the output looks like this: eno1 [2c:60:0c:da:7b:fc]: igb (up) eno1.361 [2c:60:0c:da:7b:fc]: (up) eno1.362 [2c:60:0c:da:7b:fc]: (up) ens255f0 [2c:60:0c:f1:e6:5b]: ixgbe (up) so you can see that ens255f0 is a 10gb interface and en1 is only 1 gb. this script has not been written by me but by an stackexchange user, all credits goes to him. for reference here’s the link to the stackexchange question . bests, dov working with systemd working with systemd 7. november 2016 vince hi there, in this small post we are going to see how systemd works and what are the difference from the old init.d system. a problem i recently had to solve was a mongodb instance which was starting with the wrong arguments. to debug it i used the following commands: vdo@ubuntu:/lib/systemd/system$ systemctl status mongod.service - mongod.service - high-performance, schema-free document-oriented database loaded: loaded (/lib/systemd/system/mongod.service; enabled; vendor preset: enabled) active: failed (result: exit-code) since fri 2016-11-04 14:24:21 cet; 3 days ago main pid: 2870 (code=exited, status=100) vdo@ubuntu:/lib/systemd/system$ systemctl status mongodb - mongodb.service - lsb: an object/document-oriented database loaded: loaded (/etc/init.d/mongodb; bad; vendor preset: enabled) active: active (running) since mon 2016-11-07 15:14:44 cet; 1min 23s ago process: 16456 execstop=/etc/init.d/mongodb stop (code=exited, status=0/success) process: 16474 execstart=/etc/init.d/mongodb start (code=exited, status=0/success) cgroup: /system.slice/mongodb.service +-16486 /usr/bin/mongod --config /etc/mongodb.conf so basically i had mongod and mongodb. but which was i suppesed to use and how should i start it? by googling around i found that mongodb was renamed to mongod after version 2.4. now that i was sure of the version i was supposed to use i could then enable the correct start script. if you have no startup script you can create one follwing this template: [unit] description=high-performance, schema-free document-oriented database after=network.target documentation=https://docs.mongodb.org/manual [service] user=mongodb group=mongodb execstart=/usr/bin/mongod --replset singlenoderepl --quiet --config /etc/mongodb.conf [install] wantedby=multi-user.target to enable the script: sudo systemctl enable mongod.service this command creates a symlink to your service file: mongod.service -> /lib/systemd/system/mongod.service installing zsh and oh-my-zsh with my favorite theme: agnoster! installing zsh and oh-my-zsh with my favorite theme: agnoster! 29. august 2016 vince hi guys, in this small post i’m showing you how to install the zsh shell interpreter and one of my favorite themes agnoster. firstly, the terminal of choice for this article (and also my personal choice) is terminator. you can find it in any repository for most distributions. in ubuntu, these simple commands install terminator: sudo apt-get install -y terminator next, to install zsh run the following command: sudo apt-get install -y zsh once installed, the default terminal is automatically changed to zsh. if this is not the case, use the following commands to set it as default: #first check the location which zsh /bin/zsh #now change shell from /bin/bash to /bin/zsh chsh password: changing the login shell for root enter the new value, or press enter for the default login shell [/bin/bash]: /bin/zsh now if you restart your terminator instance it should open using zsh! it’s now time to install oh-my-zsh. oh-my-zsh is a github project framwork for managing your zsh configuration. it includes 180+ optional plugins and more than 120 themes to spice up your journey. for complete information, please visit the official git home page : robbyrussell – oh-my-zsh . to install oh-my-zsh run the following command: wget https://raw.github.com/robbyrussell/oh-my-zsh/master/tools/install.sh -o - | sh as i’ve mentioned, my favourite theme is “agnoster”. you can check out other themes at this url . to set up oh-my-zsh to use the agnoster theme just edit the ~/.zshrc configuration file (unique for each user) and add the name of the theme to the zsh_theme variable: zsh_theme="agnoster" once changed the theme, specific fonts have to be installed in order to fully support it: #clone repo git clone https://github.com/powerline/fonts.git cd fonts #start install script sudo ./install.sh and now, open terminator and go under the preference menu (right-click -> preferences). under profiles you should find the general tab with the possibility to change the font. replicate the one set up in the image here below: the last step is to set up the syntax highlighting plugin: #move to zsh plugin folder cd ~/.oh-my-zsh/plugins #clone repo git clone https://github.com/zsh-users/zsh-syntax-highlighting # enable plugin in zshrc nano ~/.zshrc #find the plugin and add syntax +plugins=(git zsh-syntax-highlighting) #source modif source .zshrc and there you go. end result should look something like this: enjoy! iptables – add, remove and backup your rules! iptables – add, remove and backup your rules! 21. july 2016 vince hi, today, in this post, we are going to talk about iptables. it’s user-space application that allows to configure the tables provided by the linux kernel firewall (implemented as different netfilter modules) and the chains and rules it stores. the first basic command to learn is the one allowing to list all rules in all chains, “iptables -l” or “iptables –list”. in iptables by default three different chain exist: input, forward and output. each one of these chains is related to an “action”, input handles the rules for input connections and so on. empty iptbales rules listing: chain input (policy accept) target prot opt source destination chain forward (policy accept) target prot opt source destination chain output (policy accept) target prot opt source destination now let’s try to add a simple rule allowing ssh access only form a certain ip range: iptables -a input -s 10.0.0.0/8 -p tcp -m multiport --dports 22 -m comment --comment "010 ssh" -m state --state new -j accept the meaning of each option is described here below: -a : append the rule to a chain, in this case to the input chain -s : address/mask source specification (the source of the connection), in this case only 10.x.x.x addresses are allowed to use ssh -p : the connection protocol used, in this case tcp -m multiport

URL analysis for vincenzo-do.ch


http://vincenzo-do.ch/?m=201607
http://vincenzo-do.ch/#what’s_openstack_and_what’s_fuel?
http://vincenzo-do.ch/?m=201608
http://vincenzo-do.ch/?p=93
http://vincenzo-do.ch/?m=201611
http://vincenzo-do.ch/?p=78
http://vincenzo-do.ch/?m=201606
http://vincenzo-do.ch/?p=99
http://vincenzo-do.ch/?feed=comments-rss2
http://vincenzo-do.ch/?p=64
http://vincenzo-do.ch/#how_does_fuel_work?
http://vincenzo-do.ch/?p=46
http://vincenzo-do.ch/?p=56
http://vincenzo-do.ch/wp-login.php
http://vincenzo-do.ch/?p=29

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;

The number of requests per client per time interval is
restricted. You have exceeded this limit.
Please wait a moment and try again.


  REFERRER http://www.nic.ch

  REGISTRAR SWITCH Domain Name Registration

SERVERS

  SERVER ch.whois-servers.net

  ARGS vincenzo-do.ch

  PORT 43

  TYPE domain

  REGISTERED no

DOMAIN

  NAME vincenzo-do.ch

NSERVER

  NS336.HOSTSTAR.CH 148.251.244.181

  NS335.HOSTSTAR.CH 136.243.11.102

Go to top

Mistakes


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

  • www.uvincenzo-do.com
  • www.7vincenzo-do.com
  • www.hvincenzo-do.com
  • www.kvincenzo-do.com
  • www.jvincenzo-do.com
  • www.ivincenzo-do.com
  • www.8vincenzo-do.com
  • www.yvincenzo-do.com
  • www.vincenzo-doebc.com
  • www.vincenzo-doebc.com
  • www.vincenzo-do3bc.com
  • www.vincenzo-dowbc.com
  • www.vincenzo-dosbc.com
  • www.vincenzo-do#bc.com
  • www.vincenzo-dodbc.com
  • www.vincenzo-dofbc.com
  • www.vincenzo-do&bc.com
  • www.vincenzo-dorbc.com
  • www.urlw4ebc.com
  • www.vincenzo-do4bc.com
  • www.vincenzo-doc.com
  • www.vincenzo-dobc.com
  • www.vincenzo-dovc.com
  • www.vincenzo-dovbc.com
  • www.vincenzo-dovc.com
  • www.vincenzo-do c.com
  • www.vincenzo-do bc.com
  • www.vincenzo-do c.com
  • www.vincenzo-dogc.com
  • www.vincenzo-dogbc.com
  • www.vincenzo-dogc.com
  • www.vincenzo-dojc.com
  • www.vincenzo-dojbc.com
  • www.vincenzo-dojc.com
  • www.vincenzo-donc.com
  • www.vincenzo-donbc.com
  • www.vincenzo-donc.com
  • www.vincenzo-dohc.com
  • www.vincenzo-dohbc.com
  • www.vincenzo-dohc.com
  • www.vincenzo-do.com
  • www.vincenzo-doc.com
  • www.vincenzo-dox.com
  • www.vincenzo-doxc.com
  • www.vincenzo-dox.com
  • www.vincenzo-dof.com
  • www.vincenzo-dofc.com
  • www.vincenzo-dof.com
  • www.vincenzo-dov.com
  • www.vincenzo-dovc.com
  • www.vincenzo-dov.com
  • www.vincenzo-dod.com
  • www.vincenzo-dodc.com
  • www.vincenzo-dod.com
  • www.vincenzo-docb.com
  • www.vincenzo-docom
  • www.vincenzo-do..com
  • www.vincenzo-do/com
  • www.vincenzo-do/.com
  • www.vincenzo-do./com
  • www.vincenzo-doncom
  • www.vincenzo-don.com
  • www.vincenzo-do.ncom
  • www.vincenzo-do;com
  • www.vincenzo-do;.com
  • www.vincenzo-do.;com
  • www.vincenzo-dolcom
  • www.vincenzo-dol.com
  • www.vincenzo-do.lcom
  • www.vincenzo-do com
  • www.vincenzo-do .com
  • www.vincenzo-do. com
  • www.vincenzo-do,com
  • www.vincenzo-do,.com
  • www.vincenzo-do.,com
  • www.vincenzo-domcom
  • www.vincenzo-dom.com
  • www.vincenzo-do.mcom
  • www.vincenzo-do.ccom
  • www.vincenzo-do.om
  • www.vincenzo-do.ccom
  • www.vincenzo-do.xom
  • www.vincenzo-do.xcom
  • www.vincenzo-do.cxom
  • www.vincenzo-do.fom
  • www.vincenzo-do.fcom
  • www.vincenzo-do.cfom
  • www.vincenzo-do.vom
  • www.vincenzo-do.vcom
  • www.vincenzo-do.cvom
  • www.vincenzo-do.dom
  • www.vincenzo-do.dcom
  • www.vincenzo-do.cdom
  • www.vincenzo-doc.om
  • www.vincenzo-do.cm
  • www.vincenzo-do.coom
  • www.vincenzo-do.cpm
  • www.vincenzo-do.cpom
  • www.vincenzo-do.copm
  • www.vincenzo-do.cim
  • www.vincenzo-do.ciom
  • www.vincenzo-do.coim
  • www.vincenzo-do.ckm
  • www.vincenzo-do.ckom
  • www.vincenzo-do.cokm
  • www.vincenzo-do.clm
  • www.vincenzo-do.clom
  • www.vincenzo-do.colm
  • www.vincenzo-do.c0m
  • www.vincenzo-do.c0om
  • www.vincenzo-do.co0m
  • www.vincenzo-do.c:m
  • www.vincenzo-do.c:om
  • www.vincenzo-do.co:m
  • www.vincenzo-do.c9m
  • www.vincenzo-do.c9om
  • www.vincenzo-do.co9m
  • www.vincenzo-do.ocm
  • www.vincenzo-do.co
  • vincenzo-do.chm
  • www.vincenzo-do.con
  • www.vincenzo-do.conm
  • vincenzo-do.chn
  • www.vincenzo-do.col
  • www.vincenzo-do.colm
  • vincenzo-do.chl
  • www.vincenzo-do.co
  • www.vincenzo-do.co m
  • vincenzo-do.ch
  • www.vincenzo-do.cok
  • www.vincenzo-do.cokm
  • vincenzo-do.chk
  • www.vincenzo-do.co,
  • www.vincenzo-do.co,m
  • vincenzo-do.ch,
  • www.vincenzo-do.coj
  • www.vincenzo-do.cojm
  • vincenzo-do.chj
  • www.vincenzo-do.cmo
Show All Mistakes Hide All Mistakes