distribucon.com Report : Visit Site


  • Ranking Alexa Global: # 6,702,498

    Server:Microsoft-IIS/10.0...
    X-Powered-By:ASP.NET

    The main IP address: 137.117.84.54,Your server United States,Bristow ISP:Microsoft Corp  TLD:com CountryCode:US

    The description :thoughts from dan miser sunday, 01 december 2013 nuget.server in an azure website application trying to follow the directions to host your own nuget server , i ran into a couple small problems when tr...

    This report updates in 05-Aug-2018

Created Date:1999-10-05
Changed Date:2016-09-20

Technical data of the distribucon.com


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host distribucon.com. Currently, hosted in United States and its service provider is Microsoft Corp .

Latitude: 38.722778320312
Longitude: -77.536109924316
Country: United States (US)
City: Bristow
Region: Virginia
ISP: Microsoft Corp

the related websites

HTTP Header Analysis


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

Content-Length:19112
X-Compressed-By:HttpCompress
Content-Encoding:gzip
Set-Cookie:ASP.NET_SessionId=sewnpw45zpgohijjjujcvwi2; path=/; HttpOnly, ARRAffinity=c696fe9dc1f66c3b42c31c7e297af19671edc6e6bde7bfd531a840f467b13229;Path=/;HttpOnly;Domain=www.distribucon.com
X-AspNet-Version:2.0.50727
Vary:Accept-Encoding
X-Powered-By:ASP.NET
Server:Microsoft-IIS/10.0
Last-Modified:Sat, 28 Jul 2018 07:08:15 GMT
ETag:636683584950000000
Cache-Control:public
Date:Sat, 04 Aug 2018 19:33:23 GMT
Content-Type:text/html; charset=utf-8

DNS

soa:ns1.hover.com. dnsmaster.hover.com. 1294797323 10800 3600 604800 900
ns:ns2.hover.com.
ns1.hover.com.
ipv4:IP:137.117.84.54
ASN:8075
OWNER:MICROSOFT-CORP-MSN-AS-BLOCK - Microsoft Corporation, US
Country:US

HtmlToText

