pissedoffadmins.com Report : Visit Site


  • Ranking Alexa Global: # 2,235,907

    Server:Apache...
    X-Powered-By:W3 Total Cache/0.9.6

    The main IP address: 208.113.186.91,Your server United States,Brea ISP:New Dream Network LLC  TLD:com CountryCode:US

    The description :bringing you a cold cup of coffee…. home about archives twitter -- rss feed 2018 08.13 ssh tunneling with .{bash,zsh}rc functions category: general , linux , misc , os , script / tags: no tag / add co...

    This report updates in 01-Sep-2018

Created Date:2004-12-09
Changed Date:2018-11-07

Technical data of the pissedoffadmins.com


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

Latitude: 33.930221557617
Longitude: -117.88842010498
Country: United States (US)
City: Brea
Region: California
ISP: New Dream Network LLC

HTTP Header Analysis


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

X-Powered-By:W3 Total Cache/0.9.6
Transfer-Encoding:chunked
Expires:Sat, 01 Sep 2018 01:28:39 GMT
Vary:Accept-Encoding,Cookie
Keep-Alive:timeout=2, max=100
Server:Apache
Connection:Keep-Alive
Link:; rel="https://api.w.org/"
Cache-Control:max-age=3, must-revalidate
Date:Sat, 01 Sep 2018 00:28:39 GMT
Content-Type:text/html; charset=UTF-8
Content-Encoding:gzip

DNS

soa:ns1.dreamhost.com. hostmaster.dreamhost.com. 2018021001 19530 1800 1814400 14400
ns:ns2.dreamhost.com.
ns3.dreamhost.com.
ns1.dreamhost.com.
mx:MX preference = 30, mail exchanger = ASPMX3.GOOGLEMAIL.com.
MX preference = 10, mail exchanger = ASPMX.L.GOOGLE.com.
MX preference = 20, mail exchanger = ALT2.ASPMX.L.GOOGLE.com.
MX preference = 30, mail exchanger = ASPMX2.GOOGLEMAIL.com.
MX preference = 20, mail exchanger = ALT1.ASPMX.L.GOOGLE.com.
MX preference = 30, mail exchanger = ASPMX4.GOOGLEMAIL.com.
MX preference = 30, mail exchanger = ASPMX5.GOOGLEMAIL.com.
ipv4:IP:208.113.186.91
ASN:26347
OWNER:DREAMHOST-AS - New Dream Network, LLC, US
Country:US
ipv6:2607:f298:5:103b::509:dbb1//26347//DREAMHOST-AS - New Dream Network, LLC, US//US

HtmlToText

