I'm having problems creating in black out text using the censored package I just want to be able to effectively black out some words from the PDF created by laTex.

The "blackout" text is the same colour as the blue text. - That's fine.
Firstly, as you can see on the second line, the height of the "blackout" rectangle is considerably shorter than it should be, considering it's mean to mask the same text as the line above.
Secondly, phone numbers & an email address aren't getting blocked out. Not sure why. I thought it might be due to spaces (in the case of the phone number) but as you can see from the laTex I've covered both cases.
% document class
\documentclass[a4paper,11pt,final]{memoir}
%set pdf to print transparency properly
\pdfminorversion 7
% stuff
\pagestyle{empty} % no page numbering
\setlength{\parindent}{0pt} % no paragraph indentation
% required packages (add your own)
\usepackage{flowfram} % column layout
\usepackage[top=1cm,left=1cm,right=1cm,bottom=1cm]{geometry}% margins
\usepackage{graphicx} % figures
\usepackage{hyperref} % hyper links
\usepackage[svgnames]{xcolor} % Call colours by their svgnames
\usepackage[UKenglish]{babel} % English language/hyphenation
\usepackage[none]{hyphenat} % no hyphenation
\usepackage{censor} % blackout text
% Create column layout
% define length commands
\setlength{\vcolumnsep}{\baselineskip}
\setlength{\columnsep}{\vcolumnsep}
% define custom colours
\definecolor{OceanBlue}{RGB}{37,133,208}
\definecolor{BlueGrey}{RGB}{91,126,153}
% get rid of ugle hyperref boxes
\hypersetup{
colorlinks = true, %Colours links instead of ugly boxes
urlcolor = black, %Colour for external hyperlinks
linkcolor = black, %Colour of internal links
citecolor = red %Colour of citations
}
% define macros for spacer
\newcommand{\SmallSep}{\vspace{0.5em}}
\newcommand{\BigSep}{\vspace{1em}}
% KEYWORD IDENTIFIERS:
\def\Missile{\censor*{7}}
\def\Size{\censor*{2}}
\def\`password'{\censor*{7}}
\def\someone@something{\censor*{7}}
\def\01234567890{\censor*{7}}
\def\01234 567 890{\censor*{7}}
\begin{document}
\fontsize{26}{26}
\color{OceanBlue}
\usefont{OT1}{phv}{b}{n}
\begin{center}
the Missile silo\\
the {\Missile} silo\\
\fontsize{11}{13}
\usefont{OT1}{phv}{m}{n}
\usefont{OT1}{phv}{b}{n}%bold
Telephone:
\usefont{OT1}{phv}{m}{n}%normal
01234 567 890\\
\usefont{OT1}{phv}{b}{n}%bold
Telephone:
\usefont{OT1}{phv}{m}{n}%normal
01234567890\\
\usefont{OT1}{phv}{b}{n}%bold
E-Mail:
\usefont{OT1}{phv}{m}{n}%normal
\href{mailto:mailto:someone@something.biz}{someone@something.biz}\\
\SmallSep
\href{https://vimeo.com}{https://vimeo.com}
\color{BlueGrey}
password: {\`password'}\\
\color{Black}
%end centre alignment
\end{center}
\end{document}

%comment an option? – Sean Allred Jul 03 '15 at 20:01comment? (I've never used it.) But, in any case, how exactly are we supposed to guess what the problem is with this little information? Other than urging you to define at least one flow frame prior to input line 64, I am not sure what we could possibly say. – cfr Jul 03 '15 at 22:02