thoughts from dan miser sunday, 01 december 2013 nuget.server in an azure website application trying to follow the directions to host your own nuget server , i ran into a couple small problems when trying to deploy it to a virtual application within an azure website. i was able to successfully deploy this inside the virtual application using my previously posted directions . but i still found these issues: 1. the url was actually requiring a second nuget appended to the end (i.e. http://www.mydomain.com/nuget/nuget/). 2. when accessing the required url above, i received this error: this collection already contains an address with scheme http. there can be at most one address per scheme in this collection. if your service is being hosted in iis you can fix the problem by setting 'system.servicemodel/servicehostingenvironment/multiplesitebindingsenabled' to true or specifying 'system.servicemodel/servicehostingenvironment/baseaddressprefixfilters'. the solution was to update the web.config to add this attribute to the element that was already there. <servicehostingenvironment multiplesitebindingsenabled="true" aspnetcompatibilityenabled="true"/> sunday, 01 december 2013 21:51:33 (gmt standard time, utc+00:00) comments [0] - .net | asp.net saturday, 23 november 2013 azure web sites and virtual applications azure has been churning out features faster than anything i can ever remember coming out of microsoft. i finally moved to azure with my production apps this weekend. it was a pretty painless move, as far as data center moves go. one of the biggest road blocks that i hit was trying to create virtual applications for each of my apps inside one azure web site. i wanted to go this way to get the benefits of having one dns entry, coupled with an ssl certificate, and eventually wildcard subdomains. it seemed the smart way to go, given that each app is isolated and i've been running that way on my own iis server for a couple years (or more) now. the key to getting things right is to select your azure web site in the portal, and go to configure. then, at the bottom of the page you can add your virtual applications. the placeholder text says "physical path relative to site root". don't listen to that. instead, make your virtual applications live underneath site\wwwroot. if you do that, you can then download the publish profile settings from your dashboard and update the <deployiisapppath> element to look like this: <deployiisapppath>mysite/app1</deployiisapppath> now when you deploy, the files will land on the server in the right directory. i couldn't find a way to get the deploy to put the files in the site\app1 directory on the server. deployiisapppath and remotesitephysicalpath could not get me up to that level in this setup. if you know of a better way, i'd love to hear about it! bonus: if you're a command line junkie like me, you'll want to read how to publish an azure site from the command line . saturday, 23 november 2013 23:40:46 (gmt standard time, utc+00:00) comments [1] - .net | asp.net | asp.net mvc thursday, 09 may 2013 vmware fusion networking choosing unidentified network using vmware fusion 5 to run windows 8 pro 64-bit in a bootcamp partition from the mac has been amazing. one bit of trouble recently popped up for me, though, when we moved offices to a new location. my vmware networking uses bridged mode, and everything works perfectly at home. but at the office, i was getting nothing but the warning that i had no internet. i called vmware support, and they did a laudable job in getting back to me over the phone and trying to help, but in the end, the recommended solution was either to run under bridged mode with the firewall disabled, or use nat. i figured out after the call that the reason disabling the firewall made things work is that it would then not use the option to block connections. so my search started to figure out how to change the network type from public to private. the final answer was rather simple. launch explorer, select network on the left, and then click the yellow bar that says to enable sharing. doing that marked the network as private. i seem to recall being offered the choice to turn sharing on or not the first time i hit it at the new location, so i probably said don't share, which resulted in the network being marked as public, which meant the firewall rules pertaining to public were applied, and why i couldn't access anything. thursday, 09 may 2013 19:11:26 (gmt daylight time, utc+01:00) comments [0] - macintosh thursday, 02 may 2013 hockeyapp with xamarin studio, the solution here are my final notes on getting hockeyapp to integrate nicely with monotouch: use the monotouch bindings from github . i cleaned up the sample to demonstrate what happens when an exception is thrown, and also added the debuglogenabled property binding in case things aren't working. also be sure to go through the readme in the github project to add the enablecrashreporting() method. place a copy of the hockeysdkresources.bundle in the root of your project directory (a bundle is really a directory of files). select the display all files option from the solution (not the project). if adding a reference to the precompiled hockeyapp.dll, and if you get build errors when compiling to device (error mt5202: native linking failed. please review the build log), add the following to your additional mtouch arguments: -gcc_flags "-framework coregraphics -framework coretext -framework quartzcore" be sure to do a rebuild all, as the uuid of the dsym doesn't update unless you do this, which will cause problems symbolicating the crash log. make certain that your info.plist has a "bundle versions string (short)" (cfbundleshortversionstring) entry. hockeyapp deals with unhandled exceptions. so if you had put a try/catch around your main.cs, that exception will not be unhandled and will not get processed by hockeyapp. ask me how i know... :( thursday, 02 may 2013 19:47:10 (gmt daylight time, utc+01:00) comments [0] - saturday, 27 april 2013 hockeyapp with xamarin studio i was using testflight for my existing xamarin monotouch project, but it didn't really do what i wanted. i wanted something that would centralize crash reporting for me when something went wrong with my app after it was downloaded from the app store. testflight never really worked for that (at least for me). it allowed me to send beta versions of my app, which was cool, but i wanted a bit more. i downloaded the binary version of hockeyapp and also set up an account and an app on hockeyapp.net . i got it working by: add the reference to the pre-compiled hockeyapp.dll place the bundle in the root of my project directory (a bundle is really a directory of files). the instructions on that site no longer work to just include in project, so i did an "add files from folder" option i was sure to add the code to make things crash proof i was getting a build error when compiling to device (error mt5202: native linking failed. please review the build log. which was really due to undefined symbols for architecture armv7: "_ctfontcreatecopywithattributes"). i fixed that by adding the following into my additional mtouch arguments: -gcc_flags "-framework coregraphics -framework coretext -framework quartzcore" after all of that, i was able to get things compiled. i then followed the deployment suggestions from the readme.md page on the github project. i was able to upload the dsym.zip and ipa files, and get the email invite and tried to download the app. i initially received an "unable to install the app at this time" error message. that led me to believe the device wasn't imported, so i tried to import using the hockey app bookmarklet. it brought me a list of existing udids back to the hockey app site, but the import did not save those devices. i need to drill down on this some more to get a solid list of steps needed to release both beta and app store versions. i'd also like to be a

URL analysis for distribucon.com


http://www.distribucon.com/syndicationservice.asmx/getrsscategory?categoryname=.net
http://www.distribucon.com/ct.ashx?id=3ce15e51-7e4d-4524-88df-4964e602faf2&url=http%3a%2f%2fstore.mcetech.com%2fmerchant2%2fmerchant.mvc%3fscreen%3dctgy%26category_code%3dstorhdoptibay
http://www.distribucon.com/ct.ashx?id=afc2856e-3644-4055-8830-89e80d2ec3f7&url=http%3a%2f%2fwww.hockeyapp.net
http://www.distribucon.com/categoryview,category,datasnap.aspx
http://www.distribucon.com/default,date,2013-05-02.aspx
http://www.distribucon.com/2013/12/01/nugetserverinanazurewebsiteapplication.aspx
http://www.distribucon.com/categoryview,category,compactframework.aspx
http://www.distribucon.com/commentview,guid,afc2856e-3644-4055-8830-89e80d2ec3f7.aspx#commentstart
http://www.distribucon.com/default,date,2013-11-23.aspx
http://www.distribucon.com/ct.ashx?id=6270ff06-aca1-4828-a4a8-5237411f5455&url=http%3a%2f%2fwww.kendoui.com%2fforums%2fmvc%2fgeneral-discussions%2fvs2012-rtm-mvc4-kendo-bundle-not-rendering.aspx
http://www.distribucon.com/syndicationservice.asmx/getrsscategory?categoryname=linq
http://www.distribucon.com/categoryview,category,dasblog.aspx
http://www.distribucon.com/ct.ashx?id=6270ff06-aca1-4828-a4a8-5237411f5455&url=http%3a%2f%2fstackoverflow.com%2fusers%2f1459890%2fhao-kung
http://www.distribucon.com/default,date,2013-04-27.aspx
http://www.distribucon.com/ct.ashx?id=83d708e4-766b-4604-9805-118a72cb575b&url=http%3a%2f%2fhaacked.com%2farchive%2f2011%2f03%2f31%2fhosting-simple-nuget-package-feed.aspx

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: DISTRIBUCON.COM
Registry Domain ID: 11001910_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.tucows.com
Registrar URL: http://www.tucowsdomains.com
Updated Date: 2016-09-20T12:51:29Z
Creation Date: 1999-10-05T17:24:17Z
Registry Expiry Date: 2018-10-05T17:24:17Z
Registrar: Tucows Domains Inc.
Registrar IANA ID: 69
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: ok https://icann.org/epp#ok
Name Server: NS1.HOVER.COM
Name Server: NS2.HOVER.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2017-12-18T02:27:27Z <<<

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 Tucows Domains Inc.

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =distribucon.com

  PORT 43

  TYPE domain

DOMAIN

  NAME distribucon.com

  CHANGED 2016-09-20

  CREATED 1999-10-05

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

NSERVER

  NS1.HOVER.COM 216.40.47.26

  NS2.HOVER.COM 64.98.148.13

  REGISTERED yes

Go to top

Mistakes


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

  • www.udistribucon.com
  • www.7distribucon.com
  • www.hdistribucon.com
  • www.kdistribucon.com
  • www.jdistribucon.com
  • www.idistribucon.com
  • www.8distribucon.com
  • www.ydistribucon.com
  • www.distribuconebc.com
  • www.distribuconebc.com
  • www.distribucon3bc.com
  • www.distribuconwbc.com
  • www.distribuconsbc.com
  • www.distribucon#bc.com
  • www.distribucondbc.com
  • www.distribuconfbc.com
  • www.distribucon&bc.com
  • www.distribuconrbc.com
  • www.urlw4ebc.com
  • www.distribucon4bc.com
  • www.distribuconc.com
  • www.distribuconbc.com
  • www.distribuconvc.com
  • www.distribuconvbc.com
  • www.distribuconvc.com
  • www.distribucon c.com
  • www.distribucon bc.com
  • www.distribucon c.com
  • www.distribucongc.com
  • www.distribucongbc.com
  • www.distribucongc.com
  • www.distribuconjc.com
  • www.distribuconjbc.com
  • www.distribuconjc.com
  • www.distribuconnc.com
  • www.distribuconnbc.com
  • www.distribuconnc.com
  • www.distribuconhc.com
  • www.distribuconhbc.com
  • www.distribuconhc.com
  • www.distribucon.com
  • www.distribuconc.com
  • www.distribuconx.com
  • www.distribuconxc.com
  • www.distribuconx.com
  • www.distribuconf.com
  • www.distribuconfc.com
  • www.distribuconf.com
  • www.distribuconv.com
  • www.distribuconvc.com
  • www.distribuconv.com
  • www.distribucond.com
  • www.distribucondc.com
  • www.distribucond.com
  • www.distribuconcb.com
  • www.distribuconcom
  • www.distribucon..com
  • www.distribucon/com
  • www.distribucon/.com
  • www.distribucon./com
  • www.distribuconncom
  • www.distribuconn.com
  • www.distribucon.ncom
  • www.distribucon;com
  • www.distribucon;.com
  • www.distribucon.;com
  • www.distribuconlcom
  • www.distribuconl.com
  • www.distribucon.lcom
  • www.distribucon com
  • www.distribucon .com
  • www.distribucon. com
  • www.distribucon,com
  • www.distribucon,.com
  • www.distribucon.,com
  • www.distribuconmcom
  • www.distribuconm.com
  • www.distribucon.mcom
  • www.distribucon.ccom
  • www.distribucon.om
  • www.distribucon.ccom
  • www.distribucon.xom
  • www.distribucon.xcom
  • www.distribucon.cxom
  • www.distribucon.fom
  • www.distribucon.fcom
  • www.distribucon.cfom
  • www.distribucon.vom
  • www.distribucon.vcom
  • www.distribucon.cvom
  • www.distribucon.dom
  • www.distribucon.dcom
  • www.distribucon.cdom
  • www.distribuconc.om
  • www.distribucon.cm
  • www.distribucon.coom
  • www.distribucon.cpm
  • www.distribucon.cpom
  • www.distribucon.copm
  • www.distribucon.cim
  • www.distribucon.ciom
  • www.distribucon.coim
  • www.distribucon.ckm
  • www.distribucon.ckom
  • www.distribucon.cokm
  • www.distribucon.clm
  • www.distribucon.clom
  • www.distribucon.colm
  • www.distribucon.c0m
  • www.distribucon.c0om
  • www.distribucon.co0m
  • www.distribucon.c:m
  • www.distribucon.c:om
  • www.distribucon.co:m
  • www.distribucon.c9m
  • www.distribucon.c9om
  • www.distribucon.co9m
  • www.distribucon.ocm
  • www.distribucon.co
  • distribucon.comm
  • www.distribucon.con
  • www.distribucon.conm
  • distribucon.comn
  • www.distribucon.col
  • www.distribucon.colm
  • distribucon.coml
  • www.distribucon.co
  • www.distribucon.co m
  • distribucon.com
  • www.distribucon.cok
  • www.distribucon.cokm
  • distribucon.comk
  • www.distribucon.co,
  • www.distribucon.co,m
  • distribucon.com,
  • www.distribucon.coj
  • www.distribucon.cojm
  • distribucon.comj
  • www.distribucon.cmo
Show All Mistakes Hide All Mistakes