jerrywalsh.org Report : Visit Site


  • Server:Apache/2.4.7...

    The main IP address: 178.79.135.145,Your server United Kingdom,London ISP:Linode LLC  TLD:org CountryCode:GB

    The description :my blog as a tech entrepreneur, hacker, bootstrapper, biz nerd and all round computer nut. i write about coding, hacking, startups, computer security …...

    This report updates in 11-Jun-2018

Created Date:2003-02-13

Technical data of the jerrywalsh.org


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host jerrywalsh.org. Currently, hosted in United Kingdom and its service provider is Linode LLC .

Latitude: 51.508529663086
Longitude: -0.12574000656605
Country: United Kingdom (GB)
City: London
Region: England
ISP: Linode LLC

HTTP Header Analysis


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

Content-Length:9223
X-Content-Type-Options:nosniff
Content-Encoding:gzip
Accept-Ranges:bytes
Vary:Accept-Encoding,User-Agent
Server:Apache/2.4.7
Last-Modified:Thu, 08 Jun 2017 09:58:45 GMT
Connection:close
Date:Mon, 11 Jun 2018 05:03:42 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns.rackspace.com. hostmaster.rackspace.com. 1462115360 10800 3600 604800 300
txt:"v=spf1 ip4:74.52.179.236 ip4:74.52.179.234 ip4:178.79.135.145 include:_spf.google.com include:sendgrid.net a mx ~all"
ns:ns.rackspace.com.
ns2.rackspace.com.
ipv4:IP:178.79.135.145
ASN:63949
OWNER:LINODE-AP Linode, LLC, US
Country:GB
mx:MX preference = 10, mail exchanger = mx-inbound.nitroweb.net.

HtmlToText

