ioctl.eu Report : Visit Site


  • Server:Apache/2.2.12...

    The main IP address: 78.46.45.212,Your server Germany,Falkenstein ISP:Hetzner Online AG  TLD:eu CountryCode:DE

    The description :website of max grosse...

    This report updates in 01-Jul-2018

Technical data of the ioctl.eu


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

Latitude: 50.477878570557
Longitude: 12.371290206909
Country: Germany (DE)
City: Falkenstein
Region: Sachsen
ISP: Hetzner Online AG

the related websites

HTTP Header Analysis


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

Content-Encoding:gzip
Transfer-Encoding:chunked
Vary:Accept-Encoding
Keep-Alive:timeout=15, max=100
Server:Apache/2.2.12
Connection:Keep-Alive
Date:Sun, 01 Jul 2018 02:19:58 GMT
Content-Type:text/html; charset=utf-8

DNS

soa:ns.namespace4you.de. hostmaster.ioctl.eu. 1512078842 16384 2048 1048576 2560
ns:ns2.namespace4you.de.
ns.namespace4you.de.
ipv4:IP:78.46.45.212
ASN:24940
OWNER:HETZNER-AS, DE
Country:DE
mx:MX preference = 10, mail exchanger = mx0.ioctl.eu.

HtmlToText

ioctl.eu max grosse -- blog about rss-feed seamless image tiling 2011-06-07 16:21 when you want to create seamlessly tiling textures out of some photographs, usually a lot of manual work using some image editing software becomes necessary. just using the image right away will create ugly seams. inspired by the wonderful paper on graph cuts for image and video synthesis, i implemented the algorithm in a more simple form, suitable for creating seamlessly tiling images. now, the user is just required to adjust an amount of horizontal and vertical overlap and in some seconds a seamless version is created. the core of the algorithm is the boykov/kolmogorov graph cut algorithm, which is implemented already in the boost library, ready for use . so in fact, most of my development time i've spent on creating a nice application for macos x which is hopefully easy and intuitive to use. you can try out a preview version, still including some bugs and several memory leaks here: quiltator-0.3.zip note, that the application is macos x 10.6 only, built for x86 and provided to you as is . i'll try to improve it in my spare time to fix all the remaining bugs and leaks and add some useful features, but for now it appears already quite usable (at least, to me). comments (688) tags: imageproc factoring semiprimes (for fun) 2011-04-07 13:36 i think everyone loves primes. well, at least most people do. i feel a bit nerdy, though, because i have the wonderful msieve integer factorizator installed on my computer and use it, well, mostly for fun and curiosity. for testing it a bit more, and to get kind of an update on security considerations, i've hacked together a small program to generate large semiprimes (using openssl , of course). for your semiprime-generation needs, its here: largesemiprime.c well, now for the product of a 120 bit prime with a 111 bit prime, 70-digit decimal number, msieve takes on my macbook, well, about a single minute. that's kind of impressive to me. and shows how ridiculous 110 bits would be when used for asymmetric encryption. comments (1560) tags: crypto , numbers boost::asio::ssl advanced certificate informations 2011-03-24 11:09 boost::asio provides a very convenient way of using ssl sockets. however, the information about the peer certificate provided is rather limited (read: non-existant) and there is only the option to either accept trusted certificates, or accept any certificate. if you want to give feedback to the user and/or check the certificate digest (fingerprint), you have to resort to plain openssl (given that openssl is used as backend). for a ssl-socket, the following snipplet prints the issuer and fingerprints. good idea would be to add a custom verification here as well. beware of very hackish code: show plain 1 #include <openssl/ssl.h> 2 #include <openssl/x509.h> 3 #include <openssl/evp.h> 4 ... 5 boost :: asio :: ssl :: stream < boost :: asio :: ip :: tcp :: socket > ssl_socket_ ( io_service , ctx ); 6 ... 7 bool connection :: check_peer_certificate () { 8 // impl() provides access to the underlying ssl* 9 // struct from openssl! 10 ssl * ssl = ssl_socket_ . impl () -> ssl ; 11 12 // use openssl api do get what you desire 13 x509 * cert = ssl_get_peer_certificate ( ssl ); 14 15 printf ( "issuer: " ); x509_name_print_ex_fp ( stdout , x509_get_issuer_name ( cert ), 0 , 0 ); printf ( " \n " ); 16 printf ( "subject: " ); x509_name_print_ex_fp ( stdout , x509_get_subject_name ( cert ), 0 , 0 ); printf ( " \n " ); 17 18 19 unsigned int md5_size ; 20 unsigned char md5 [ evp_max_md_size ]; 21 x509_digest ( cert , evp_md5 (), md5 , & md5_size ); 22 printf ( "md5: " ); 23 for ( unsigned i = 0 ; i < md5_size ; ++ i ) printf ( "%02x " , md5 [ i ]); 24 printf ( " \n " ); 25 26 unsigned int sha1_size ; 27 unsigned char sha1 [ evp_max_md_size ]; 28 x509_digest ( cert , evp_sha1 (), sha1 , & sha1_size ); 29 printf ( "sha1: " ); 30 for ( unsigned i = 0 ; i < sha1_size ; ++ i ) printf ( "%02x " , sha1 [ i ]); 31 printf ( " \n " ); 32 33 x509_free ( cert ); 34 // better would be to validate cert, export fingerprints and 35 // information so they can be presented to user and 36 // return false if it does not validate ;) 37 return true ; 38 } show formatted #include #include #include ... boost::asio::ssl::stream ssl_socket_(io_service, ctx); ... bool connection::check_peer_certificate() { // impl() provides access to the underlying ssl* // struct from openssl! ssl *ssl = ssl_socket_.impl()->ssl; // use openssl api do get what you desire x509 *cert = ssl_get_peer_certificate(ssl); printf("issuer: "); x509_name_print_ex_fp(stdout, x509_get_issuer_name(cert), 0, 0); printf("\n"); printf("subject: "); x509_name_print_ex_fp(stdout, x509_get_subject_name(cert), 0, 0); printf("\n"); unsigned int md5_size; unsigned char md5[evp_max_md_size]; x509_digest(cert, evp_md5(), md5, &md5;_size); printf("md5: "); for(unsigned i=0; i comments (721) tags: code openal sine synth 2011-03-16 14:27 openal is a very powerful library for audio playback and recording. however, i just needed a minimal example on how to play a simple sine wave of a given frequency, synthesized by myself. this is basically quite easy using openal as well. in a syntax similar to opengl, a buffer is generated and filled with samples (here a sine wave), which is then passed on to openal for playback. i've attached the sample code to this post. now, this can be used to do fun stuff, like superimposing several sine (or, sawtooth!) waves, maybe add a lfo , some asdr enveloping and build your own synthesizer from scratch. though, if you like to code your sounds, you might want to take a look at chuck , the audio programming language . sine.cpp comments (292) tags: code twisted socks5 server 2011-03-10 10:34 i started to hack a very minimal socks5 server in python using the twisted framework. apparently, tcp/connect works just fine, and that's all i wanted (bind, udp, authentication are missing). this is the first time i did anything with twisted and i have to say that it is quite easy and convenient, although the documentation could need some improvements. this hack could be used as a basis for further experiments. for instance, it might be more convenient to log network traffic using a socks proxy instead of using a full network analyzer as e.g. wireshark . also, this might be used to insert or modify http headers for http requests or routing traffic through additional proxies, depending on intended destination. well, code is here but be aware that it's rather an example than anything else, including lack of good error handling and printing annoying information to stdout. on the other hand, it's just 128 lines ;-) pys5.py comments (416) tags: code , python new blog! 2011-03-09 14:06 finally, i have changed my whole website. everything is driven now by some custom code built on top of the totally awesome django web framework. everything still python, but no longer any trac -abuse. i had to migrate all old data manually, therefore i've just saved the blog posts i've considered worth saving. i did not restore any comments. and the wiki is gone, which i did not use much anyways. if you are missing anything, please excuse the inconveniences. also note that i am still working on the new site, so code is not perfect yet, maybe some dead links and stuff. just wanted to switch as quickly as possible as the old site drowned in spam. speaking of spam, comments are now protected by google's recaptcha . not the most secure solution out there, but i think it's acceptable and should suffice to stop spam on this site (or at least limit it to manual spam .) comments (2499) tags: python older posts >> search blog: latest blog comments: dojin at factoring semiprimes (for fun) , 2018-05-01 04:39 royal1688 at new blog! , 2018-04-30 05:38 hvnecocsmupt at opencv + homographies , 2018-04-02 23:53 trentglime at opencv + homographies , 2018-04-02 23:39 popular posts: au