bringing you a cold cup of coffee…. home about archives twitter -- rss feed 2018 08.13 ssh tunneling with .{bash,zsh}rc functions category: general , linux , misc , os , script / tags: no tag / add comment so lately i have needed to setup some detailed entries into my ssh config file but i needed to ssh in and keep a term open for them to work. instead, i added these functions that when your ssh config is properly setup will auto create these tunnels for you: start_tunnel: function start_tunnel() { if [ -z $1 ] ; then echo "need hostname" ; else ssh -f -n -m -s /tmp/file-${1} ${1} ; fi } stop_tunnel: function stop_tunnel() { if [ -z $1 ] ; then echo "need hostname" ; else ssh -s /tmp/file-${1} -o exit ${1} ; fi } the only thing that needs to be properly set up for this to work is the ssh config file since those functions read the host section. 2018 03.29 ssh master just for the ports category: general , misc / tags: no tag / add comment hey all decided to write about something that i use way more often than i care about and have shown others on how to do. sample from my ssh config: host foo hostname address1 localforward 5432 address2:5432 localforward 7777 address3:8080 identityfile ~/.ssh/key.pem user poa now lets say i do not want to open an ssh shell but i do need those ports forwarded locally, then lets use some ssh master like such: ssh -f -n -m -s /tmp/file-sock foo this will forward the ports without needing to keep a terminal open. to exit this: ssh -s /tmp/file-sock -o exit foo and done. now lets say that you want to automate this into functions so that you can use this with multiple host names, then all you do is add these lines to either your .zshrc or .bashrc files: function tunnel() { if [ -z $1 ] ; then echo "need hostname" ; else ssh -f -n -m -s /tmp/file-${1} ${1} ; fi } function killtunnel() { if [ -z $1 ] ; then echo "need hostname" ; else ssh -s /tmp/file-${1} -o exit ${1} ; fi } so now when you run tunnel foo it will start it up and create an appropriately named sock file. to kill it you just run killtunnel foo voila. 2018 03.16 do recruiters dream of electric replies ? category: misc / tag: recruiters / add comment hey all, sorry for the hiatus. work and life has been taking time but i am back and will have more updates soon. today’s weirdness comes in the form of a recruiter that to my knowledge is trying to position himself as the master of multiple domins…. or they were just blasting a list of email addresses. here is a shot of the subject lines (names blacked out for reasons): click to enlarge both of these are from the same exact person, or at least the same automailer. here is the first email: click to enlarge and here is email number two: click to enlarge i feel that sometimes some recruiters are just trying to carpet bomb the landscape when their services are not needed. 2018 01.29 so my linux install is broken….. what to try first category: general , linux , os / tag: chroot / add comment hey all. have not written anything in a while and needed to write some stuff about chrooting back into a borked install. for this article, lets assume that you will be booting from a live distro of some sort and that you need to chroot in to test and fix. first, lets boot from the live disk. do not install. just boot. once booted, lets pull up a terminal and run “fdisk -l” to see what the disk path is to what we want to fix like so : % sudo fdisk -l disk /dev/sda: 113 gib, 121332826112 bytes, 236978176 sectors units: sectors of 1 * 512 = 512 bytes sector size (logical/physical): 512 bytes / 4096 bytes i/o size (minimum/optimal): 4096 bytes / 4096 bytes disklabel type: gpt disk identifier: c80cc162-275e-4e4a-9ef0 device start end sectors size type /dev/sda1 2048 1050623 1048576 512m efi system /dev/sda2 1050624 9242623 8192000 3.9g linux swap /dev/sda3 9242624 236976127 227733504 108.6g linux filesystem from this we can see that the path is “/dev/sdax” to our disk. so lets now create a mountpoint called linux: % sudo mkdir /mnt/linux and now, lets mount boot and the filesystem: % sudo mount /dev/sda3 /mnt/linux % sudo mount /dev/sda1 /mnt/linux/boot now we need to mount the proc, sys, and dev systems: % sudo mount -t proc none /mnt/linux/proc % sudo mount -o bind /sys /mnt/linux/sys % sudo mount -o bind /dev /mnt/linux/dev with everything mounted we can not chroot in like so: % sudo chroot /mnt/linux /bin/bash % source /etc/profile and voila… you can now access you machine. 2017 09.08 pi-hole category: arduino , general , hardware , linux , os , raspberry pi , screenshots / tag: pi-hole / add comment sup all just wanted to post a screenshot from my pi-hole setup . just discovered this a couple of days ago while looking for a temporary setup to block ads network wide. installed on an rpi 1 running raspbian click image to enlarge check out pi-hole for a cool tool for helping the eradication of ads. 2017 08.31 using android tablets as external monitors in linux category: general , linux , os , screenshots / tag: external monitors , tablet , xrandr / add comment edit 2017-09-07 : created a script here that will do this autmogaically for you. read on for full write up of how to do this. sup all just as the name implies this article is a howto on using android tablets as external monitors. at the time of writing, here are my specs / what was used / needed: done on a laptop running: linux (gentoo base system 2.4.1 64bit / linux 4.12.9) xrandr --version xrandr program version 1.5.0 server reports randr version 1.5 ---- tablet 1: -nexus 10 --android 6.0.1 (lineageos version 13.0-20170729-nightly-manta) --resolution 2560 x 1600 --bvnc free ---- tablet 2: -nexus 7 --android 7.1.2 (lineageos version 14.1-20170822-nightly-flo) --resolution 1920 x 1200 --bvnc free all this done over wifi so it is a little laggy but does get the job done. if you are planning on only using one tablet then you can stop after tablet 1 and just read the cleanup section to stop / cleanup. you can substitute tablets as long as you make sure that you get your resolutions proper. before we begin, here is a shot of both tablets working together: click image to enlarge tablet 1 first things first, here is my running xrandr before configuring (i will be posting a copy of xrandr after every step so it will be kind of long): % xrandr screen 0: minimum 8 x 8, current 2560 x 1600, maximum 32767 x 32767 edp1 connected primary 2560x1600+0+0 (normal left inverted right x axis y axis) 290mm x 180mm 2560x1600 59.97*+ 2048x1536 60.00 1920x1440 60.00 1856x1392 60.01 1792x1344 60.01 1920x1200 60.00 1600x1200 60.00 1680x1050 60.00 1400x1050 59.98 1280x1024 60.02 1400x900 60.00 1280x960 60.00 1280x800 60.00 1024x768 60.00 800x600 60.32 56.25 640x480 59.94 dp1 disconnected (normal left inverted right x axis y axis) dp2 disconnected (normal left inverted right x axis y axis) hdmi1 disconnected (normal left inverted right x axis y axis) hdmi2 disconnected (normal left inverted right x axis y axis) virtual1 disconnected (normal left inverted right x axis y axis) virtual2 disconnected (normal left inverted right x axis y axis) virtual3 disconnected (normal left inverted right x axis y axis) we will use virtual1 for tablet 1 and edp1 is my existing monitor. we need to use cvt which calculates vesa cvt mode lines for the resolution of tablet 1 which will go to the left of edp1 # 2560x1600 59.99 hz (cvt 4.10ma) hsync: 99.46 khz; pclk: 348.50 mhz modeline "2560x1600_60.00" 348.50 2560 2760 3032 3504 1600 1603 1609 1658 -hsync +vsync the part we will be using from this is : "2560x1600_60.00" 348.50 2560 2760 3032 3504 1600 1603 1609 1658 -hsync +vsync so lets create the new mode: xrandr --newmode "2560x1600_60.00" 348.50 2560 2760 3032 3504 1600 1603 1609 1658 -hsync +vsync xrandr should look similar to this now: % xrandr screen 0: minimum 8 x 8, current 2560 x 1600, maximum 32767 x 32767 edp1 connected primary 2560x1600+0+0 (normal left inverted right x axis y axis) 290mm x 180mm 2560x1600 59.97*+ 2

