vennedey.net Report : Visit Site


  • Ranking Alexa Global: # 5,222,893

    Server:nginx...

    The main IP address: 5.135.10.96,Your server France,Roubaix ISP:OVH SAS  TLD:net CountryCode:FR

    The description :falco nordmann's blog...

    This report updates in 26-Nov-2018

Created Date:2015-03-10
Changed Date:2018-03-10

Technical data of the vennedey.net


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host vennedey.net. Currently, hosted in France and its service provider is OVH SAS .

Latitude: 50.69421005249
Longitude: 3.1745600700378
Country: France (FR)
City: Roubaix
Region: Nord-Pas-de-Calais
ISP: OVH SAS

the related websites

HTTP Header Analysis


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

Transfer-Encoding:chunked
Strict-Transport-Security:max-age=15768000
Server:nginx
Connection:keep-alive
Date:Mon, 26 Nov 2018 15:52:02 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns0.vennedey.net. dns.vennedey.net. 2018082403 3600 300 2419200 300
ns:ns1.vennedey.net.
ns0.vennedey.net.
ipv4:IP:5.135.10.96
ASN:16276
OWNER:OVH, FR
Country:FR
ipv6:2001:41d0:2:5264:0:fa1c:0:1//16276//OVH, FR//FR
txt:"seodnwkezyf3msbj.onion."
"v=spf1 mx -all"
mx:MX preference = 10, mail exchanger = mail.vennedey.net.

HtmlToText