URL analysis for ioctl.eu


http://www.ioctl.eu/blog/2009/09/16/automatic_panoramas_ii
http://www.ioctl.eu/attachments/2011/03/10/pys5.py
http://www.ioctl.eu/blog/2011/03/16/openal-sine-synth/
http://www.ioctl.eu/attachments/2011/03/16/sine.cpp
http://www.ioctl.eu/blog/2011/04/07/factoring-semiprimes-fun
http://www.ioctl.eu/attachments/2011/06/07/quiltator-0.3.zip
http://www.ioctl.eu/blog/2009/05/13/opencv_homography
http://www.ioctl.eu/blog/2009/11/28/opengl_copy_texture
http://www.ioctl.eu/blog/tags/reverse
http://www.ioctl.eu/blog/2011/03/10/twisted-socks5-server/
http://www.ioctl.eu/p/about
http://www.ioctl.eu/blog/2011/03/09/new-blog
http://www.ioctl.eu/attachments/2011/06/07/quilt1.jpg
http://www.ioctl.eu/blog/2011/03/24/boostasiossl-advanced-certificate-informations/
http://www.ioctl.eu/blog/tags/python

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 WHOIS service offered by EURid and the access to the records
% in the EURid WHOIS database are provided for information purposes
% only. It allows persons to check whether a specific domain name
% is still available or not and to obtain information related to
% the registration records of existing domain names.
%
% EURid cannot, under any circumstances, be held liable in case the
% stored information would prove to be wrong, incomplete or not
% accurate in any sense.
%
% By submitting a query you agree not to use the information made
% available to:
%
% - allow, enable or otherwise support the transmission of unsolicited,
% commercial advertising or other solicitations whether via email or
% otherwise;
% - target advertising in any possible way;
%
% - to cause nuisance in any possible way to the registrants by sending
% (whether by automated, electronic processes capable of enabling
% high volumes or other possible means) messages to them.
%
% Without prejudice to the above, it is explicitly forbidden to extract,
% copy and/or use or re-utilise in any form and by any means
% (electronically or not) the whole or a quantitatively or qualitatively
% substantial part of the contents of the WHOIS database without prior
% and explicit permission by EURid, nor in any attempt hereof, to apply
% automated, electronic processes to EURid (or its systems).
%
% You agree that any reproduction and/or transmission of data for
% commercial purposes will always be considered as the extraction of a
% substantial part of the content of the WHOIS database.
%
% By submitting the query you agree to abide by this policy and accept
% that EURid can take measures to limit the use of its WHOIS services
% in order to protect the privacy of its registrants or the integrity
% of the database.
%
% The EURid WHOIS service on port 43 (textual whois) never
% discloses any information concerning the registrant.
% Registrant and onsite contact information can be obtained through use of the
% webbased whois service available from the EURid website www.eurid.eu
%
% WHOIS ioctl.eu
Domain: ioctl.eu