URL analysis for pissedoffadmins.com


http://pissedoffadmins.com/tag/vim-plugins
http://pissedoffadmins.com/tag/bash
http://pissedoffadmins.com/tag/multiboot
http://pissedoffadmins.com/tag/conky
http://pissedoffadmins.com/tag/ics
http://pissedoffadmins.com/general/ssh-master-just-for-the-ports.html#respond
http://pissedoffadmins.com/tag/evilwm
http://pissedoffadmins.com/archives
http://pissedoffadmins.com/tag/hotlink
http://pissedoffadmins.com/tag/ssh
http://pissedoffadmins.com/tag/ttysys
http://pissedoffadmins.com/wp-content/uploads/2016/07/2016-07-05-155746_1600x900_scrot.png
http://pissedoffadmins.com/tag/mutt
http://pissedoffadmins.com/category/os/solaris
http://pissedoffadmins.com/category/os

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: PISSEDOFFADMINS.COM
Registry Domain ID: 136979432_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.dreamhost.com
Registrar URL: http://www.DreamHost.com
Updated Date: 2018-11-07T08:27:17Z
Creation Date: 2004-12-09T03:15:23Z
Registry Expiry Date: 2019-12-09T03:15:23Z
Registrar: DreamHost, LLC
Registrar IANA ID: 431
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Name Server: NS1.DREAMHOST.COM
Name Server: NS2.DREAMHOST.COM
Name Server: NS3.DREAMHOST.COM
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2019-01-27T11:39:26Z <<<

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 DreamHost, LLC

SERVERS

  SERVER com.whois-servers.net

  ARGS domain =pissedoffadmins.com

  PORT 43

  TYPE domain

DOMAIN

  NAME pissedoffadmins.com

  CHANGED 2018-11-07

  CREATED 2004-12-09

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

NSERVER

  NS1.DREAMHOST.COM 64.90.62.230

  NS2.DREAMHOST.COM 208.97.182.10

  NS3.DREAMHOST.COM 66.33.205.230

  REGISTERED yes

Go to top