vennedey.net blog resources contact feed generate exceptions for mod&lowbar;security from log messages on fri, 14 sep 2018 21:39:31 +0200 by falco nordmann - write a comment i just had to help a customer to deploy a typo3 installation on a apache webserver runnig with mod_security2 enabled. since this module blocked many requests i needed to define a bunch of exceptions in the clients vhost configuration. to make this easy for the future i came up with this little piece of bash to generate the exceptions directly from the messages is the apache error log. root@webhost:~# export last_url=""; grep modsecurity /var/log/apache2/error.log | grep -p "\[id \"\d+\"\]" | grep -p "\[uri \".*?\"\]" | grep --color -po "\[id \"\d+\"\]|\[uri \".*?\"\]" | cut -d\" -f2 | xargs -n2 echo | while read l; do id="`echo \"$l\" | sort -n | cut -d' ' -f1`"; url="`echo \"$l\" | cut -d' ' -f2`"; echo -e "$url|$id"; done | sort -u | while read l; do url="`echo \"$l\" | cut -d'|' -f1`"; id="`echo \"$l\" | cut -d'|' -f2`"; [ -n "$last_url" -a "$url" != "$last_url" ] && echo -e "\t</ifmodule>\n</location>"; [ "$url" != "$last_url" ] && echo -e "<location \"$url\">\n\t<ifmodule mod_security2.c>"; echo -e "\t\tsecruleremovebyid $id"; last_url="$url"; done; echo -e "\t</ifmodule>\n</location>"; unset last_url; running this produces location blocks for the urls blocked by the module with exceptions for the triggered rules that can be included into the vhost configuration. <location "/typo3/ajax.php"> <ifmodule mod_security2.c> secruleremovebyid 921130 secruleremovebyid 941100 secruleremovebyid 941110 secruleremovebyid 941140 secruleremovebyid 941160 secruleremovebyid 941270 secruleremovebyid 949110 secruleremovebyid 980130 </ifmodule> </location> <location "/typo3/alt_doc.php"> <ifmodule mod_security2.c> secruleremovebyid 921130 secruleremovebyid 941100 secruleremovebyid 941110 secruleremovebyid 941140 secruleremovebyid 941160 secruleremovebyid 941270 secruleremovebyid 949110 secruleremovebyid 980130 </ifmodule> </location> <location "/typo3/mod.php"> <ifmodule mod_security2.c> secruleremovebyid 921130 secruleremovebyid 941100 secruleremovebyid 941110 secruleremovebyid 941140 secruleremovebyid 941160 secruleremovebyid 941270 secruleremovebyid 949110 secruleremovebyid 980130 </ifmodule> </location> <location "/typo3/sysext/install/start/install.php"> <ifmodule mod_security2.c> secruleremovebyid 921130 secruleremovebyid 930120 secruleremovebyid 942100 secruleremovebyid 949110 secruleremovebyid 980130 </ifmodule> </location> just double check that no exception for evil requests was generated from the log by accident. jailspaces update for debian stretch on fri, 24 aug 2018 17:02:19 +0200 by falco nordmann - write a comment today jailspaces was upgraded along with my article about chrooted php-fpm webspaces with nginx and all the small helper tools mentioned in there to work on the actual debian release stretch . since some bugs got fixed in debian within the last 2 years i could remove some ugly workarounds from the tools that were needed in the past to make everything working smooth. the docker image is not longer supported and was not upgraded since it was used very rarely. i hope you enjoy the update. i am in berlin for the nextcloud conference during the next days, so if you want to meet up drop me an e-mail. build & install ceph-deploy rpm package on centos 7 on tue, 03 jan 2017 12:44:02 +0100 by falco nordmann - write a comment the last weeks i spend some time testing openstack and setting up an openstack cluster using ansible for deployment and configuration management. now i like to take a closer look into ceph, since it can be used as a backend for cinder, glance and swift. but when following the instructions for centos 7 as outlined in the docs and trying to install ceph-deploy from the repository i ran into some dependency problem: [root@host ~]# yum install ceph-deploy ... error: package: ceph-deploy-1.5.36-0.noarch (ceph-noarch) requires: python-distribute available: python-setuptools-0.9.8-4.el7.noarch (base) python-distribute = 0.9.8-4.el7 you could try using --skip-broken to work around the problem you could try running: rpm -va --nofiles --nodigest there are other people who have had the same problem and there is also a patch available . since the patch came without any further instructions i needed to figure out how to apply it. i used a fresh centos 7 docker image to setup the build environment. of course this will also work without docker but if you just need a quick throwaway environment it becomes a handy tool. root@workstation:~# docker run -it --name=ceph-deploy centos [root@cc9153b3d205 /]# cd [root@cc9153b3d205 ~]# yum install git python-virtualenv curl gnupg redhat-lsb-core createrepo which rpm-build rpm-sign epel-release [root@cc9153b3d205 ~]# git clone https://github.com/ceph/ceph-deploy.git [root@cc9153b3d205 ~]# cd ceph-deploy/ [root@cc9153b3d205 ceph-deploy]# ./bootstrap [root@cc9153b3d205 ceph-deploy]# curl -l -o http://tracker.ceph.com/attachments/download/2389/ceph-deploy.spec.patch [root@cc9153b3d205 ceph-deploy]# patch ceph-deploy.spec < ceph-deploy.spec.patch [root@cc9153b3d205 ceph-deploy]# yum install python-mock python-tox pytest the build script needs a local gnupg key to sign the resulting rpm package. to generate a new one, run: [root@cc9153b3d205 ceph-deploy]# gpg --gen-key if your terminal got destroyed after key generation (specific to docker), run reset to restore it. now you need to find out the id of the freshly generated key. [root@cc9153b3d205 ceph-deploy]# gpg --list-keys the id is a 8 digit hex number. if you got it, you are ready to build the package. [root@cc9153b3d205 ceph-deploy]# export keyid=8d42c98b; scripts/build-rpm.sh the package can now be retrieved from /root/ceph-deploy/rpmbuild/rpms/noarch/ceph-deploy-1.5.36-0.noarch.rpm and can be installed on the traget system using yum : [root@host ~]# yum --nogpgcheck localinstall ceph-deploy-1.5.36-0.noarch.rpm if you used docker to set up your build environment, exit from the container and remove it: [root@cc9153b3d205 ~]# exit root@workstation:~# docker rm ceph-deploy virtualmin&colon; break sharing ssl certificates on mon, 19 dec 2016 19:31:54 +0100 by falco nordmann - write a comment i recently ran into some problems trying to activate https for some virtual servers in virtualmin. after enabling ssl for the virtual server foo.bar.example.com and clicking manage ssl certificate i got the message this virtual server shares its ssl certificate with baz.example.com, so it cannot be edited on this page. use its manage ssl certificate page to change ssl settings. since baz.example.com has a wildcard certificate *.example.com , i think that virtualmin tries to be smart and wants to use the same certificate for foo.bar.example.com , which will not work since foo.bar.example.com is not part of *.example.com . to get around this and allow separate ssl configuration for foo.bar.example.com one need to break the link between these both virtual servers ssl configurations. to do so, first find the virtualmin configuration for the given virtual server: root@host:~# cd /etc/webmin/virtual-server/domains root@host:~# grep -rfx 'dom=foo.bar.example.com' . ./145382287315480:dom=foo.bar.example.com open the file and edit the ssl_cert , ssl_key and ssl_chain directives to point to a location individual for the virtual server. do not use locations served by the apache webserver! /etc/webmin/virtual-server/domains/145382287315480 ssl_cert = /var/www/vserver/bar.example.com/domains/foo.bar.example.com/ssl.cert ssl_key = /var/www/vserver/bar.example.com/domains/foo.bar.example.com/ssl.key ssl_chain = /var/www/vserver/bar.example.com/domains/foo.bar.example.com/ssl.ca now delete the ssl_same=… directive from the configuration. this will isol