coding, hacking, startups, computer security, technology and more rss blog archives projects about contact your phone company is watching you malte spitz, a member of germany’s green party, sued his mobile phone provider to reveal what records it kept about him. the records including tracking data based on rough triangulation from the nearest cell-phone towers. spitz then sent this information to zeit online, who combined it with spitz’ personal blog and twitter entries to produce an incredible animated map that reveals a surprisingly detailed account of his movements over a six-month period. to reiterate, this was done all without gps services and without spitz requesting his movements be tracked — it was automatically generated simply by his mobile phone communicating with cell phone towers. it very much goes to show the importance of regulations that limit retention periods for this kind of data, given how detailed a reconstruction can be made of an individual’s life. textbuddy is no more! it was fun while it lasted y'all textbuddy was created to make it easy for people to actually utilize the webtext allowances providers gave them. in the last few weeks some providers (namely o2 and vodafone) have begun making changes to their webtext pages in order to make it more difficult (but not impossible) for applications such as textbuddy from operating. unfortunately it’s just not worth trying to integrate with providers who don’t want you integrating with them. if this move leaves you high and dry then perhaps something like cabbage texter will work instead? thanks for using textbuddy! howto secure your linux box with iptables okay, so this post will be brief but to the point. today i needed to lock down a machine i administer so the only inbound connections which were allowed were ssh connections from trusted hosts. i'm using debian so this will obviously work for other debian based distros such as ubuntu, linux mint etc. assuming you're running a current version of debian or a derivative then iptables will already be present on your system. one of the first things to take note is that iptables won't hold its ruleset during a reboot so to start off this tutorial the first thing i ensured was that the ruleset will be restored when the machine is rebooted. so, as root i edited /etc/rc.local and before the exit line i added /etc/iptables-init . because this was a fresh install my rc.local ended up looking like this: /etc/rc.local from debian 6 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 #!/bin/sh -e # # rc.local # # this script is executed at the end of each multiuser runlevel. # make sure that the script will "exit 0" on success or any other # value on error. # # in order to enable or disable this script just change the execution # bits. # # by default this script does nothing. # setup iptables /etc/iptables-init exit 0 next, i created the script which we've setup to be executed from rc.local: /etc/iptables-init 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 #!/bin/sh # ---------------------------------------------------------------------- # simple but secure iptables initialization script # datecreated: thu 12 jan 2012 00:37:04 gmt # author: jerry walsh # ---------------------------------------------------------------------- # put your trusted hosts/ranges here: trusted_hosts = "1.2.3.4 8.8.8.8/24 \ 4.3.2.1 1.2.2.2 3.3.3.4 " # flush rules iptables -f # log dropped connections #iptables -n logdrop # allow localhost connections to the loopback interface iptables -a input -i lo -j accept iptables -a input ! -i lo -d 127.0.0.0/8 -j reject # allow connections which are already established iptables -a input -m state --state established,related -j accept # allow all outbound connections iptables -a output -j accept # allow tcp to port 22 (ssh daemon) from trusted hosts for goodie in $trusted_hosts ; do iptables -a input -p tcp -m state --state new -s $goodie --dport 22 -j accept done # or you could just allow ssh access from all hosts # note: if you're going to allow ssh access from all hosts then # it's always a good idea to put sshd on a non-standard port # - this keeps the majority of script kid trawlers out #iptables -a input -p tcp -m state --state new --dport 22 -j accept #other optional extras: # allow inbound http access #iptables -a input -p tcp -m state --state new --dport 80 -j accept # allow inbound https access #iptables -a input -p tcp -m state --state new --dport 443 -j accept # drop all other inbound traffic (including icmp, udp etc.) iptables -a input -j drop # you could also just block tcp connections.. #iptables -a input -p tcp -j drop finally, i set the script executable and executed the script now to load the new rules in to iptables: finally, we mark the script executable and run it! 1 2 chmod 0700 /etc/iptables-init ! $ and that's it! remember - it's always good to test your configuration from a remote host or better still from a 'bad' remote host and a 'good' (whitelisted) host. remember: the above script is just an example! you should modify the script to meet your needs (as it stands this met mine) but it still serves as a useful starting point. it should also be noted that icmp ping replies will be blocked using the above setup - this may not be desirable but in my case it was! john cleese on creativity there's no doubt about it that john cleese is a genius when it comes to comedy but his genius-ness (is that even a word?) doesn't stop there. what follows is one of my favourite videos from him. the highlight of which is this enlightening little piece of wisdom: to know how good you are at something requires the same skills as it does to be good at those things. which means if you're absolutely hopeless at something, you lack exactly the skills that you need to know that you're absolutely hopeless at it. and this is a profound discovery - that most people who have absolutely no idea what they're doing, have absolutely no idea that they have no idea what they're doing. it explains a great deal of life. ... it also explains why so many people in charge of so many organisations have no idea what they're doing, they have a terrible blind spot. watch the video here: finally, i got my site in order! i know, i know.. it's been long overdue and i've just been putting it off for far too long. a recent trip to zell am see , in austria recently gave me enough downtime to focus on revamping the site which is now complete. i think everything should be working ok but if you encounter problems then please let me know . i hope the new look will get me blogging more often and with higher quality! i plan to post again soon, this time with something more substantial until then i'll leave you with my "tune of the trip", "black ash veil" by apparat: textbuddy now supports the three ireland network just another short but hot off the press post... the title says it all, textbuddy now support the three network! textbuddy now supports eircom's emobile network time's currently not on my side so i'm going to make this one quick. a new version of textbuddy has just been released. the major (and only) addition in this version is support for the eircom emobile network. get it while it's hot.. google chrome takes the lead well, it's been quite some time since my last post. i've been busy and it seems google has been busy too. i recently upgraded to the latest version of chromium (aka google chrome) and noticed that the folks at google have decided to drop the http:// prefix from the "omnibox": cnet reported this back when the feature first appeared in the developer beta's but i must say i'm surprised at the results i found in the following article : really? you'd prefer to see the http:// stay? in my opinion, dropping it is one of the best damn things they have ever done because in this day and age, it's no longer necessary. it just doesn't matter anymore because the web is all about http:// now. it's implicit and the ui should mirror this - people don't need to know about it. i recall what my good friend anto once said ... this is just one of the things which makes chrome stand out from all the others, jeff atwood recently wrote that chrome was a completely respectable browser in v1 and v2. the entire project has moved forward so fast that it now is, at least in my humble opinion, the best browser on the planet. google went from nothing, no web browser at all, to best-of-breed in under two years. howto: compile pdflib for php on linux here's a small script which you can use to compile pdflib support for php on linux. this should work on any debian based linux distribution. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 #!/bin/sh # download the pdflib lite linux source from here first: # http://www.pdflib.com/download/pdflib-family/pdflib-lite-7/ # put the download in the same location as this script # note: you will be prompted by the pecl installation at the end # of the process for a path - you'll need to enter /usr/local/ here # # author: jbw # datecreated: mon, 22 mar 2010 # we need root privileges .. if [ "$user" ! = "root" ] ; then chmod +x "$0" gksudo "$0" exit fi dpkg -l | grep -q build-essential || \ apt-get install build-essential tar zxvf pdflib-lite-7*.tar.gz && \ cd pdflib-lite-7*/ && \ ./configure && \ make && \ make install dpkg -l | grep -q php-pear || \ apt-get install php-pear dpkg -l | grep -q php5-dev || \ apt-get install php5-dev pecl install pdflib if you don't plan on using the dl() method to load this module dynamically then you may need to modify the php configuration so it autoloads the pdf.so extension. delaying/ignoring touchpad taps while you're typing on linux okay, so it may mean my typing posture is out of line but even so, it can be incredibly annoying if your thumb just happens to hit the touchpad on your laptop while you're typing. i'm using a lenovo thinkpad t400 which has a synaptics based touchpad. this fix only works if you're using a synaptics based touchpad! if you're not using a synaptic touchpad then this fix probably won't work for you. first off, we need to edit our xorg.conf at /etc/x11/xorg.conf. i appended the following to my file since i had not mouse based input device section: 1 2 3 4 5 6 7 section "inputdevice" identifier "touchpad" driver "synaptics" option "device" "/dev/psaux" option "protocol" "auto-dev" option "shmconfig" "on" endsection if you have an input device section then you'll need to ensure it features the same option and driver lines as above. once you've made these changes you'll need to restart the x server. you can do this using 1 /etc/init.d/gdm restart or alternatively kill the x server using ctrl+alt+backspace and let gdm bring it back up. before we restart the x server, let's setup a tapping delay. i created a xinitrc file at ~/.xinitrc and put the following in it: 1 2 pgrep syndaemon > /dev/null && killall syndaemon syndaemon -i 0.5 -d you can experiment with different delays once you've restarted your x server by executing the two lines above from within your .xinitrc (or simply re-execute ~/.xinitrc). half a second turned out to be the perfect delay for me but it's entirely down to your own preferences. have fun! ← older blog archives about jerry walsh tech entrepreneur, hacker, bootstrapper, biz nerd and all round computer nut. more.. follow @jaybedubb recent posts your phone company is watching you textbuddy is no more! it was fun while it lasted y'all howto secure your linux box with iptables john cleese on creativity finally, i got my site in order! latest tweets tweets by @jaybedubb follow @jaybedubb -- copyright © 2017 - jerry walsh