Mistakes


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

  • www.upissedoffadmins.com
  • www.7pissedoffadmins.com
  • www.hpissedoffadmins.com
  • www.kpissedoffadmins.com
  • www.jpissedoffadmins.com
  • www.ipissedoffadmins.com
  • www.8pissedoffadmins.com
  • www.ypissedoffadmins.com
  • www.pissedoffadminsebc.com
  • www.pissedoffadminsebc.com
  • www.pissedoffadmins3bc.com
  • www.pissedoffadminswbc.com
  • www.pissedoffadminssbc.com
  • www.pissedoffadmins#bc.com
  • www.pissedoffadminsdbc.com
  • www.pissedoffadminsfbc.com
  • www.pissedoffadmins&bc.com
  • www.pissedoffadminsrbc.com
  • www.urlw4ebc.com
  • www.pissedoffadmins4bc.com
  • www.pissedoffadminsc.com
  • www.pissedoffadminsbc.com
  • www.pissedoffadminsvc.com
  • www.pissedoffadminsvbc.com
  • www.pissedoffadminsvc.com
  • www.pissedoffadmins c.com
  • www.pissedoffadmins bc.com
  • www.pissedoffadmins c.com
  • www.pissedoffadminsgc.com
  • www.pissedoffadminsgbc.com
  • www.pissedoffadminsgc.com
  • www.pissedoffadminsjc.com
  • www.pissedoffadminsjbc.com
  • www.pissedoffadminsjc.com
  • www.pissedoffadminsnc.com
  • www.pissedoffadminsnbc.com
  • www.pissedoffadminsnc.com
  • www.pissedoffadminshc.com
  • www.pissedoffadminshbc.com
  • www.pissedoffadminshc.com
  • www.pissedoffadmins.com
  • www.pissedoffadminsc.com
  • www.pissedoffadminsx.com
  • www.pissedoffadminsxc.com
  • www.pissedoffadminsx.com
  • www.pissedoffadminsf.com
  • www.pissedoffadminsfc.com
  • www.pissedoffadminsf.com
  • www.pissedoffadminsv.com
  • www.pissedoffadminsvc.com
  • www.pissedoffadminsv.com
  • www.pissedoffadminsd.com
  • www.pissedoffadminsdc.com
  • www.pissedoffadminsd.com
  • www.pissedoffadminscb.com
  • www.pissedoffadminscom
  • www.pissedoffadmins..com
  • www.pissedoffadmins/com
  • www.pissedoffadmins/.com
  • www.pissedoffadmins./com
  • www.pissedoffadminsncom
  • www.pissedoffadminsn.com
  • www.pissedoffadmins.ncom
  • www.pissedoffadmins;com
  • www.pissedoffadmins;.com
  • www.pissedoffadmins.;com
  • www.pissedoffadminslcom
  • www.pissedoffadminsl.com
  • www.pissedoffadmins.lcom
  • www.pissedoffadmins com
  • www.pissedoffadmins .com
  • www.pissedoffadmins. com
  • www.pissedoffadmins,com
  • www.pissedoffadmins,.com
  • www.pissedoffadmins.,com
  • www.pissedoffadminsmcom
  • www.pissedoffadminsm.com
  • www.pissedoffadmins.mcom
  • www.pissedoffadmins.ccom
  • www.pissedoffadmins.om
  • www.pissedoffadmins.ccom
  • www.pissedoffadmins.xom
  • www.pissedoffadmins.xcom
  • www.pissedoffadmins.cxom
  • www.pissedoffadmins.fom
  • www.pissedoffadmins.fcom
  • www.pissedoffadmins.cfom
  • www.pissedoffadmins.vom
  • www.pissedoffadmins.vcom
  • www.pissedoffadmins.cvom
  • www.pissedoffadmins.dom
  • www.pissedoffadmins.dcom
  • www.pissedoffadmins.cdom
  • www.pissedoffadminsc.om
  • www.pissedoffadmins.cm
  • www.pissedoffadmins.coom
  • www.pissedoffadmins.cpm
  • www.pissedoffadmins.cpom
  • www.pissedoffadmins.copm
  • www.pissedoffadmins.cim
  • www.pissedoffadmins.ciom
  • www.pissedoffadmins.coim
  • www.pissedoffadmins.ckm
  • www.pissedoffadmins.ckom
  • www.pissedoffadmins.cokm
  • www.pissedoffadmins.clm
  • www.pissedoffadmins.clom
  • www.pissedoffadmins.colm
  • www.pissedoffadmins.c0m
  • www.pissedoffadmins.c0om
  • www.pissedoffadmins.co0m
  • www.pissedoffadmins.c:m
  • www.pissedoffadmins.c:om
  • www.pissedoffadmins.co:m
  • www.pissedoffadmins.c9m
  • www.pissedoffadmins.c9om
  • www.pissedoffadmins.co9m
  • www.pissedoffadmins.ocm
  • www.pissedoffadmins.co
  • pissedoffadmins.comm
  • www.pissedoffadmins.con
  • www.pissedoffadmins.conm
  • pissedoffadmins.comn
  • www.pissedoffadmins.col
  • www.pissedoffadmins.colm
  • pissedoffadmins.coml
  • www.pissedoffadmins.co
  • www.pissedoffadmins.co m
  • pissedoffadmins.com
  • www.pissedoffadmins.cok
  • www.pissedoffadmins.cokm
  • pissedoffadmins.comk
  • www.pissedoffadmins.co,
  • www.pissedoffadmins.co,m
  • pissedoffadmins.com,
  • www.pissedoffadmins.coj
  • www.pissedoffadmins.cojm
  • pissedoffadmins.comj
  • www.pissedoffadmins.cmo
Show All Mistakes Hide All Mistakes