You can use \hspace*{\dimexpr\linewidth-\textwidth\relax} to move the following text all the way to the left side margin:
\documentclass{article}
\usepackage{xcolor}
\begin{document}
\noindent\raisebox{0pt}[0pt][0pt]{\color{red}\rule[-2in]{0.4pt}{2in}}
\begin{itemize}
\item Random stuff. blah blah blah. More random stuff.
\item Random stuff. blah blah blah. More random stuff.
\begin{itemize}
\item Random stuff. blah blah blah. More random stuff.
\item Random stuff. blah blah blah. More random stuff.
\begin{itemize}
\item Random stuff. blah blah blah. More random stuff.
\item Random stuff. blah blah blah. More random stuff.
\hspace*{\dimexpr\linewidth-\textwidth\relax}\fbox{\color{blue}Nonindented material}
\item Random stuff. blah blah blah. More random stuff.
\end{itemize}
\item Random stuff. blah blah blah. More random stuff.
\end{itemize}
\item Random stuff. blah blah blah. More random stuff.
\item Random stuff. blah blah blah. More random stuff.
\end{itemize}
\end{document}

The vertical red line shows you where the left margin is.
If you've got more text to insert, you can put it in a minipage whose width is set to \textwidth.
\documentclass{article}
\usepackage{xcolor}
\usepackage{lipsum}
\pagestyle{empty}
\begin{document}
\noindent\raisebox{0pt}[0pt][0pt]{\color{red}\rule[-2in]{0.4pt}{2in}}
\begin{itemize}
\item Random stuff. blah blah blah. More random stuff.
\item Random stuff. blah blah blah. More random stuff.
\begin{itemize}
\item Random stuff. blah blah blah. More random stuff.
\item Random stuff. blah blah blah. More random stuff.
\begin{itemize}
\item Random stuff. blah blah blah. More random stuff.
\item Random stuff. blah blah blah. More random stuff.
\hspace*{\dimexpr\linewidth-\textwidth\relax}%
\begin{minipage}[t]{\textwidth}%
\lipsum[1]
\end{minipage}
\item Random stuff. blah blah blah. More random stuff.
\end{itemize}
\item Random stuff. blah blah blah. More random stuff.
\end{itemize}
\item Random stuff. blah blah blah. More random stuff.
\item Random stuff. blah blah blah. More random stuff.
\end{itemize}
\end{document}