URL analysis for jerrywalsh.org


https://www.jerrywalsh.org/2012/finally-got-around-to-updating-my-site-0105.html
https://www.jerrywalsh.org/2011/textbuddy-now-supports-eircoms-emobile-network-0319.html
https://www.jerrywalsh.org/assets/uploads/2010/09/screenshot-6.png
https://www.jerrywalsh.org/2012/john-cleese-on-creativity-0107.html
https://www.jerrywalsh.org/page2
https://www.jerrywalsh.org/2012/textbuddy-is-no-more-it-was-fun-while-it-lasted-1002.html
https://www.jerrywalsh.org/2012/your-phone-company-is-watching-you-1002.html
https://www.jerrywalsh.org/atom.xml
https://www.jerrywalsh.org/blog/archives
https://www.jerrywalsh.org/2012/howto-secure-your-linux-box-with-iptables-0112.html
https://www.jerrywalsh.org/contact/
https://www.jerrywalsh.org/2011/textbuddy-now-supports-the-three-ireland-network-0811.html
https://www.jerrywalsh.org/contact
https://www.jerrywalsh.org/about
https://www.jerrywalsh.org/2010/delayingignoring-touchpad-taps-while-youre-typing-on-linux-0321.html

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: JERRYWALSH.ORG
Registry Domain ID: D94443964-LROR
Registrar WHOIS Server:
Registrar URL: http://www.enom.com
Updated Date: 2017-01-14T21:55:15Z
Creation Date: 2003-02-13T18:48:02Z
Registry Expiry Date: 2018-02-13T18:48:02Z
Registrar Registration Expiration Date:
Registrar: eNom, Inc.
Registrar IANA ID: 48
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Reseller:
Domain Status: ok https://icann.org/epp#ok
Registry Registrant ID: C140105128-LROR
Registrant Name: Jerry Walsh
Registrant Organization: Envision Technologies
Registrant Street: 28b Princes Street
Registrant Street: Cork
Registrant City: Cork
Registrant State/Province: Munster
Registrant Postal Code: 12345
Registrant Country: IE
Registrant Phone: +353.879197140
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID: C140105128-LROR
Admin Name: Jerry Walsh
Admin Organization: Envision Technologies
Admin Street: 28b Princes Street
Admin Street: Cork
Admin City: Cork
Admin State/Province: Munster
Admin Postal Code: 12345
Admin Country: IE
Admin Phone: +353.879197140
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID: C140105128-LROR
Tech Name: Jerry Walsh
Tech Organization: Envision Technologies
Tech Street: 28b Princes Street
Tech Street: Cork
Tech City: Cork
Tech State/Province: Munster
Tech Postal Code: 12345
Tech Country: IE
Tech Phone: +353.879197140
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: [email protected]
Name Server: NS2.NITROWEB.NET
Name Server: NS1.NITROWEB.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2017-09-02T02:35:06Z <<<

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