Registrant:
NOT DISCLOSED!
Visit www.eurid.eu for webbased whois.

Technical:
Name: domainfactory Hostmaster
Organisation: domainfactory GmbH
Language: de
Phone: +49.89552660
Fax: +49.8955266222
Email: [email protected]

Registrar:
Name: domainfactory GmbH
Website: http://www.df.eu

Name servers:
ns2.namespace4you.de
ns.namespace4you.de

Please visit www.eurid.eu for more info.

  REFERRER http://www.eurid.eu

  REGISTRAR EURID

SERVERS

  SERVER eu.whois-servers.net

  ARGS ioctl.eu

  PORT 43

  TYPE domain

DOMAIN

  NAME ioctl.eu

REGISTRAR

  NAME domainfactory GmbH

  URL http://www.df.eu

NSERVER

  NS2.NAMESPACE4YOU.DE 193.223.77.3

  NS.NAMESPACE4YOU.DE 80.67.16.124

OWNER
NOT DISCLOSED!
Visit www.eurid.eu for webbased whois.
Technical:
Name: domainfactory Hostmaster
Organisation: domainfactory GmbH
Language: de
Phone: +49.89552660
Fax: +49.8955266222
Email: [email protected]

  REGISTERED yes

Go to top

Mistakes


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

  • www.uioctl.com
  • www.7ioctl.com
  • www.hioctl.com
  • www.kioctl.com
  • www.jioctl.com
  • www.iioctl.com
  • www.8ioctl.com
  • www.yioctl.com
  • www.ioctlebc.com
  • www.ioctlebc.com
  • www.ioctl3bc.com
  • www.ioctlwbc.com
  • www.ioctlsbc.com
  • www.ioctl#bc.com
  • www.ioctldbc.com
  • www.ioctlfbc.com
  • www.ioctl&bc.com
  • www.ioctlrbc.com
  • www.urlw4ebc.com
  • www.ioctl4bc.com
  • www.ioctlc.com
  • www.ioctlbc.com
  • www.ioctlvc.com
  • www.ioctlvbc.com
  • www.ioctlvc.com
  • www.ioctl c.com
  • www.ioctl bc.com
  • www.ioctl c.com
  • www.ioctlgc.com
  • www.ioctlgbc.com
  • www.ioctlgc.com
  • www.ioctljc.com
  • www.ioctljbc.com
  • www.ioctljc.com
  • www.ioctlnc.com
  • www.ioctlnbc.com
  • www.ioctlnc.com
  • www.ioctlhc.com
  • www.ioctlhbc.com
  • www.ioctlhc.com
  • www.ioctl.com
  • www.ioctlc.com
  • www.ioctlx.com
  • www.ioctlxc.com
  • www.ioctlx.com
  • www.ioctlf.com
  • www.ioctlfc.com
  • www.ioctlf.com
  • www.ioctlv.com
  • www.ioctlvc.com
  • www.ioctlv.com
  • www.ioctld.com
  • www.ioctldc.com
  • www.ioctld.com
  • www.ioctlcb.com
  • www.ioctlcom
  • www.ioctl..com
  • www.ioctl/com
  • www.ioctl/.com
  • www.ioctl./com
  • www.ioctlncom
  • www.ioctln.com
  • www.ioctl.ncom
  • www.ioctl;com
  • www.ioctl;.com
  • www.ioctl.;com
  • www.ioctllcom
  • www.ioctll.com
  • www.ioctl.lcom
  • www.ioctl com
  • www.ioctl .com
  • www.ioctl. com
  • www.ioctl,com
  • www.ioctl,.com
  • www.ioctl.,com
  • www.ioctlmcom
  • www.ioctlm.com
  • www.ioctl.mcom
  • www.ioctl.ccom
  • www.ioctl.om
  • www.ioctl.ccom
  • www.ioctl.xom
  • www.ioctl.xcom
  • www.ioctl.cxom
  • www.ioctl.fom
  • www.ioctl.fcom
  • www.ioctl.cfom
  • www.ioctl.vom
  • www.ioctl.vcom
  • www.ioctl.cvom
  • www.ioctl.dom
  • www.ioctl.dcom
  • www.ioctl.cdom
  • www.ioctlc.om
  • www.ioctl.cm
  • www.ioctl.coom
  • www.ioctl.cpm
  • www.ioctl.cpom
  • www.ioctl.copm
  • www.ioctl.cim
  • www.ioctl.ciom
  • www.ioctl.coim
  • www.ioctl.ckm
  • www.ioctl.ckom
  • www.ioctl.cokm
  • www.ioctl.clm
  • www.ioctl.clom
  • www.ioctl.colm
  • www.ioctl.c0m
  • www.ioctl.c0om
  • www.ioctl.co0m
  • www.ioctl.c:m
  • www.ioctl.c:om
  • www.ioctl.co:m
  • www.ioctl.c9m
  • www.ioctl.c9om
  • www.ioctl.co9m
  • www.ioctl.ocm
  • www.ioctl.co
  • ioctl.eum
  • www.ioctl.con
  • www.ioctl.conm
  • ioctl.eun
  • www.ioctl.col
  • www.ioctl.colm
  • ioctl.eul
  • www.ioctl.co
  • www.ioctl.co m
  • ioctl.eu
  • www.ioctl.cok
  • www.ioctl.cokm
  • ioctl.euk
  • www.ioctl.co,
  • www.ioctl.co,m
  • ioctl.eu,
  • www.ioctl.coj
  • www.ioctl.cojm
  • ioctl.euj
  • www.ioctl.cmo
Show All Mistakes Hide All Mistakes