Services_Trackback
[ class tree: Services_Trackback ] [ index: Services_Trackback ] [ all elements ]

Source for file trackback_data.php

Documentation is available at trackback_data.php

  1. <?php
  2.  
  3. // No spam
  4. $trackbackData['nospam'= array(
  5.     'id'        => 1,
  6.     'host'        => '217.160.181.63',
  7.     'title'     => 'Proposals as wide as you can see...',
  8.     'excerpt'   => 'After a pretty bunge of work last night (written RFCs, created surveys, fixed developement environment,...) this morning I posted an RFC and a proposol on<a href="http://marc.theaimsgroup.com/?l=pear-dev"> pear-dev</a>',
  9.     'url'       => 'http://www.schlitt.info/applications/blog/archives/33_Proposals_as_wide_as_you_can_see.html',
  10.     'blog_name' => 'Proposals as wide as you can see...',
  11.     'trackback_url' => 'http://www.example.com/',
  12. );
  13.  
  14. // Spam - undetected
  15. $trackbackData['undetected'= array(
  16.     'id'        => 1,
  17.     'host'        => '217.160.181.63',
  18.     'title'     => 'Test',
  19.     'excerpt'   => 'Test',
  20.     'url'       => 'http://www.schlitt.info/',
  21.     'blog_name' => 'Tobias Schlitt, Weblog',
  22.     'trackback_url' => 'http://www.schlitt.info/',
  23. );
  24.  
  25. // Spam - detectable by host (DNSBL), title (Wordlist), excerpt (Wordlist, SURBL), url (SURBL), blog_name (Wordlist)
  26. $trackbackData['all'= array(
  27.     'id'        => 1,
  28.     'host'      => '127.0.0.2',
  29.     'title'     => 'xanax',
  30.     'excerpt'   => 'You can also check the porn sites about <A HREF="http://www.e-poker-777.com/free-online-poker.html">free online diet</A>',
  31.     'url'       => 'http://www.e-poker-777.com/funny-crap-to-download.html',
  32.     'blog_name' => 'viagra-test-123',
  33.     'trackback_url' => 'http://www.example.com/',
  34. );
  35.  
  36.  
  37. // Spam - detectable by host (DNSBL)
  38. $trackbackData['host'= array(
  39.     'id'        => 1,
  40.     'host'      => '127.0.0.2',
  41.     'title'     => 'texas holdem',
  42.     'excerpt'   => 'You may find it interesting to visit the sites about <A HREF="http://www.ua-princeton.com/">texas holdem</A>',
  43.     'url'       => 'http://www.ua-princeton.com/',
  44.     'blog_name' => 'texas holdem',
  45.     'trackback_url' => 'http://www.example.com/',
  46. );
  47.  
  48. // Spam - detectable by title (Wordlist)
  49. $trackbackData['title'= array(
  50.     'id'        => 1,
  51.     'host'      => '210.240.77.8',
  52.     'title'     => 'Sex porn anal oral',
  53.     'excerpt'   => 'You may find it interesting to visit the sites about <A HREF="http://www.ua-princeton.com/">texas holdem</A>',
  54.     'url'       => 'http://www.ua-princeton.com/',
  55.     'blog_name' => 'texas holdem',
  56.     'trackback_url' => 'http://www.example.com/',
  57. );
  58.  
  59. // Spam - detectable by excerpt (Wordlist, SURBL)
  60. $trackbackData['excerpt'= array(
  61.     'id'        => 1,
  62.     'host'        => '210.240.77.8',
  63.     'title'     => 'texas holdem',
  64.     'excerpt'   => 'You can also check the sites about <A HREF="http://www.e-poker-777.com/free-online-poker.html">free online poker</A> <A HREF="http://www.juris-net.com/video-poker.html">video poker</A>',
  65.     'url'       => 'http://www.ua-princeton.com/',
  66.     'blog_name' => 'texas holdem',
  67.     'trackback_url' => 'http://www.example.com/',
  68. );
  69.  
  70. // Spam - detectable url (SURBL)
  71. $trackbackData['url'= array(
  72.     'id'        => 1,
  73.     'host'        => '210.240.77.8',
  74.     'title'     => 'texas holdem',
  75.     'excerpt'   => 'You may find it interesting to visit the sites about <A HREF="http://www.ua-princeton.com/">texas holdem</A>',
  76.     'url'       => 'http://www.e-poker-777.com/funny-crap-to-download.html',
  77.     'blog_name' => 'texas holdem',
  78.     'trackback_url' => 'http://www.example.com/',
  79. );
  80.  
  81. // Spam - detectable blog_name (Wordlist)
  82. $trackbackData['blog_name'= array(
  83.     'id'        => 1,
  84.     'host'        => '210.240.77.8',
  85.     'title'     => 'texas holdem',
  86.     'excerpt'   => 'You may find it interesting to visit the sites about <A HREF="http://www.ua-princeton.com/">texas holdem</A>',
  87.     'url'       => 'http://www.ua-princeton.com/',
  88.     'blog_name' => 'Porn sex poker',
  89.     'trackback_url' => 'http://www.example.com/',
  90. );
  91.  
  92. // Spam - detectable by excerpt through Wordlist and Regex
  93. $trackbackData['decode'= array(
  94.     'id'        => 1,
  95.     'host'      => '127.0.0.2',
  96.     'title'     => 'xanax',
  97.     'excerpt'   => 'You can also check the p&#x6F;rn sites about <A HREF="http://www.e-p&#x6F;ker-777.com/free-&#x6F;nline-p&#x6F;ker.html">free online diet</A>',
  98.     'url'       => 'http://www.e-p&#x6F;ker-777.com/funny-crap-t&#x6F;-d&#x6F;wnload.html',
  99.     'blog_name' => 'viagra-test-123',
  100.     'trackback_url' => 'http://www.example.com/',
  101. );
  102.  
  103. ?>

Documentation generated on Mon, 11 Mar 2019 15:25:48 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.