URL analysis for vennedey.net


https://www.vennedey.net/blog/blog
https://www.vennedey.net/blog/blog/8-virtualmin-break-sharing-ssl-certificates
https://www.vennedey.net/resources/3-secure-webspaces-with-nginx-php-fpm-chroots-and-lets-encrypt
https://www.vennedey.net/blog/blog/10-jailspaces-update-for-debian-stretch#comments
https://www.vennedey.net/blog/blog/9-build-install-ceph-deploy-rpm-package-on-centos-7
https://www.vennedey.net/blog/contact
https://www.vennedey.net/blog/blog/9-build-install-ceph-deploy-rpm-package-on-centos-7#comments
https://www.vennedey.net/blog/blog/11-generate-exceptions-for-modsecurity-from-log-messages
https://www.vennedey.net/blog/blog/8-virtualmin-break-sharing-ssl-certificates#comments
https://www.vennedey.net/blog/feed
https://www.vennedey.net/blog/blog/p2
https://www.vennedey.net/blog/jailspaces
https://www.vennedey.net/blog/code/04e0baf8e0cb17519edb4665b01734aa45760f43f903b47cb2b2d27ab63a1229
https://www.vennedey.net/blog/resources
https://www.vennedey.net/blog/blog/11-generate-exceptions-for-modsecurity-from-log-messages#comments

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: VENNEDEY.NET
Registry Domain ID: 1908709946_DOMAIN_NET-VRSN
Registrar WHOIS Server: whois.psi-usa.info
Registrar URL: http://www.psi-usa.info
Updated Date: 2018-03-10T09:09:50Z
Creation Date: 2015-03-10T02:21:38Z
Registry Expiry Date: 2019-03-10T02:21:38Z
Registrar: PSI-USA, Inc. dba Domain Robot
Registrar IANA ID: 151
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +49.94159559482
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS0.VENNEDEY.NET
Name Server: NS1.VENNEDEY.NET
DNSSEC: signedDelegation
DNSSEC DS Data: 11058 10 2 E355C88068893E775D01438405AFD51E39F405FC0B1463F659BE9B87269B5879
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2018-11-26T15:51:43Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

NOTICE: The expiration date displayed in this record is the date the
registrar's sponsorship of the domain name registration in the registry is
currently set to expire. This date does not necessarily reflect the expiration
date of the domain name registrant's agreement with the sponsoring
registrar. Users may consult the sponsoring registrar's Whois database to
view the registrar's reported date of expiration for this registration.

TERMS OF USE: You are not authorized to access or query our Whois
database through the use of electronic processes that are high-volume and
automated except as reasonably necessary to register domain names or
modify existing registrations; the Data in VeriSign Global Registry
Services' ("VeriSign") Whois database is provided by VeriSign for
information purposes only, and to assist persons in obtaining information
about or related to a domain name registration record. VeriSign does not
guarantee its accuracy. By submitting a Whois query, you agree to abide
by the following terms of use: You agree that you may use this Data only
for lawful purposes and that under no circumstances will you use this Data
to: (1) allow, enable, or otherwise support the transmission of mass
unsolicited, commercial advertising or solicitations via e-mail, telephone,
or facsimile; or (2) enable high volume, automated, electronic processes
that apply to VeriSign (or its computer systems). The compilation,
repackaging, dissemination or other use of this Data is expressly
prohibited without the prior written consent of VeriSign. You agree not to
use electronic processes that are automated and high-volume to access or
query the Whois database except as reasonably necessary to register
domain names or modify existing registrations. VeriSign reserves the right
to restrict your access to the Whois database in its sole discretion to ensure
operational stability. VeriSign may restrict or terminate your access to the
Whois database for failure to abide by these terms of use. VeriSign
reserves the right to modify these terms at any time.

The Registry database contains ONLY .COM, .NET, .EDU domains and
Registrars.

  REGISTRAR PSI-USA, Inc. dba Domain Robot

SERVERS

  SERVER net.whois-servers.net

  ARGS domain =vennedey.net

  PORT 43

  TYPE domain

DOMAIN

  NAME vennedey.net

  CHANGED 2018-03-10

  CREATED 2015-03-10

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

