sebzehali.com Report : Visit Site


  • Server:Apache/2.4.25 (Debia...
    X-Powered-By:PHP/7.2.3

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

    The description :cooldatasoft limited it solutions for all home basket checkout my account shop setting up your ubuntu 16.04 lts for java development posted on 23rd april 2018 23rd april 2018 by fmucar it is always go...

    This report updates in 14-Sep-2018

Created Date:2007-11-18
Changed Date:2016-09-23
Expires Date:2017-11-18

Technical data of the sebzehali.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host sebzehali.com. 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.25 (Debian) containing the details of what the browser wants and will accept back from the web server.

Content-Length:8235
X-Powered-By:PHP/7.2.3
Set-Cookie:MBiyaRkd=lPpdZHGj; expires=Sat, 15-Sep-2018 04:36:08 GMT; Max-Age=86400; path=/, GPUjmRNJ=FU%5Bc4IBK; expires=Sat, 15-Sep-2018 04:36:08 GMT; Max-Age=86400; path=/, NtqCnw_iPYu=3cdD8mnoZTP; expires=Sat, 15-Sep-2018 04:36:08 GMT; Max-Age=86400; path=/
Content-Encoding:gzip
Vary:Accept-Encoding
Keep-Alive:timeout=5, max=100
Server:Apache/2.4.25 (Debian)
Connection:Keep-Alive
Link:; rel="https://api.w.org/"
Date:Fri, 14 Sep 2018 04:36:08 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:ns1.linode.com. fmucar.gmail.com. 2011082751 14400 14400 1209600 86400
ns:ns3.linode.com.
ns2.linode.com.
ns1.linode.com.
ns4.linode.com.
ns5.linode.com.
ipv4:IP:109.74.197.74
ASN:63949
OWNER:LINODE-AP Linode, LLC, US
Country:GB
mx:MX preference = 10, mail exchanger = ASPMX2.GOOGLEMAIL.com.
MX preference = 10, mail exchanger = ASPMX3.GOOGLEMAIL.com.
MX preference = 1, mail exchanger = ASPMX.L.GOOGLE.com.
MX preference = 5, mail exchanger = ALT1.ASPMX.L.GOOGLE.com.
MX preference = 5, mail exchanger = ALT2.ASPMX.L.GOOGLE.com.

HtmlToText

cooldatasoft limited it solutions for all home basket checkout my account shop setting up your ubuntu 16.04 lts for java development posted on 23rd april 2018 23rd april 2018 by fmucar it is always good to idea to automate setup to speed up your development. in case you need to setup your computer from scratch it can be very painful and a long process taking days if not weeks. your laptop might get broken, stolen or you might just want a fresh installation. the script i have is optimised for myself but can easily be modified for yourself as well. it first downloads the setup files for below applications: intellij idea community edition ide android studio ide studio-3t (formerly called robomongo) xmind zoom exodus crypto coin wallet below is the script to download files off internet; #!/usr/bin/env bash function downloadifnotexists { if [ -f "$1" ] then #0 = true echo "already exists : $1" return 0 else # 1 = false echo "downloading : $1" wget -p /opt/setup/ -u 'mozilla/5.0 (x11; linux x86_64; rv:30.0) gecko/20100101 firefox/30.0' "$2" return 1 fi } #!/usr/bin/env bash #include functions.sh for utils . functions.sh --source-only #idea intellij downloadifnotexists /opt/setup/ideaic-2018.1.1.tar.gz https://download.jetbrains.com/idea/ideaic-2018.1.1.tar.gz #android studio downloadifnotexists /opt/setup/android-studio-ide-173.4697961-linux.zip https://dl.google.com/dl/android/studio/ide-zips/3.1.1.0/android-studio-ide-173.4697961-linux.zip #3t studio - robomongo downloadifnotexists /opt/setup/studio-3t-linux-x64.tar.gz https://download.studio3t.com/studio-3t/linux/2018.2.5/studio-3t-linux-x64.tar.gz #xmind downloadifnotexists /opt/setup/xmind-8-update7-linux.zip https://www.xmind.net/xmind/downloads/xmind-8-update7-linux.zip #zoom downloadifnotexists /opt/setup/zoom_amd64.deb https://zoom.us/client/latest/zoom_amd64.deb #exodus downloadifnotexists /opt/setup/exodus-linux-x64-1.49.0.zip https://exodusbin.azureedge.net/releases/exodus-linux-x64-1.49.0.zip then it will install below programs from ubuntu repos: virtualbox docker docker-compose chrome browser dropbox open-jdk-8 ubuntu-restricted-extras htop thunderbird git pinta gparted terminator yakuake sl vlc code2html maven openssh-server xclip toilet figlet cowsay libav-tools #!/usr/bin/env bash #check if the running has root privileges if [ "$euid" -ne 0 ] then echo "please run as root" exit fi user="fmucar" #download program setup files first ./download_programs.sh chown -r $user:$user /opt #add java_home echo "java_home=\"/usr/lib/jvm/java-8-openjdk-amd64/\"" >> /etc/environment source /etc/environment #virtualbox installation apt-get install -y virtualbox virtualbox-ext-pack #docker apt-get -y install apt-transport-https ca-certificates curl software-properties-common curl -fssl https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - apt-key fingerprint 0ebfcd88 add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" apt-get update apt-get -y install docker-ce #docker-compose curl -l https://github.com/docker/compose/releases/download/1.21.0/docker-compose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose chmod +x /usr/local/bin/docker-compose docker-compose --version #systemctl status docker usermod -ag docker $user docker info #install zoom dpkg -i /opt/setup/zoom_amd64.deb sudo apt-get -f install #install chrome wget -q -o - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list' apt-get update apt-get -y install google-chrome-stable #dropbox sudo -h -u $user bash -c 'cd ~ && wget -o - "https://www.dropbox.com/download?plat=lnx.x86_64" | tar xzf -' sudo -h -u $user bash -c '~/.dropbox-dist/dropboxd &' #install new programs sudo apt-get install openjdk-8-jdk apt-get -y install ubuntu-restricted-extras apt-get -y install htop apt-get -y install thunderbird apt-get -y install git apt-get -y install pinta apt-get -y install gparted apt-get -y install terminator apt-get -y install yakuake apt-get -y install sl apt-get -y install vlc apt-get -y install code2html apt-get -y install maven apt-get -y install openssh-server apt-get -y install xclip apt-get -y install toilet apt-get -y install figlet apt-get -y install cowsay apt-get -y install libav-tools #idea extract tar -xzvf /opt/setup/ideaic-2018.1.1.tar.gz -c /opt/ #mongodb entry for /etc/hosts for docker mongodb echo '127.0.0.1 mongodb' >> /etc/hosts #android studio apt-get -y install libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 unzip /opt/setup/android-studio-ide-173.4697961-linux.zip -d /opt/ #xminf - mind mapping software mkdir -p /opt/xmind unzip /opt/setup/xmind-8-update7-linux.zip -d /opt/xmind/ #exodus wallet mkdir -p /opt/exodus unzip /opt/setup/exodus-linux-x64-1.49.0.zip -d /opt/exodus/ #robomongo mkdir -p /opt/studio-3t tar -xzvf /opt/setup/studio-3t-linux-x64.tar.gz -c /opt/studio-3t chmod +x /opt/studio-3t/studio-3t-linux-x64.sh /opt/studio-3t/studio-3t-linux-x64.sh & #change ownership to user for those programs chown -r $user:$user /opt #update existing programs first apt-get update apt-get -y upgrade #.gradle.properties - for android signing apk release files mkdir -p /home/$user/.gradle cat > /home/$user/.gradle/gradle.properties << 'eof' release_store_file=/home/$user/workspace/android/prod.keystore release_store_password=[put tore password here] release_key_alias=[put key alias here] release_key_password=[ut key password here] eof chown -r $user:$user /home/$user/.gradle #create .m2 & github token files sudo -h -u $user bash -c 'mkdir -p /home/$user/.m2/' sudo -h -u $user bash -c 'touch /home/$user/.m2/github-token' sudo -h -u $user bash -c 'touch /home/$user/.m2/settings.xml' sudo -h -u $user bash -c 'mkdir -p /home/$user/.m2/' cat > /home/$user/.m2/github-token << 'eof' [place your github token here] eof cat > /home/$user/.m2/settings.xml << 'eof' [place your settings.xml content here] eof #setup ssh keys sudo -h -u $user bash -c 'mkdir -p /home/$user/.ssh' cat > /home/$user/.ssh/id_rsa << 'eof' [place your private key here] eof # setup ssh public key cat > /home/$user/.ssh/id_rsa.pub << 'eof' [place your public key here] eof #update access rights for ssh keys chown -r $user:$user /home/$user/.ssh chmod 0700 /home/$user/.ssh chmod 0644 /home/$user/.ssh/id_rsa.pub chmod 0600 /home/$user/.ssh/id_rsa chown -r $user:$user /home/$user chown -r $user:$user /opt/ #setup workspace and clone repos ./clonegitrepos.sh apt-get update apt-get upgrade apt-get -y autoremove echo "finished" lsb_release -a and finally, update the following file to clone your own repos #!/usr/bin/env bash #workspace setup git config --global user.email "[place your email here]" git config --global user.name "[place your name here]" git config --global push.default simple #cooldatasoft github - [replace with your own repositories] #you should have setup your ssh keys to get access to the repos sudo -h -u $user bash -c 'mkdir -p /home/$user/workspace/cooldatasoft-github' cd /home/$user/workspace/cooldatasoft-github sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/cds-parent.git' sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/cds-build-tools.git' sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/wicket-menu.git' sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/object-sampler.git' sudo -h -u $user bash -c 'git clone [email protected]:cooldatasoft/cds-util.git' chown -r $user:$user /home/$user/ github repo for scripts posted in ubuntu httpurl parameter encoding in java posted on 6th april 2018 23rd april 2018 by fmucar some already know that there is urlencoder class in java but not many know that this class is actually not for url encoding but for form encoding if you have look at the javadocs. there

URL analysis for sebzehali.com




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: SEBZEHALI.COM
Registry Domain ID: 1336032374_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.enom.com
Registrar URL: www.enom.com
Updated Date: 2016-09-23T03:12:11.00Z
Creation Date: 2007-11-18T18:05:00.00Z
Registrar Registration Expiration Date: 2017-11-18T18:05:00.00Z
Registrar: ENOM, INC.
Registrar IANA ID: 48
Reseller: NAMECHEAP.COM
Domain Status: clientTransferProhibited https://www.icann.org/epp#clientTransferProhibited
Registry Registrant ID:
Registrant Name: WHOISGUARD PROTECTED
Registrant Organization: WHOISGUARD, INC.
Registrant Street: P.O. BOX 0823-03411
Registrant City: PANAMA
Registrant State/Province: PANAMA
Registrant Postal Code: 0
Registrant Country: PA
Registrant Phone: +507.8365503
Registrant Phone Ext:
Registrant Fax: +51.17057182
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID:
Admin Name: WHOISGUARD PROTECTED
Admin Organization: WHOISGUARD, INC.
Admin Street: P.O. BOX 0823-03411
Admin City: PANAMA
Admin State/Province: PANAMA
Admin Postal Code: 0
Admin Country: PA
Admin Phone: +507.8365503
Admin Phone Ext:
Admin Fax: +51.17057182
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID:
Tech Name: WHOISGUARD PROTECTED
Tech Organization: WHOISGUARD, INC.
Tech Street: P.O. BOX 0823-03411
Tech City: PANAMA
Tech State/Province: PANAMA
Tech Postal Code: 0
Tech Country: PA
Tech Phone: +507.8365503
Tech Phone Ext:
Tech Fax: +51.17057182
Tech Fax Ext:
Tech Email: [email protected]
Name Server: NS1.LINODE.COM
Name Server: NS2.LINODE.COM
Name Server: NS3.LINODE.COM
Name Server: NS4.LINODE.COM
DNSSEC: unSigned
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.4252982646
URL of the ICANN WHOIS Data Problem Reporting System: http://wdprs.internic.net/
>>> Last update of WHOIS database: 2016-09-23T03:12:11.00Z <<<

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


The data in this whois database is provided to you for information
purposes only, that is, to assist you in obtaining information about or
related to a domain name registration record. We make this information
available "as is," and do not guarantee its accuracy. By submitting a
whois query, you agree that you will use this data only for lawful
purposes and that, under no circumstances will you use this data to: (1)
enable high volume, automated, electronic processes that stress or load
this whois database system providing you this information; or (2) allow,
enable, or otherwise support the transmission of mass unsolicited,
commercial advertising or solicitations via direct mail, electronic
mail, or by telephone. The compilation, repackaging, dissemination or
other use of this data is expressly prohibited without prior written
consent from us.

We reserve the right to modify these terms at any time. By submitting
this query, you agree to abide by these terms.
Version 6.3 4/3/2002

  REGISTRAR ENOM, INC.

  REFERRER http://www.enom.com

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =sebzehali.com

  PORT 43

  SERVER whois.enom.com

  ARGS sebzehali.com

  PORT 43

  TYPE domain

DOMAIN

  NAME sebzehali.com

NSERVER

  NS1.LINODE.COM 162.159.27.72

  NS2.LINODE.COM 162.159.24.39

  NS3.LINODE.COM 162.159.25.129

  NS4.LINODE.COM 162.159.26.99

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

  CHANGED 2016-09-23

  CREATED 2007-11-18

  EXPIRES 2017-11-18

  REGISTERED yes

Go to top

Mistakes


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

  • www.usebzehali.com
  • www.7sebzehali.com
  • www.hsebzehali.com
  • www.ksebzehali.com
  • www.jsebzehali.com
  • www.isebzehali.com
  • www.8sebzehali.com
  • www.ysebzehali.com
  • www.sebzehaliebc.com
  • www.sebzehaliebc.com
  • www.sebzehali3bc.com
  • www.sebzehaliwbc.com
  • www.sebzehalisbc.com
  • www.sebzehali#bc.com
  • www.sebzehalidbc.com
  • www.sebzehalifbc.com
  • www.sebzehali&bc.com
  • www.sebzehalirbc.com
  • www.urlw4ebc.com
  • www.sebzehali4bc.com
  • www.sebzehalic.com
  • www.sebzehalibc.com
  • www.sebzehalivc.com
  • www.sebzehalivbc.com
  • www.sebzehalivc.com
  • www.sebzehali c.com
  • www.sebzehali bc.com
  • www.sebzehali c.com
  • www.sebzehaligc.com
  • www.sebzehaligbc.com
  • www.sebzehaligc.com
  • www.sebzehalijc.com
  • www.sebzehalijbc.com
  • www.sebzehalijc.com
  • www.sebzehalinc.com
  • www.sebzehalinbc.com
  • www.sebzehalinc.com
  • www.sebzehalihc.com
  • www.sebzehalihbc.com
  • www.sebzehalihc.com
  • www.sebzehali.com
  • www.sebzehalic.com
  • www.sebzehalix.com
  • www.sebzehalixc.com
  • www.sebzehalix.com
  • www.sebzehalif.com
  • www.sebzehalifc.com
  • www.sebzehalif.com
  • www.sebzehaliv.com
  • www.sebzehalivc.com
  • www.sebzehaliv.com
  • www.sebzehalid.com
  • www.sebzehalidc.com
  • www.sebzehalid.com
  • www.sebzehalicb.com
  • www.sebzehalicom
  • www.sebzehali..com
  • www.sebzehali/com
  • www.sebzehali/.com
  • www.sebzehali./com
  • www.sebzehalincom
  • www.sebzehalin.com
  • www.sebzehali.ncom
  • www.sebzehali;com
  • www.sebzehali;.com
  • www.sebzehali.;com
  • www.sebzehalilcom
  • www.sebzehalil.com
  • www.sebzehali.lcom
  • www.sebzehali com
  • www.sebzehali .com
  • www.sebzehali. com
  • www.sebzehali,com
  • www.sebzehali,.com
  • www.sebzehali.,com
  • www.sebzehalimcom
  • www.sebzehalim.com
  • www.sebzehali.mcom
  • www.sebzehali.ccom
  • www.sebzehali.om
  • www.sebzehali.ccom
  • www.sebzehali.xom
  • www.sebzehali.xcom
  • www.sebzehali.cxom
  • www.sebzehali.fom
  • www.sebzehali.fcom
  • www.sebzehali.cfom
  • www.sebzehali.vom
  • www.sebzehali.vcom
  • www.sebzehali.cvom
  • www.sebzehali.dom
  • www.sebzehali.dcom
  • www.sebzehali.cdom
  • www.sebzehalic.om
  • www.sebzehali.cm
  • www.sebzehali.coom
  • www.sebzehali.cpm
  • www.sebzehali.cpom
  • www.sebzehali.copm
  • www.sebzehali.cim
  • www.sebzehali.ciom
  • www.sebzehali.coim
  • www.sebzehali.ckm
  • www.sebzehali.ckom
  • www.sebzehali.cokm
  • www.sebzehali.clm
  • www.sebzehali.clom
  • www.sebzehali.colm
  • www.sebzehali.c0m
  • www.sebzehali.c0om
  • www.sebzehali.co0m
  • www.sebzehali.c:m
  • www.sebzehali.c:om
  • www.sebzehali.co:m
  • www.sebzehali.c9m
  • www.sebzehali.c9om
  • www.sebzehali.co9m
  • www.sebzehali.ocm
  • www.sebzehali.co
  • sebzehali.comm
  • www.sebzehali.con
  • www.sebzehali.conm
  • sebzehali.comn
  • www.sebzehali.col
  • www.sebzehali.colm
  • sebzehali.coml
  • www.sebzehali.co
  • www.sebzehali.co m
  • sebzehali.com
  • www.sebzehali.cok
  • www.sebzehali.cokm
  • sebzehali.comk
  • www.sebzehali.co,
  • www.sebzehali.co,m
  • sebzehali.com,
  • www.sebzehali.coj
  • www.sebzehali.cojm
  • sebzehali.comj
  • www.sebzehali.cmo
Show All Mistakes Hide All Mistakes