Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netcoreapp2.0</TargetFramework>

<IsPackable>false</IsPackable>
<ReleaseVersion>0.1.8</ReleaseVersion>
<ReleaseVersion>0.1.9</ReleaseVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion NetCrawlerDetect/NetCrawlerDetect.Tests/UnitTest1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public void ReturnCorrectlyMatchedBotName()
{
var result = _detector.IsCrawler("Mozilla/5.0 (iPhone; CPU iPhone OS 7_1 like Mac OS X) AppleWebKit (KHTML, like Gecko) Mobile (compatible; Yahoo Ad monitoring; https://help.yahoo.com/kb/yahoo-ad-monitoring-SLN24857.html)");
Assert.True(result, "Yahoo Ad monitoring IS a bot!");
Assert.Equal("Yahoo Ad monitoring", _detector.Matches[0].Value);
Assert.Equal("monitoring", _detector.Matches[0].Value);
}


Expand Down
6 changes: 5 additions & 1 deletion NetCrawlerDetect/NetCrawlerDetect.Tests/crawlers.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3406,4 +3406,8 @@ Canary%20Mail/397 CFNetwork/893.13.1 Darwin/17.4.0 (x86_64)
Sendsay.Ru/1.0; https://Sendsay.Ru/; ask@sendsay.ru
Mozilla/5.0 (Zoom.Mac 10.8.5 x86)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.77 Safari/537.36 TryJsoup/1.0 (+http://try.jsoup.org/)
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0 ; BacklinkHttpStatus)
Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0 ; BacklinkHttpStatus)
SilverReader/1.0; http://silverreader.com
ExtractorPro
WebsiteExtractor
Mozilla/5.0 (Windows NT 5.1) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/14.0.835.202 Safari/535.1 google_partner_monitoring FWSzVTDDBz14547302713138T
2 changes: 1 addition & 1 deletion NetCrawlerDetect/NetCrawlerDetect.sln
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Global
EndGlobalSection
GlobalSection(MonoDevelopProperties) = preSolution
description = A .net standard port of JayBizzle's CrawlerDetect project (https://github.com/JayBizzle/Crawler-Detect).
version = 0.1.8
version = 0.1.9
Policies = $0
$0.VersionControlPolicy = $1
EndGlobalSection
Expand Down
Loading