Access to Public Interest Registry WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the Public Interest Registry registry database. The data in this record is provided by Public Interest Registry for informational purposes only, and Public Interest Registry does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to: (a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or Afilias except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Public Interest Registry reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.

  REFERRER http://www.pir.org/

  REGISTRAR Public Interest Registry

SERVERS

  SERVER org.whois-servers.net

  ARGS jerrywalsh.org

  PORT 43

  TYPE domain

DOMAIN

  NAME jerrywalsh.org

  HANDLE D94443964-LROR

  CREATED 2003-02-13

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

NSERVER

  NS2.NITROWEB.NET 65.61.188.4

  NS1.NITROWEB.NET 69.20.95.4

OWNER

  HANDLE C140105128-LROR

  NAME Jerry Walsh

  ORGANIZATION Envision Technologies

ADDRESS

STREET
28b Princes Street
Cork

  CITY Cork

  STATE Munster

  PCODE 12345

  COUNTRY IE

  PHONE +353.879197140

  EMAIL [email protected]

ADMIN

  HANDLE C140105128-LROR

  NAME Jerry Walsh

  ORGANIZATION Envision Technologies

ADDRESS

STREET
28b Princes Street
Cork

  CITY Cork

  STATE Munster

  PCODE 12345

  COUNTRY IE

  PHONE +353.879197140

  EMAIL [email protected]

TECH

  HANDLE C140105128-LROR

  NAME Jerry Walsh

  ORGANIZATION Envision Technologies

ADDRESS

STREET
28b Princes Street
Cork

  CITY Cork

  STATE Munster

  PCODE 12345

  COUNTRY IE

  PHONE +353.879197140

  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.ujerrywalsh.com
  • www.7jerrywalsh.com
  • www.hjerrywalsh.com
  • www.kjerrywalsh.com
  • www.jjerrywalsh.com
  • www.ijerrywalsh.com
  • www.8jerrywalsh.com
  • www.yjerrywalsh.com
  • www.jerrywalshebc.com
  • www.jerrywalshebc.com
  • www.jerrywalsh3bc.com
  • www.jerrywalshwbc.com
  • www.jerrywalshsbc.com
  • www.jerrywalsh#bc.com
  • www.jerrywalshdbc.com
  • www.jerrywalshfbc.com
  • www.jerrywalsh&bc.com
  • www.jerrywalshrbc.com
  • www.urlw4ebc.com
  • www.jerrywalsh4bc.com
  • www.jerrywalshc.com
  • www.jerrywalshbc.com
  • www.jerrywalshvc.com
  • www.jerrywalshvbc.com
  • www.jerrywalshvc.com
  • www.jerrywalsh c.com
  • www.jerrywalsh bc.com
  • www.jerrywalsh c.com
  • www.jerrywalshgc.com
  • www.jerrywalshgbc.com
  • www.jerrywalshgc.com
  • www.jerrywalshjc.com
  • www.jerrywalshjbc.com
  • www.jerrywalshjc.com
  • www.jerrywalshnc.com
  • www.jerrywalshnbc.com
  • www.jerrywalshnc.com
  • www.jerrywalshhc.com
  • www.jerrywalshhbc.com
  • www.jerrywalshhc.com
  • www.jerrywalsh.com
  • www.jerrywalshc.com
  • www.jerrywalshx.com
  • www.jerrywalshxc.com
  • www.jerrywalshx.com
  • www.jerrywalshf.com
  • www.jerrywalshfc.com
  • www.jerrywalshf.com
  • www.jerrywalshv.com
  • www.jerrywalshvc.com
  • www.jerrywalshv.com
  • www.jerrywalshd.com
  • www.jerrywalshdc.com
  • www.jerrywalshd.com
  • www.jerrywalshcb.com
  • www.jerrywalshcom
  • www.jerrywalsh..com
  • www.jerrywalsh/com
  • www.jerrywalsh/.com
  • www.jerrywalsh./com
  • www.jerrywalshncom
  • www.jerrywalshn.com
  • www.jerrywalsh.ncom
  • www.jerrywalsh;com
  • www.jerrywalsh;.com
  • www.jerrywalsh.;com
  • www.jerrywalshlcom
  • www.jerrywalshl.com
  • www.jerrywalsh.lcom
  • www.jerrywalsh com
  • www.jerrywalsh .com
  • www.jerrywalsh. com
  • www.jerrywalsh,com
  • www.jerrywalsh,.com
  • www.jerrywalsh.,com
  • www.jerrywalshmcom
  • www.jerrywalshm.com
  • www.jerrywalsh.mcom
  • www.jerrywalsh.ccom
  • www.jerrywalsh.om
  • www.jerrywalsh.ccom
  • www.jerrywalsh.xom
  • www.jerrywalsh.xcom
  • www.jerrywalsh.cxom
  • www.jerrywalsh.fom
  • www.jerrywalsh.fcom
  • www.jerrywalsh.cfom
  • www.jerrywalsh.vom
  • www.jerrywalsh.vcom
  • www.jerrywalsh.cvom
  • www.jerrywalsh.dom
  • www.jerrywalsh.dcom
  • www.jerrywalsh.cdom
  • www.jerrywalshc.om
  • www.jerrywalsh.cm
  • www.jerrywalsh.coom
  • www.jerrywalsh.cpm
  • www.jerrywalsh.cpom
  • www.jerrywalsh.copm
  • www.jerrywalsh.cim
  • www.jerrywalsh.ciom
  • www.jerrywalsh.coim
  • www.jerrywalsh.ckm
  • www.jerrywalsh.ckom
  • www.jerrywalsh.cokm
  • www.jerrywalsh.clm
  • www.jerrywalsh.clom
  • www.jerrywalsh.colm
  • www.jerrywalsh.c0m
  • www.jerrywalsh.c0om
  • www.jerrywalsh.co0m
  • www.jerrywalsh.c:m
  • www.jerrywalsh.c:om
  • www.jerrywalsh.co:m
  • www.jerrywalsh.c9m
  • www.jerrywalsh.c9om
  • www.jerrywalsh.co9m
  • www.jerrywalsh.ocm
  • www.jerrywalsh.co
  • jerrywalsh.orgm
  • www.jerrywalsh.con
  • www.jerrywalsh.conm
  • jerrywalsh.orgn
  • www.jerrywalsh.col
  • www.jerrywalsh.colm
  • jerrywalsh.orgl
  • www.jerrywalsh.co
  • www.jerrywalsh.co m
  • jerrywalsh.org
  • www.jerrywalsh.cok
  • www.jerrywalsh.cokm
  • jerrywalsh.orgk
  • www.jerrywalsh.co,
  • www.jerrywalsh.co,m
  • jerrywalsh.org,
  • www.jerrywalsh.coj
  • www.jerrywalsh.cojm
  • jerrywalsh.orgj
  • www.jerrywalsh.cmo
Show All Mistakes Hide All Mistakes