NSERVER

  NS0.VENNEDEY.NET 5.39.48.223

  NS1.VENNEDEY.NET 80.81.254.173

  REGISTERED yes

Go to top

Mistakes


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

  • www.uvennedey.com
  • www.7vennedey.com
  • www.hvennedey.com
  • www.kvennedey.com
  • www.jvennedey.com
  • www.ivennedey.com
  • www.8vennedey.com
  • www.yvennedey.com
  • www.vennedeyebc.com
  • www.vennedeyebc.com
  • www.vennedey3bc.com
  • www.vennedeywbc.com
  • www.vennedeysbc.com
  • www.vennedey#bc.com
  • www.vennedeydbc.com
  • www.vennedeyfbc.com
  • www.vennedey&bc.com
  • www.vennedeyrbc.com
  • www.urlw4ebc.com
  • www.vennedey4bc.com
  • www.vennedeyc.com
  • www.vennedeybc.com
  • www.vennedeyvc.com
  • www.vennedeyvbc.com
  • www.vennedeyvc.com
  • www.vennedey c.com
  • www.vennedey bc.com
  • www.vennedey c.com
  • www.vennedeygc.com
  • www.vennedeygbc.com
  • www.vennedeygc.com
  • www.vennedeyjc.com
  • www.vennedeyjbc.com
  • www.vennedeyjc.com
  • www.vennedeync.com
  • www.vennedeynbc.com
  • www.vennedeync.com
  • www.vennedeyhc.com
  • www.vennedeyhbc.com
  • www.vennedeyhc.com
  • www.vennedey.com
  • www.vennedeyc.com
  • www.vennedeyx.com
  • www.vennedeyxc.com
  • www.vennedeyx.com
  • www.vennedeyf.com
  • www.vennedeyfc.com
  • www.vennedeyf.com
  • www.vennedeyv.com
  • www.vennedeyvc.com
  • www.vennedeyv.com
  • www.vennedeyd.com
  • www.vennedeydc.com
  • www.vennedeyd.com
  • www.vennedeycb.com
  • www.vennedeycom
  • www.vennedey..com
  • www.vennedey/com
  • www.vennedey/.com
  • www.vennedey./com
  • www.vennedeyncom
  • www.vennedeyn.com
  • www.vennedey.ncom
  • www.vennedey;com
  • www.vennedey;.com
  • www.vennedey.;com
  • www.vennedeylcom
  • www.vennedeyl.com
  • www.vennedey.lcom
  • www.vennedey com
  • www.vennedey .com
  • www.vennedey. com
  • www.vennedey,com
  • www.vennedey,.com
  • www.vennedey.,com
  • www.vennedeymcom
  • www.vennedeym.com
  • www.vennedey.mcom
  • www.vennedey.ccom
  • www.vennedey.om
  • www.vennedey.ccom
  • www.vennedey.xom
  • www.vennedey.xcom
  • www.vennedey.cxom
  • www.vennedey.fom
  • www.vennedey.fcom
  • www.vennedey.cfom
  • www.vennedey.vom
  • www.vennedey.vcom
  • www.vennedey.cvom
  • www.vennedey.dom
  • www.vennedey.dcom
  • www.vennedey.cdom
  • www.vennedeyc.om
  • www.vennedey.cm
  • www.vennedey.coom
  • www.vennedey.cpm
  • www.vennedey.cpom
  • www.vennedey.copm
  • www.vennedey.cim
  • www.vennedey.ciom
  • www.vennedey.coim
  • www.vennedey.ckm
  • www.vennedey.ckom
  • www.vennedey.cokm
  • www.vennedey.clm
  • www.vennedey.clom
  • www.vennedey.colm
  • www.vennedey.c0m
  • www.vennedey.c0om
  • www.vennedey.co0m
  • www.vennedey.c:m
  • www.vennedey.c:om
  • www.vennedey.co:m
  • www.vennedey.c9m
  • www.vennedey.c9om
  • www.vennedey.co9m
  • www.vennedey.ocm
  • www.vennedey.co
  • vennedey.netm
  • www.vennedey.con
  • www.vennedey.conm
  • vennedey.netn
  • www.vennedey.col
  • www.vennedey.colm
  • vennedey.netl
  • www.vennedey.co
  • www.vennedey.co m
  • vennedey.net
  • www.vennedey.cok
  • www.vennedey.cokm
  • vennedey.netk
  • www.vennedey.co,
  • www.vennedey.co,m
  • vennedey.net,
  • www.vennedey.coj
  • www.vennedey.cojm
  • vennedey.netj
  • www.vennedey.cmo
Show All Mistakes Hide All Mistakes