Jump to content

NIM

Administrator
  • Posts

    4,115
  • Joined

  • Last visited

  • Days Won

    75

Reputation Activity

  1. Like
    NIM got a reaction from Mr.Cherajek in Find old computers in the stated OU   
    On error resume next

    Dim objADO
    Dim objContainer
    Dim objChild
    Dim User

    Wscript.Echo "The output will be written to C:\oldComputers.txt"
    set objADO = GetObject("LDAP://ou=workstations,ou=liverpool,dc=contoso,dc=local")
    set WshShell = WScript.CreateObject("WScript.Shell")
    Set fso = CreateObject("Scripting.FileSystemObject")
    fso.DeleteFile ("C:\oldComputers.txt")
    set txtStream = fso.OpenTextFile("C:\oldComputers.txt", 8, True)
    txtStream.WriteLine vbCrLf
    set objContainer = objADO

    For each objChild in objContainer
    user = MID(objChild.Name,4)
    If DateDiff ("d",objChild.LastLogin, Now) > 180 then txtStream.WriteLine user & " ---> " & DateDiff ("d",objChild.LastLogin, Now)_
    & " Days since last login." & vbCrLf
    Next

    msgbox "Done..."
    WshShell.run "C:\oldComputers.txt"
    PLEASE MAKE SURE NO WORD WRAPPING IS HAPPENING IN YOUR SCRIPT!!!
    To make this script work you will need one thing!
    You will need the OU in which your computer accounts are kept.
    Edit the string LDAP://
    (e.g., 'LDAP://OU=workstations,OU=boston,DC=contoso,DC=com')
    The script will be written to the root of the c:\ drive.
    *Make sure you are an administrator to run this.
  2. Like
    NIM got a reaction from Mahmoud Kandeel in Office 2007, Unattended Setup & Fine-tuning   
    Unattending or silently installing MS Office System, has now become easier than ever. There are two ways to unattend your setup:
    --> Option A (use it only if you got Office2007 thru SoftwareAssurance, which comes with activation stripped out).
    --> Option B is for all the others (retail/OEM/academic/trial/etc). Both are colored differently below.
    Option A:
    1. Ensure you have an actual enterprise/corporate disc & product-key.
    2. Notably, o2k7 uses setup patches (*.MSP) rather than transforms which previous versions used (*.MST). The below instructions will give you an MSP file, which is not accepted by non-corporate versions of o2k7. If you ignored point1 above, then you will end up wasting 15 minutes of your life which I'm not responsible for.
    3. Now at the command prompt, type: setup.exe /admin
    4. Choose the product for which you want to make a customization-patch.
    5. Then go through all steps in the customization wizard (to install the reqd apps & remove junk & change default settings).
    6. Be sure to have "completion notice" turned on & "suppress modals" turned off (this is to get to see errors, if any exist). Once you're done with testing, go thru the customization again to modify the MSP to disable completion notice & enable suppress modals.
    7. Save the resulting patch file in the same folder as o2k7 setup files.
    8. Now just execute this command (thru any method) for silent install: setup.exe /adminfile CUSTOM.MSP
    Or if you have the Office 2007 Enterprise VLK, you could even drop the CUSTOM.MSP file in the "Updates" folder & setup will pick it up automatically (without any switches being used). For this, ensure you have WindowsInstaller 3.1 already installed.
    *** For completely silent install, you MUST set the DisplayLevel to "none", either by MSP (accessible from step 6 above) or by xml, otherwise you'll get a confirmation dialog similar to the image shown in attachment below. (do this only AFTER testing, when you're sure it works)
    -----------------
    Option B:
    1. Go to the folder-path, "Office2007\Pro.WW" (or any ??????.WW folder for other editions such as standard/enterprise/etc)
    2. Modify "config.xml", or copy it to somewhere else & modify it, using my posted code below as a sample.
    3. If you modified it "in location", then setup will take up the changes automatically.
    4. Otherwise, place the modified file in the same folder of setup.exe, as custom-uA.XML
    5. This is the command to run setup with the customizations specified in custom-uA.XML: setup.exe /config custom-uA.XML
    7. This method is also a great way to make changes to the defaults itself, so that you dont need to keep changing it upon every new time you install it. The sample XML here, makes setup fully silent, cuts down features rarely used by me, and reduces install footprint of Office 2007 Professional from 721 MB, to 303 MB (of course you can always add/remove components later); I've also removed lines that I found useless from it, you might like to keep many of the default lines & customize them. Also, be aware that the XML offers a way to chain updates & install them before or after o2k7 setup, but then you'll lose control over reboot parameters. By default, o2k7 setup wont cause an auto-reboot, so no need of "/noreboot" or "Reboot=ReallySuppress" properties. I intend this XML to be used for clean installs, with no previous version settings or profiles to be migrated. Use "start /wait" for silent installs. This file is for the main suite, you can modify it accordingly for the other component products, the options are commented with double-slashes. I obtained the OptionIds from setup.xml files, in each component folder.
    Here's a tested/working config.xml file, to get you started with Option B:
    (you need to put in your own key, and configuration-Product can be obtained from your current xml)

    <Configuration Product="Pro">

    <Display Level="none" CompletionNotice="no" SuppressModal="yes" AcceptEula="yes" />

    <PIDKEY Value="BCDFGHJKMPQRTVWXY2346789B" />
    <USERNAME Value="0wner" />
    <COMPANYNAME Value="0wn Inc." />


    <OptionState Id="ACCESSFiles" State="absent" Children="force" /> //access
    <OptionState Id="OUTLOOKFiles" State="absent" Children="force" /> //outlook
    <OptionState Id="PubPrimary" State="absent" Children="force" /> //publisher
    <OptionState Id="AceRepl" State="absent" Children="force" /> //access db Engine replication
    <OptionState Id="CAGFiles" State="Local" Children="force" /> //Clip Organizer
    <OptionState Id="MSSOAP3" State="absent" Children="force" /> //SOAP toolkit
    <OptionState Id="OsaNonBoot" State="Local" Children="force" /> //new,open office docu lnks
    <OptionState Id="ProofingTools_1036" State="absent" Children="force" /> //french
    <OptionState Id="ProofingTools_3082" State="absent" Children="force" /> //spanish
    <OptionState Id="WISPFiles" State="absent" Children="force" /> //handwriting
    <OptionState Id="DocServicesFiles" State="absent" Children="force" /> //docu update util
    <OptionState Id="HTMLSourceEditing" State="absent" Children="force" /> //script editor
    <OptionState Id="DocumentImagingUtils" State="absent" Children="force" /> //scanning,ocr,indexing
    <OptionState Id="OISFiles" State="absent" Children="force" /> //picture manager
    <OptionState Id="OSESupp" State="absent" Children="force" /> //sharepoint support
    <OptionState Id="QueryFiles" State="absent" Children="force" /> //msQuery
    <OptionState Id="VisioPreviewerFiles" State="absent" Children="force" /> //visio viewer
    <OptionState Id="XDOCSFiles" State="absent" Children="force" /> //infopath

    <!-- These are additionals from Enterprise RTM
    <OptionState Id="GrooveFiles" State="absent" Children="force" /> //groove
    <OptionState Id="OneNoteFiles" State="absent" Children="force" /> //onenote
    <OptionState Id="RefIEBarFiles" State="absent" Children="force" /> //research explorer bar
    <OptionState Id="WebDriveFiles" State="absent" Children="force" /> //hosted webs
    <OptionState Id="VBAFiles" State="absent" Children="force" /> //VB for applications
    <OptionState Id="OfficeDigitalSFiles" State="absent" Children="force" /> //vba certificates
    -->

    </Configuration>
    The procedure is same for all other editions of Office 2007. The above is just a working sample, you'd need to put in an appropriate key & modify as per your needs.
    If you downloaded a single SETUP.EXE (500-MB?) from MSDN, then you might need to extract it to some folder, to get the installation source.

    setup.exe /extract:D:\o2k7
    Courtesy: prathapml from MSFN
  3. Like
    NIM got a reaction from bakallpi in OpenID login method removed!   
    Is it just me, or this site is really loading faster now?
  4. Like
    NIM got a reaction from Fewepoxy in OpenID login method removed!   
    OpenID login methond has been removed from WinCert.net for the reasons mentioned in post on robrohan.com web site:
    This blog has been having some serious uptime problems, but with our move and starting our new jobs, I haven't had time to look into the problem.
    At completely random times the server would just spin out of control as if it was under a denial of service attack. I figured it was just someone's home made, badly written spider, and it would just stop – but it kept happening.
    Finally, I got a chance to sit down and see what might be going on with the box, and it looks like someone – well, several people, actually a lot of people – were using the OpenID plugin on wordpress (and the openid module on drupal (I have both on this server)) to either proxy porn and gambling sites, or to increase hits on their porn and gambling sites.
    The apache error log was full – and I mean full – of things like this (where "…" is some porn or gambling site):

    [color=#555C62][font=arial, helvetica, arial, tahoma, sans-serif][size=2]21-Dec-2010 10:40:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:02:26] Got no response code when fetching [url="http://www.kiralikotolar.org/audi-q7-kiralama.html"]http://www.kiralikotolar.org/audi-q7-kiralama.html[/url]
    [21-Dec-2010 11:02:26] CURL error (6): Couldn't resolve host 'www.kiralikotolar.org'
    [21-Dec-2010 11:10:59] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:23:02] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 11:36:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:55:27] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [21-Dec-2010 12:08:47] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 12:23:03] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 12:42:04] Successfully fetched 'http://www.advantagewareny.com/celebrex-in-heart-rhythm/': GET response code 200
    [21-Dec-2010 12:43:02] Successfully fetched 'http://antiagingreviews.iibc.com/': GET response code 200
    [21-Dec-2010 13:03:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:04:07] Successfully fetched 'http://trig.com/ghjgweu/biography': GET response code 200
    [21-Dec-2010 13:23:13] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 13:42:36] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:45:30] Successfully fetched 'http://www.pozycjonowanie3.pl/': GET response code 200
    [21-Dec-2010 14:27:50] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:38:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:54:53] Successfully fetched 'http://pozycjonowanie-clpik.otobiznes.pl/': GET response code 200
    [21-Dec-2010 14:58:17] Successfully fetched 'http://www.myrosebags.com/': GET response code 503
    [21-Dec-2010 15:20:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 15:33:15] Successfully fetched 'http://goarticles.com/article/How-to-Get-Your-Ex-Back-Learn-From-My-Experiences-and-Avoid-the-Pain-That-I-Felt/2437656': GET response code 200
    [21-Dec-2010 15:47:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:26:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:29:13] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [21-Dec-2010 16:30:20] Successfully fetched 'http://www.truckers.chicagocleaningservices.us/cleaning-service-chicago.html': GET response code 406
    [21-Dec-2010 16:38:04] Successfully fetched 'http://www.braceletpandora.com/': GET response code 200
    [21-Dec-2010 16:52:26] Successfully fetched 'http://www.goingpublic.us/': GET response code 200
    [21-Dec-2010 16:53:27] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 17:44:12] Successfully fetched 'http://www.seomarketingservicesonline.com/': GET response code 200
    [21-Dec-2010 17:48:35] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 18:39:30] Successfully fetched 'http://www.avazo.com/': GET response code 200
    [21-Dec-2010 18:52:29] Successfully fetched 'http://www.webzanacka.ru/': GET response code 200
    [21-Dec-2010 18:53:46] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 19:56:57] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [21-Dec-2010 20:05:13] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 20:11:35] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [21-Dec-2010 20:26:04] Successfully fetched 'http://casino.ru/online/poker': GET response code 200
    [21-Dec-2010 21:27:48] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 21:55:06] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 22:28:45] Got no response code when fetching [url="http://www.problemsquealworld.nl/"]http://www.problemsquealworld.nl/[/url]
    [21-Dec-2010 22:28:45] CURL error (52): Empty reply from server
    [21-Dec-2010 22:30:12] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [21-Dec-2010 22:40:37] Successfully fetched 'http://iphones-4you.ru/': GET response code 200
    [21-Dec-2010 23:31:13] Successfully fetched 'http://seoplotki.pl/': GET response code 200
    [21-Dec-2010 23:33:01] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 00:11:14] Successfully fetched 'http://4etag.kiev.ua/zamer-okon.html': GET response code 200
    [22-Dec-2010 00:42:38] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [22-Dec-2010 01:14:47] Successfully fetched 'http://www.tophotonline.info/sitemap.html': GET response code 200
    [22-Dec-2010 01:25:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 01:54:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:05:22] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 02:10:30] Successfully fetched 'http://www.flyingloans.com/loan-with-bad-credit.htm': GET response code 200
    [22-Dec-2010 02:14:18] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:26:14] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 02:26:46] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 02:31:59] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 02:36:47] Successfully fetched 'http://www.arizonahomespecialists.com/': GET response code 200
    [22-Dec-2010 03:13:38] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 03:18:44] Successfully fetched 'http://oxparuerthe.edublogs.org/': GET response code 200
    [22-Dec-2010 03:38:39] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 03:44:25] Successfully fetched 'http://ukraineindependentescorts.com/': GET response code 200
    [22-Dec-2010 03:58:44] Successfully fetched 'http://www.padeelshare.com/': GET response code 200
    [22-Dec-2010 04:00:47] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 04:19:44] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 04:32:02] Successfully fetched 'http://www.trendandcoffee.pl/index.php': GET response code 200
    [22-Dec-2010 04:40:20] Successfully fetched 'http://www.uhrenreplica.com/': GET response code 200
    [22-Dec-2010 04:42:50] Successfully fetched 'http://study.one-it.tk/': GET response code 200
    [22-Dec-2010 05:10:58] Successfully fetched 'http://www.canon500d.net/': GET response code 200
    [22-Dec-2010 06:04:09] Successfully fetched 'http://www.pussinen.fi/forum/profile.php?mode=viewprofile&u=88251': GET response code 200
    [22-Dec-2010 06:17:41] Successfully fetched 'http://forexgurudroid.com/': GET response code 200
    [22-Dec-2010 06:19:56] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 06:34:40] Successfully fetched 'http://www.jewfro.org/phpBB-2.0.17/phpBB2/profile.php?mode=viewprofile&u=95487': GET response code 200
    [22-Dec-2010 06:51:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 07:03:09] Got no response code when fetching [url="http://www.totaldvd.net/"]http://www.totaldvd.net/[/url]
    [22-Dec-2010 07:03:09] CURL error (7): couldn't connect to host
    [22-Dec-2010 07:09:44] Successfully fetched 'http://fc-lokomotiv.kz/forum/index.php?action=profile;u=122523': GET response code 200
    [22-Dec-2010 07:40:50] Successfully fetched 'http://trendyheel.com/community/profile.php?id=54882': GET response code 200
    [22-Dec-2010 07:42:57] Successfully fetched 'http://www.legionpharma.com/': GET response code 200
    [22-Dec-2010 08:10:37] Successfully fetched 'http://www.marketmoms.com/forums/memberlist.php?mode=viewprofile&u=142992': GET response code 200
    [22-Dec-2010 08:22:24] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 08:42:00] Successfully fetched 'http://www.moroznik.ru/forum/member.php?u=120942': GET response code 200
    [22-Dec-2010 08:43:22] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 08:56:01] Successfully fetched 'http://f.janek.ru/': GET response code 200
    [22-Dec-2010 08:58:49] Successfully fetched 'http://photoline.org.ua/': GET response code 406
    [22-Dec-2010 09:13:08] Successfully fetched 'http://canewoodgc.com/forums/index.php?action=profile;u=135591': GET response code 200
    [22-Dec-2010 09:15:40] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 09:25:38] Successfully fetched 'http://www.buykamagra.biz/': GET response code 200
    [22-Dec-2010 09:35:12] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 09:42:23] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [22-Dec-2010 09:45:39] Successfully fetched 'http://artline-comics.com/forum/profile.php?mode=viewprofile&u=151052': GET response code 200
    [22-Dec-2010 09:57:54] Successfully fetched 'http://www.niesplaca.pl/': GET response code 200
    [22-Dec-2010 10:09:46] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 10:17:12] Successfully fetched 'http://www.santahamina.fi/foorumi/profile.php?mode=viewprofile&u=86428': GET response code 200
    [22-Dec-2010 10:41:26] Successfully fetched 'http://blackjackonlinebasics.com/': GET response code 200
    [22-Dec-2010 10:47:22] Successfully fetched 'http://www.virtus.01d.ru/forum/profile.php?mode=viewprofile&u=84562': GET response code 200
    [22-Dec-2010 10:52:52] Successfully fetched 'http://www.replicasswiss.com/': GET response code 200
    [22-Dec-2010 10:58:33] Successfully fetched 'http://www.buzzle.com/articles/how-to-play-video-poker-like-a-pro.html': GET response code 200
    [22-Dec-2010 11:11:26] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:16:18] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:20:00] Successfully fetched 'http://brimmer.kiev.ua/for//profile.php?mode=viewprofile&u=82365': GET response code 200
    [22-Dec-2010 11:22:13] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [22-Dec-2010 11:33:20] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 11:40:53] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:45:51] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 11:52:16] Successfully fetched 'http://gadgetstoget.com/Forum/index.php?action=profile;u=99392': GET response code 200
    [22-Dec-2010 12:22:39] Successfully fetched 'http://www.ecazorla.com/insomnio/foros/profile.php?mode=viewprofile&u=181259': GET response code 200
    [22-Dec-2010 12:47:24] Got no response code when fetching [url="http://www.libertytraffic.ru/billing/order.php?type=shop&group=1"]http://www.libertytraffic.ru/billing/order...hop&group=1[/url]
    [22-Dec-2010 12:47:24] CURL error (6): Couldn't resolve host 'www.libertytraffic.ru'
    [22-Dec-2010 12:49:33] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 12:49:48] Successfully fetched 'http://bazafile.ru/': GET response code 200
    [22-Dec-2010 12:54:58] Successfully fetched 'http://spinelessfiction.com/forum/index.php?action=profile;u=149601': GET response code 200
    [22-Dec-2010 13:07:52] Successfully fetched 'http://najtanszeocac.net/': GET response code 200
    [22-Dec-2010 13:11:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 13:13:44] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 13:25:22] Successfully fetched 'http://performersparadise.com/paradise/forum/profile.php?mode=viewprofile&u=242443': GET response code 200
    [22-Dec-2010 13:35:55] Successfully fetched 'http://www.ojosymas.com/usefull-info-about-diflucan/': GET response code 200
    [22-Dec-2010 13:56:04] Successfully fetched 'http://selenagomez-fanclub.com/forum/index.php?action=profile;u=119109': GET response code 200
    [22-Dec-2010 14:19:29] Successfully fetched 'http://bestaltimeterwatch.com/': GET response code 200
    [22-Dec-2010 14:28:43] Successfully fetched 'http://www.eddjss.com/forum/member.php?u=149810': GET response code 406
    [22-Dec-2010 14:35:06] Successfully fetched 'http://peter2124morley.insanejournal.com/1100.html': GET response code 200
    [22-Dec-2010 14:42:01] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 14:51:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 14:53:33] Successfully fetched 'http://www.bibliotecka.ru/': GET response code 200
    [22-Dec-2010 15:01:56] Successfully fetched 'http://www.visitwarsaw.viapolonia.pl/forum/profile.php?id=125347': GET response code 200
    [22-Dec-2010 15:19:18] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [22-Dec-2010 15:33:34] Successfully fetched 'http://www.winkeyelash.com/board/index.php?action=profile;u=126259': GET response code 200
    [22-Dec-2010 16:04:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 16:04:56] Successfully fetched 'http://www.neuralstatic.com/phpBB2/profile.php?mode=viewprofile&u=93808': GET response code 200
    [22-Dec-2010 16:08:56] Successfully fetched 'http://vividhust.110mb.com/': GET response code 200
    [22-Dec-2010 16:33:57] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 16:37:57] Successfully fetched 'http://www.hatunca.net/forum/index.php?action=profile;u=58153': GET response code 200
    [22-Dec-2010 16:44:35] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:47:36] Successfully fetched 'http://casino.ru/group/poker/poker_game/blog': GET response code 200
    [22-Dec-2010 16:58:40] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:58:42] Successfully fetched 'http://internetmarketing-software.com/': GET response code 200
    [22-Dec-2010 17:00:43] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 17:09:24] Successfully fetched 'http://furfag.com/forums/profile.php?mode=viewprofile&u=128686': GET response code 200
    [22-Dec-2010 17:36:24] Successfully fetched 'http://livero.pl/': GET response code 200
    [22-Dec-2010 17:39:58] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 17:42:28] Successfully fetched 'http://www.pullwithbothhands.com/phpBB2/profile.php?mode=viewprofile&u=107200': GET response code 200
    [22-Dec-2010 17:56:50] Successfully fetched 'http://www.abercrombiefitchuk.net/': GET response code 200
    [22-Dec-2010 18:03:10] Successfully fetched 'http://www.rus-dom.net/': GET response code 200
    [22-Dec-2010 18:16:15] Successfully fetched 'http://static.atlanticmasters.org/msc//profile.php?mode=viewprofile&u=160636': GET response code 200
    [22-Dec-2010 18:21:01] Successfully fetched 'http://www.pachi-park.com/': GET response code 200
    [22-Dec-2010 18:27:29] Successfully fetched 'http://latesthostgatorcoupons.com/promo-codes-for-hostgator': GET response code 200
    [22-Dec-2010 18:48:48] Successfully fetched 'http://www.prologon.se/forum/index.php?action=profile;u=116162': GET response code 200
    [22-Dec-2010 18:51:00] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 18:59:47] Successfully fetched 'http://www.myrosebags.com/': GET response code 200
    [22-Dec-2010 19:05:37] Successfully fetched 'http://mistapikavippi.com/': GET response code 200[/size][/font][/color]

    What they were doing – I think – is using the OpenID authentication form and putting in the site they wanted to increase traffic to as the authority / verification site. OpenID would then try to verify them. The transaction would fail of course, but not before registering a hit on the fake verification site.
    I shudder to think at how many porn and gambling sites now have my site in their log files. It's no wonder I've been getting a huge increase in spam lately. Sigh.
    Needless to say, OpenID comments are no longer allowed here.
    (There could of course be other problems, but this was definitely not helping. Since I've turned it off, the server seems much more snappy.)
  5. Like
    NIM got a reaction from Borenike in OpenID login method removed!   
    OpenID login methond has been removed from WinCert.net for the reasons mentioned in post on robrohan.com web site:
    This blog has been having some serious uptime problems, but with our move and starting our new jobs, I haven't had time to look into the problem.
    At completely random times the server would just spin out of control as if it was under a denial of service attack. I figured it was just someone's home made, badly written spider, and it would just stop – but it kept happening.
    Finally, I got a chance to sit down and see what might be going on with the box, and it looks like someone – well, several people, actually a lot of people – were using the OpenID plugin on wordpress (and the openid module on drupal (I have both on this server)) to either proxy porn and gambling sites, or to increase hits on their porn and gambling sites.
    The apache error log was full – and I mean full – of things like this (where "…" is some porn or gambling site):

    [color=#555C62][font=arial, helvetica, arial, tahoma, sans-serif][size=2]21-Dec-2010 10:40:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:02:26] Got no response code when fetching [url="http://www.kiralikotolar.org/audi-q7-kiralama.html"]http://www.kiralikotolar.org/audi-q7-kiralama.html[/url]
    [21-Dec-2010 11:02:26] CURL error (6): Couldn't resolve host 'www.kiralikotolar.org'
    [21-Dec-2010 11:10:59] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:23:02] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 11:36:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:55:27] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [21-Dec-2010 12:08:47] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 12:23:03] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 12:42:04] Successfully fetched 'http://www.advantagewareny.com/celebrex-in-heart-rhythm/': GET response code 200
    [21-Dec-2010 12:43:02] Successfully fetched 'http://antiagingreviews.iibc.com/': GET response code 200
    [21-Dec-2010 13:03:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:04:07] Successfully fetched 'http://trig.com/ghjgweu/biography': GET response code 200
    [21-Dec-2010 13:23:13] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 13:42:36] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:45:30] Successfully fetched 'http://www.pozycjonowanie3.pl/': GET response code 200
    [21-Dec-2010 14:27:50] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:38:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:54:53] Successfully fetched 'http://pozycjonowanie-clpik.otobiznes.pl/': GET response code 200
    [21-Dec-2010 14:58:17] Successfully fetched 'http://www.myrosebags.com/': GET response code 503
    [21-Dec-2010 15:20:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 15:33:15] Successfully fetched 'http://goarticles.com/article/How-to-Get-Your-Ex-Back-Learn-From-My-Experiences-and-Avoid-the-Pain-That-I-Felt/2437656': GET response code 200
    [21-Dec-2010 15:47:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:26:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:29:13] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [21-Dec-2010 16:30:20] Successfully fetched 'http://www.truckers.chicagocleaningservices.us/cleaning-service-chicago.html': GET response code 406
    [21-Dec-2010 16:38:04] Successfully fetched 'http://www.braceletpandora.com/': GET response code 200
    [21-Dec-2010 16:52:26] Successfully fetched 'http://www.goingpublic.us/': GET response code 200
    [21-Dec-2010 16:53:27] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 17:44:12] Successfully fetched 'http://www.seomarketingservicesonline.com/': GET response code 200
    [21-Dec-2010 17:48:35] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 18:39:30] Successfully fetched 'http://www.avazo.com/': GET response code 200
    [21-Dec-2010 18:52:29] Successfully fetched 'http://www.webzanacka.ru/': GET response code 200
    [21-Dec-2010 18:53:46] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 19:56:57] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [21-Dec-2010 20:05:13] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 20:11:35] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [21-Dec-2010 20:26:04] Successfully fetched 'http://casino.ru/online/poker': GET response code 200
    [21-Dec-2010 21:27:48] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 21:55:06] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 22:28:45] Got no response code when fetching [url="http://www.problemsquealworld.nl/"]http://www.problemsquealworld.nl/[/url]
    [21-Dec-2010 22:28:45] CURL error (52): Empty reply from server
    [21-Dec-2010 22:30:12] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [21-Dec-2010 22:40:37] Successfully fetched 'http://iphones-4you.ru/': GET response code 200
    [21-Dec-2010 23:31:13] Successfully fetched 'http://seoplotki.pl/': GET response code 200
    [21-Dec-2010 23:33:01] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 00:11:14] Successfully fetched 'http://4etag.kiev.ua/zamer-okon.html': GET response code 200
    [22-Dec-2010 00:42:38] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [22-Dec-2010 01:14:47] Successfully fetched 'http://www.tophotonline.info/sitemap.html': GET response code 200
    [22-Dec-2010 01:25:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 01:54:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:05:22] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 02:10:30] Successfully fetched 'http://www.flyingloans.com/loan-with-bad-credit.htm': GET response code 200
    [22-Dec-2010 02:14:18] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:26:14] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 02:26:46] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 02:31:59] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 02:36:47] Successfully fetched 'http://www.arizonahomespecialists.com/': GET response code 200
    [22-Dec-2010 03:13:38] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 03:18:44] Successfully fetched 'http://oxparuerthe.edublogs.org/': GET response code 200
    [22-Dec-2010 03:38:39] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 03:44:25] Successfully fetched 'http://ukraineindependentescorts.com/': GET response code 200
    [22-Dec-2010 03:58:44] Successfully fetched 'http://www.padeelshare.com/': GET response code 200
    [22-Dec-2010 04:00:47] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 04:19:44] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 04:32:02] Successfully fetched 'http://www.trendandcoffee.pl/index.php': GET response code 200
    [22-Dec-2010 04:40:20] Successfully fetched 'http://www.uhrenreplica.com/': GET response code 200
    [22-Dec-2010 04:42:50] Successfully fetched 'http://study.one-it.tk/': GET response code 200
    [22-Dec-2010 05:10:58] Successfully fetched 'http://www.canon500d.net/': GET response code 200
    [22-Dec-2010 06:04:09] Successfully fetched 'http://www.pussinen.fi/forum/profile.php?mode=viewprofile&u=88251': GET response code 200
    [22-Dec-2010 06:17:41] Successfully fetched 'http://forexgurudroid.com/': GET response code 200
    [22-Dec-2010 06:19:56] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 06:34:40] Successfully fetched 'http://www.jewfro.org/phpBB-2.0.17/phpBB2/profile.php?mode=viewprofile&u=95487': GET response code 200
    [22-Dec-2010 06:51:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 07:03:09] Got no response code when fetching [url="http://www.totaldvd.net/"]http://www.totaldvd.net/[/url]
    [22-Dec-2010 07:03:09] CURL error (7): couldn't connect to host
    [22-Dec-2010 07:09:44] Successfully fetched 'http://fc-lokomotiv.kz/forum/index.php?action=profile;u=122523': GET response code 200
    [22-Dec-2010 07:40:50] Successfully fetched 'http://trendyheel.com/community/profile.php?id=54882': GET response code 200
    [22-Dec-2010 07:42:57] Successfully fetched 'http://www.legionpharma.com/': GET response code 200
    [22-Dec-2010 08:10:37] Successfully fetched 'http://www.marketmoms.com/forums/memberlist.php?mode=viewprofile&u=142992': GET response code 200
    [22-Dec-2010 08:22:24] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 08:42:00] Successfully fetched 'http://www.moroznik.ru/forum/member.php?u=120942': GET response code 200
    [22-Dec-2010 08:43:22] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 08:56:01] Successfully fetched 'http://f.janek.ru/': GET response code 200
    [22-Dec-2010 08:58:49] Successfully fetched 'http://photoline.org.ua/': GET response code 406
    [22-Dec-2010 09:13:08] Successfully fetched 'http://canewoodgc.com/forums/index.php?action=profile;u=135591': GET response code 200
    [22-Dec-2010 09:15:40] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 09:25:38] Successfully fetched 'http://www.buykamagra.biz/': GET response code 200
    [22-Dec-2010 09:35:12] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 09:42:23] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [22-Dec-2010 09:45:39] Successfully fetched 'http://artline-comics.com/forum/profile.php?mode=viewprofile&u=151052': GET response code 200
    [22-Dec-2010 09:57:54] Successfully fetched 'http://www.niesplaca.pl/': GET response code 200
    [22-Dec-2010 10:09:46] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 10:17:12] Successfully fetched 'http://www.santahamina.fi/foorumi/profile.php?mode=viewprofile&u=86428': GET response code 200
    [22-Dec-2010 10:41:26] Successfully fetched 'http://blackjackonlinebasics.com/': GET response code 200
    [22-Dec-2010 10:47:22] Successfully fetched 'http://www.virtus.01d.ru/forum/profile.php?mode=viewprofile&u=84562': GET response code 200
    [22-Dec-2010 10:52:52] Successfully fetched 'http://www.replicasswiss.com/': GET response code 200
    [22-Dec-2010 10:58:33] Successfully fetched 'http://www.buzzle.com/articles/how-to-play-video-poker-like-a-pro.html': GET response code 200
    [22-Dec-2010 11:11:26] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:16:18] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:20:00] Successfully fetched 'http://brimmer.kiev.ua/for//profile.php?mode=viewprofile&u=82365': GET response code 200
    [22-Dec-2010 11:22:13] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [22-Dec-2010 11:33:20] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 11:40:53] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:45:51] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 11:52:16] Successfully fetched 'http://gadgetstoget.com/Forum/index.php?action=profile;u=99392': GET response code 200
    [22-Dec-2010 12:22:39] Successfully fetched 'http://www.ecazorla.com/insomnio/foros/profile.php?mode=viewprofile&u=181259': GET response code 200
    [22-Dec-2010 12:47:24] Got no response code when fetching [url="http://www.libertytraffic.ru/billing/order.php?type=shop&group=1"]http://www.libertytraffic.ru/billing/order...hop&group=1[/url]
    [22-Dec-2010 12:47:24] CURL error (6): Couldn't resolve host 'www.libertytraffic.ru'
    [22-Dec-2010 12:49:33] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 12:49:48] Successfully fetched 'http://bazafile.ru/': GET response code 200
    [22-Dec-2010 12:54:58] Successfully fetched 'http://spinelessfiction.com/forum/index.php?action=profile;u=149601': GET response code 200
    [22-Dec-2010 13:07:52] Successfully fetched 'http://najtanszeocac.net/': GET response code 200
    [22-Dec-2010 13:11:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 13:13:44] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 13:25:22] Successfully fetched 'http://performersparadise.com/paradise/forum/profile.php?mode=viewprofile&u=242443': GET response code 200
    [22-Dec-2010 13:35:55] Successfully fetched 'http://www.ojosymas.com/usefull-info-about-diflucan/': GET response code 200
    [22-Dec-2010 13:56:04] Successfully fetched 'http://selenagomez-fanclub.com/forum/index.php?action=profile;u=119109': GET response code 200
    [22-Dec-2010 14:19:29] Successfully fetched 'http://bestaltimeterwatch.com/': GET response code 200
    [22-Dec-2010 14:28:43] Successfully fetched 'http://www.eddjss.com/forum/member.php?u=149810': GET response code 406
    [22-Dec-2010 14:35:06] Successfully fetched 'http://peter2124morley.insanejournal.com/1100.html': GET response code 200
    [22-Dec-2010 14:42:01] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 14:51:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 14:53:33] Successfully fetched 'http://www.bibliotecka.ru/': GET response code 200
    [22-Dec-2010 15:01:56] Successfully fetched 'http://www.visitwarsaw.viapolonia.pl/forum/profile.php?id=125347': GET response code 200
    [22-Dec-2010 15:19:18] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [22-Dec-2010 15:33:34] Successfully fetched 'http://www.winkeyelash.com/board/index.php?action=profile;u=126259': GET response code 200
    [22-Dec-2010 16:04:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 16:04:56] Successfully fetched 'http://www.neuralstatic.com/phpBB2/profile.php?mode=viewprofile&u=93808': GET response code 200
    [22-Dec-2010 16:08:56] Successfully fetched 'http://vividhust.110mb.com/': GET response code 200
    [22-Dec-2010 16:33:57] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 16:37:57] Successfully fetched 'http://www.hatunca.net/forum/index.php?action=profile;u=58153': GET response code 200
    [22-Dec-2010 16:44:35] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:47:36] Successfully fetched 'http://casino.ru/group/poker/poker_game/blog': GET response code 200
    [22-Dec-2010 16:58:40] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:58:42] Successfully fetched 'http://internetmarketing-software.com/': GET response code 200
    [22-Dec-2010 17:00:43] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 17:09:24] Successfully fetched 'http://furfag.com/forums/profile.php?mode=viewprofile&u=128686': GET response code 200
    [22-Dec-2010 17:36:24] Successfully fetched 'http://livero.pl/': GET response code 200
    [22-Dec-2010 17:39:58] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 17:42:28] Successfully fetched 'http://www.pullwithbothhands.com/phpBB2/profile.php?mode=viewprofile&u=107200': GET response code 200
    [22-Dec-2010 17:56:50] Successfully fetched 'http://www.abercrombiefitchuk.net/': GET response code 200
    [22-Dec-2010 18:03:10] Successfully fetched 'http://www.rus-dom.net/': GET response code 200
    [22-Dec-2010 18:16:15] Successfully fetched 'http://static.atlanticmasters.org/msc//profile.php?mode=viewprofile&u=160636': GET response code 200
    [22-Dec-2010 18:21:01] Successfully fetched 'http://www.pachi-park.com/': GET response code 200
    [22-Dec-2010 18:27:29] Successfully fetched 'http://latesthostgatorcoupons.com/promo-codes-for-hostgator': GET response code 200
    [22-Dec-2010 18:48:48] Successfully fetched 'http://www.prologon.se/forum/index.php?action=profile;u=116162': GET response code 200
    [22-Dec-2010 18:51:00] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 18:59:47] Successfully fetched 'http://www.myrosebags.com/': GET response code 200
    [22-Dec-2010 19:05:37] Successfully fetched 'http://mistapikavippi.com/': GET response code 200[/size][/font][/color]

    What they were doing – I think – is using the OpenID authentication form and putting in the site they wanted to increase traffic to as the authority / verification site. OpenID would then try to verify them. The transaction would fail of course, but not before registering a hit on the fake verification site.
    I shudder to think at how many porn and gambling sites now have my site in their log files. It's no wonder I've been getting a huge increase in spam lately. Sigh.
    Needless to say, OpenID comments are no longer allowed here.
    (There could of course be other problems, but this was definitely not helping. Since I've turned it off, the server seems much more snappy.)
  6. Like
    NIM got a reaction from Srenulakis in OpenID login method removed!   
    OpenID login methond has been removed from WinCert.net for the reasons mentioned in post on robrohan.com web site:
    This blog has been having some serious uptime problems, but with our move and starting our new jobs, I haven't had time to look into the problem.
    At completely random times the server would just spin out of control as if it was under a denial of service attack. I figured it was just someone's home made, badly written spider, and it would just stop – but it kept happening.
    Finally, I got a chance to sit down and see what might be going on with the box, and it looks like someone – well, several people, actually a lot of people – were using the OpenID plugin on wordpress (and the openid module on drupal (I have both on this server)) to either proxy porn and gambling sites, or to increase hits on their porn and gambling sites.
    The apache error log was full – and I mean full – of things like this (where "…" is some porn or gambling site):

    [color=#555C62][font=arial, helvetica, arial, tahoma, sans-serif][size=2]21-Dec-2010 10:40:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:02:26] Got no response code when fetching [url="http://www.kiralikotolar.org/audi-q7-kiralama.html"]http://www.kiralikotolar.org/audi-q7-kiralama.html[/url]
    [21-Dec-2010 11:02:26] CURL error (6): Couldn't resolve host 'www.kiralikotolar.org'
    [21-Dec-2010 11:10:59] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:23:02] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 11:36:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:55:27] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [21-Dec-2010 12:08:47] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 12:23:03] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 12:42:04] Successfully fetched 'http://www.advantagewareny.com/celebrex-in-heart-rhythm/': GET response code 200
    [21-Dec-2010 12:43:02] Successfully fetched 'http://antiagingreviews.iibc.com/': GET response code 200
    [21-Dec-2010 13:03:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:04:07] Successfully fetched 'http://trig.com/ghjgweu/biography': GET response code 200
    [21-Dec-2010 13:23:13] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 13:42:36] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:45:30] Successfully fetched 'http://www.pozycjonowanie3.pl/': GET response code 200
    [21-Dec-2010 14:27:50] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:38:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:54:53] Successfully fetched 'http://pozycjonowanie-clpik.otobiznes.pl/': GET response code 200
    [21-Dec-2010 14:58:17] Successfully fetched 'http://www.myrosebags.com/': GET response code 503
    [21-Dec-2010 15:20:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 15:33:15] Successfully fetched 'http://goarticles.com/article/How-to-Get-Your-Ex-Back-Learn-From-My-Experiences-and-Avoid-the-Pain-That-I-Felt/2437656': GET response code 200
    [21-Dec-2010 15:47:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:26:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:29:13] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [21-Dec-2010 16:30:20] Successfully fetched 'http://www.truckers.chicagocleaningservices.us/cleaning-service-chicago.html': GET response code 406
    [21-Dec-2010 16:38:04] Successfully fetched 'http://www.braceletpandora.com/': GET response code 200
    [21-Dec-2010 16:52:26] Successfully fetched 'http://www.goingpublic.us/': GET response code 200
    [21-Dec-2010 16:53:27] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 17:44:12] Successfully fetched 'http://www.seomarketingservicesonline.com/': GET response code 200
    [21-Dec-2010 17:48:35] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 18:39:30] Successfully fetched 'http://www.avazo.com/': GET response code 200
    [21-Dec-2010 18:52:29] Successfully fetched 'http://www.webzanacka.ru/': GET response code 200
    [21-Dec-2010 18:53:46] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 19:56:57] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [21-Dec-2010 20:05:13] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 20:11:35] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [21-Dec-2010 20:26:04] Successfully fetched 'http://casino.ru/online/poker': GET response code 200
    [21-Dec-2010 21:27:48] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 21:55:06] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 22:28:45] Got no response code when fetching [url="http://www.problemsquealworld.nl/"]http://www.problemsquealworld.nl/[/url]
    [21-Dec-2010 22:28:45] CURL error (52): Empty reply from server
    [21-Dec-2010 22:30:12] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [21-Dec-2010 22:40:37] Successfully fetched 'http://iphones-4you.ru/': GET response code 200
    [21-Dec-2010 23:31:13] Successfully fetched 'http://seoplotki.pl/': GET response code 200
    [21-Dec-2010 23:33:01] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 00:11:14] Successfully fetched 'http://4etag.kiev.ua/zamer-okon.html': GET response code 200
    [22-Dec-2010 00:42:38] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [22-Dec-2010 01:14:47] Successfully fetched 'http://www.tophotonline.info/sitemap.html': GET response code 200
    [22-Dec-2010 01:25:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 01:54:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:05:22] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 02:10:30] Successfully fetched 'http://www.flyingloans.com/loan-with-bad-credit.htm': GET response code 200
    [22-Dec-2010 02:14:18] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:26:14] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 02:26:46] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 02:31:59] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 02:36:47] Successfully fetched 'http://www.arizonahomespecialists.com/': GET response code 200
    [22-Dec-2010 03:13:38] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 03:18:44] Successfully fetched 'http://oxparuerthe.edublogs.org/': GET response code 200
    [22-Dec-2010 03:38:39] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 03:44:25] Successfully fetched 'http://ukraineindependentescorts.com/': GET response code 200
    [22-Dec-2010 03:58:44] Successfully fetched 'http://www.padeelshare.com/': GET response code 200
    [22-Dec-2010 04:00:47] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 04:19:44] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 04:32:02] Successfully fetched 'http://www.trendandcoffee.pl/index.php': GET response code 200
    [22-Dec-2010 04:40:20] Successfully fetched 'http://www.uhrenreplica.com/': GET response code 200
    [22-Dec-2010 04:42:50] Successfully fetched 'http://study.one-it.tk/': GET response code 200
    [22-Dec-2010 05:10:58] Successfully fetched 'http://www.canon500d.net/': GET response code 200
    [22-Dec-2010 06:04:09] Successfully fetched 'http://www.pussinen.fi/forum/profile.php?mode=viewprofile&u=88251': GET response code 200
    [22-Dec-2010 06:17:41] Successfully fetched 'http://forexgurudroid.com/': GET response code 200
    [22-Dec-2010 06:19:56] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 06:34:40] Successfully fetched 'http://www.jewfro.org/phpBB-2.0.17/phpBB2/profile.php?mode=viewprofile&u=95487': GET response code 200
    [22-Dec-2010 06:51:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 07:03:09] Got no response code when fetching [url="http://www.totaldvd.net/"]http://www.totaldvd.net/[/url]
    [22-Dec-2010 07:03:09] CURL error (7): couldn't connect to host
    [22-Dec-2010 07:09:44] Successfully fetched 'http://fc-lokomotiv.kz/forum/index.php?action=profile;u=122523': GET response code 200
    [22-Dec-2010 07:40:50] Successfully fetched 'http://trendyheel.com/community/profile.php?id=54882': GET response code 200
    [22-Dec-2010 07:42:57] Successfully fetched 'http://www.legionpharma.com/': GET response code 200
    [22-Dec-2010 08:10:37] Successfully fetched 'http://www.marketmoms.com/forums/memberlist.php?mode=viewprofile&u=142992': GET response code 200
    [22-Dec-2010 08:22:24] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 08:42:00] Successfully fetched 'http://www.moroznik.ru/forum/member.php?u=120942': GET response code 200
    [22-Dec-2010 08:43:22] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 08:56:01] Successfully fetched 'http://f.janek.ru/': GET response code 200
    [22-Dec-2010 08:58:49] Successfully fetched 'http://photoline.org.ua/': GET response code 406
    [22-Dec-2010 09:13:08] Successfully fetched 'http://canewoodgc.com/forums/index.php?action=profile;u=135591': GET response code 200
    [22-Dec-2010 09:15:40] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 09:25:38] Successfully fetched 'http://www.buykamagra.biz/': GET response code 200
    [22-Dec-2010 09:35:12] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 09:42:23] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [22-Dec-2010 09:45:39] Successfully fetched 'http://artline-comics.com/forum/profile.php?mode=viewprofile&u=151052': GET response code 200
    [22-Dec-2010 09:57:54] Successfully fetched 'http://www.niesplaca.pl/': GET response code 200
    [22-Dec-2010 10:09:46] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 10:17:12] Successfully fetched 'http://www.santahamina.fi/foorumi/profile.php?mode=viewprofile&u=86428': GET response code 200
    [22-Dec-2010 10:41:26] Successfully fetched 'http://blackjackonlinebasics.com/': GET response code 200
    [22-Dec-2010 10:47:22] Successfully fetched 'http://www.virtus.01d.ru/forum/profile.php?mode=viewprofile&u=84562': GET response code 200
    [22-Dec-2010 10:52:52] Successfully fetched 'http://www.replicasswiss.com/': GET response code 200
    [22-Dec-2010 10:58:33] Successfully fetched 'http://www.buzzle.com/articles/how-to-play-video-poker-like-a-pro.html': GET response code 200
    [22-Dec-2010 11:11:26] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:16:18] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:20:00] Successfully fetched 'http://brimmer.kiev.ua/for//profile.php?mode=viewprofile&u=82365': GET response code 200
    [22-Dec-2010 11:22:13] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [22-Dec-2010 11:33:20] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 11:40:53] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:45:51] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 11:52:16] Successfully fetched 'http://gadgetstoget.com/Forum/index.php?action=profile;u=99392': GET response code 200
    [22-Dec-2010 12:22:39] Successfully fetched 'http://www.ecazorla.com/insomnio/foros/profile.php?mode=viewprofile&u=181259': GET response code 200
    [22-Dec-2010 12:47:24] Got no response code when fetching [url="http://www.libertytraffic.ru/billing/order.php?type=shop&group=1"]http://www.libertytraffic.ru/billing/order...hop&group=1[/url]
    [22-Dec-2010 12:47:24] CURL error (6): Couldn't resolve host 'www.libertytraffic.ru'
    [22-Dec-2010 12:49:33] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 12:49:48] Successfully fetched 'http://bazafile.ru/': GET response code 200
    [22-Dec-2010 12:54:58] Successfully fetched 'http://spinelessfiction.com/forum/index.php?action=profile;u=149601': GET response code 200
    [22-Dec-2010 13:07:52] Successfully fetched 'http://najtanszeocac.net/': GET response code 200
    [22-Dec-2010 13:11:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 13:13:44] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 13:25:22] Successfully fetched 'http://performersparadise.com/paradise/forum/profile.php?mode=viewprofile&u=242443': GET response code 200
    [22-Dec-2010 13:35:55] Successfully fetched 'http://www.ojosymas.com/usefull-info-about-diflucan/': GET response code 200
    [22-Dec-2010 13:56:04] Successfully fetched 'http://selenagomez-fanclub.com/forum/index.php?action=profile;u=119109': GET response code 200
    [22-Dec-2010 14:19:29] Successfully fetched 'http://bestaltimeterwatch.com/': GET response code 200
    [22-Dec-2010 14:28:43] Successfully fetched 'http://www.eddjss.com/forum/member.php?u=149810': GET response code 406
    [22-Dec-2010 14:35:06] Successfully fetched 'http://peter2124morley.insanejournal.com/1100.html': GET response code 200
    [22-Dec-2010 14:42:01] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 14:51:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 14:53:33] Successfully fetched 'http://www.bibliotecka.ru/': GET response code 200
    [22-Dec-2010 15:01:56] Successfully fetched 'http://www.visitwarsaw.viapolonia.pl/forum/profile.php?id=125347': GET response code 200
    [22-Dec-2010 15:19:18] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [22-Dec-2010 15:33:34] Successfully fetched 'http://www.winkeyelash.com/board/index.php?action=profile;u=126259': GET response code 200
    [22-Dec-2010 16:04:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 16:04:56] Successfully fetched 'http://www.neuralstatic.com/phpBB2/profile.php?mode=viewprofile&u=93808': GET response code 200
    [22-Dec-2010 16:08:56] Successfully fetched 'http://vividhust.110mb.com/': GET response code 200
    [22-Dec-2010 16:33:57] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 16:37:57] Successfully fetched 'http://www.hatunca.net/forum/index.php?action=profile;u=58153': GET response code 200
    [22-Dec-2010 16:44:35] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:47:36] Successfully fetched 'http://casino.ru/group/poker/poker_game/blog': GET response code 200
    [22-Dec-2010 16:58:40] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:58:42] Successfully fetched 'http://internetmarketing-software.com/': GET response code 200
    [22-Dec-2010 17:00:43] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 17:09:24] Successfully fetched 'http://furfag.com/forums/profile.php?mode=viewprofile&u=128686': GET response code 200
    [22-Dec-2010 17:36:24] Successfully fetched 'http://livero.pl/': GET response code 200
    [22-Dec-2010 17:39:58] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 17:42:28] Successfully fetched 'http://www.pullwithbothhands.com/phpBB2/profile.php?mode=viewprofile&u=107200': GET response code 200
    [22-Dec-2010 17:56:50] Successfully fetched 'http://www.abercrombiefitchuk.net/': GET response code 200
    [22-Dec-2010 18:03:10] Successfully fetched 'http://www.rus-dom.net/': GET response code 200
    [22-Dec-2010 18:16:15] Successfully fetched 'http://static.atlanticmasters.org/msc//profile.php?mode=viewprofile&u=160636': GET response code 200
    [22-Dec-2010 18:21:01] Successfully fetched 'http://www.pachi-park.com/': GET response code 200
    [22-Dec-2010 18:27:29] Successfully fetched 'http://latesthostgatorcoupons.com/promo-codes-for-hostgator': GET response code 200
    [22-Dec-2010 18:48:48] Successfully fetched 'http://www.prologon.se/forum/index.php?action=profile;u=116162': GET response code 200
    [22-Dec-2010 18:51:00] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 18:59:47] Successfully fetched 'http://www.myrosebags.com/': GET response code 200
    [22-Dec-2010 19:05:37] Successfully fetched 'http://mistapikavippi.com/': GET response code 200[/size][/font][/color]

    What they were doing – I think – is using the OpenID authentication form and putting in the site they wanted to increase traffic to as the authority / verification site. OpenID would then try to verify them. The transaction would fail of course, but not before registering a hit on the fake verification site.
    I shudder to think at how many porn and gambling sites now have my site in their log files. It's no wonder I've been getting a huge increase in spam lately. Sigh.
    Needless to say, OpenID comments are no longer allowed here.
    (There could of course be other problems, but this was definitely not helping. Since I've turned it off, the server seems much more snappy.)
  7. Like
    NIM got a reaction from Safetylong in OpenID login method removed!   
    OpenID login methond has been removed from WinCert.net for the reasons mentioned in post on robrohan.com web site:
    This blog has been having some serious uptime problems, but with our move and starting our new jobs, I haven't had time to look into the problem.
    At completely random times the server would just spin out of control as if it was under a denial of service attack. I figured it was just someone's home made, badly written spider, and it would just stop – but it kept happening.
    Finally, I got a chance to sit down and see what might be going on with the box, and it looks like someone – well, several people, actually a lot of people – were using the OpenID plugin on wordpress (and the openid module on drupal (I have both on this server)) to either proxy porn and gambling sites, or to increase hits on their porn and gambling sites.
    The apache error log was full – and I mean full – of things like this (where "…" is some porn or gambling site):

    [color=#555C62][font=arial, helvetica, arial, tahoma, sans-serif][size=2]21-Dec-2010 10:40:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:02:26] Got no response code when fetching [url="http://www.kiralikotolar.org/audi-q7-kiralama.html"]http://www.kiralikotolar.org/audi-q7-kiralama.html[/url]
    [21-Dec-2010 11:02:26] CURL error (6): Couldn't resolve host 'www.kiralikotolar.org'
    [21-Dec-2010 11:10:59] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:23:02] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 11:36:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:55:27] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [21-Dec-2010 12:08:47] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 12:23:03] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 12:42:04] Successfully fetched 'http://www.advantagewareny.com/celebrex-in-heart-rhythm/': GET response code 200
    [21-Dec-2010 12:43:02] Successfully fetched 'http://antiagingreviews.iibc.com/': GET response code 200
    [21-Dec-2010 13:03:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:04:07] Successfully fetched 'http://trig.com/ghjgweu/biography': GET response code 200
    [21-Dec-2010 13:23:13] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 13:42:36] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:45:30] Successfully fetched 'http://www.pozycjonowanie3.pl/': GET response code 200
    [21-Dec-2010 14:27:50] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:38:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:54:53] Successfully fetched 'http://pozycjonowanie-clpik.otobiznes.pl/': GET response code 200
    [21-Dec-2010 14:58:17] Successfully fetched 'http://www.myrosebags.com/': GET response code 503
    [21-Dec-2010 15:20:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 15:33:15] Successfully fetched 'http://goarticles.com/article/How-to-Get-Your-Ex-Back-Learn-From-My-Experiences-and-Avoid-the-Pain-That-I-Felt/2437656': GET response code 200
    [21-Dec-2010 15:47:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:26:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:29:13] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [21-Dec-2010 16:30:20] Successfully fetched 'http://www.truckers.chicagocleaningservices.us/cleaning-service-chicago.html': GET response code 406
    [21-Dec-2010 16:38:04] Successfully fetched 'http://www.braceletpandora.com/': GET response code 200
    [21-Dec-2010 16:52:26] Successfully fetched 'http://www.goingpublic.us/': GET response code 200
    [21-Dec-2010 16:53:27] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 17:44:12] Successfully fetched 'http://www.seomarketingservicesonline.com/': GET response code 200
    [21-Dec-2010 17:48:35] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 18:39:30] Successfully fetched 'http://www.avazo.com/': GET response code 200
    [21-Dec-2010 18:52:29] Successfully fetched 'http://www.webzanacka.ru/': GET response code 200
    [21-Dec-2010 18:53:46] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 19:56:57] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [21-Dec-2010 20:05:13] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 20:11:35] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [21-Dec-2010 20:26:04] Successfully fetched 'http://casino.ru/online/poker': GET response code 200
    [21-Dec-2010 21:27:48] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 21:55:06] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 22:28:45] Got no response code when fetching [url="http://www.problemsquealworld.nl/"]http://www.problemsquealworld.nl/[/url]
    [21-Dec-2010 22:28:45] CURL error (52): Empty reply from server
    [21-Dec-2010 22:30:12] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [21-Dec-2010 22:40:37] Successfully fetched 'http://iphones-4you.ru/': GET response code 200
    [21-Dec-2010 23:31:13] Successfully fetched 'http://seoplotki.pl/': GET response code 200
    [21-Dec-2010 23:33:01] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 00:11:14] Successfully fetched 'http://4etag.kiev.ua/zamer-okon.html': GET response code 200
    [22-Dec-2010 00:42:38] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [22-Dec-2010 01:14:47] Successfully fetched 'http://www.tophotonline.info/sitemap.html': GET response code 200
    [22-Dec-2010 01:25:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 01:54:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:05:22] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 02:10:30] Successfully fetched 'http://www.flyingloans.com/loan-with-bad-credit.htm': GET response code 200
    [22-Dec-2010 02:14:18] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:26:14] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 02:26:46] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 02:31:59] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 02:36:47] Successfully fetched 'http://www.arizonahomespecialists.com/': GET response code 200
    [22-Dec-2010 03:13:38] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 03:18:44] Successfully fetched 'http://oxparuerthe.edublogs.org/': GET response code 200
    [22-Dec-2010 03:38:39] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 03:44:25] Successfully fetched 'http://ukraineindependentescorts.com/': GET response code 200
    [22-Dec-2010 03:58:44] Successfully fetched 'http://www.padeelshare.com/': GET response code 200
    [22-Dec-2010 04:00:47] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 04:19:44] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 04:32:02] Successfully fetched 'http://www.trendandcoffee.pl/index.php': GET response code 200
    [22-Dec-2010 04:40:20] Successfully fetched 'http://www.uhrenreplica.com/': GET response code 200
    [22-Dec-2010 04:42:50] Successfully fetched 'http://study.one-it.tk/': GET response code 200
    [22-Dec-2010 05:10:58] Successfully fetched 'http://www.canon500d.net/': GET response code 200
    [22-Dec-2010 06:04:09] Successfully fetched 'http://www.pussinen.fi/forum/profile.php?mode=viewprofile&u=88251': GET response code 200
    [22-Dec-2010 06:17:41] Successfully fetched 'http://forexgurudroid.com/': GET response code 200
    [22-Dec-2010 06:19:56] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 06:34:40] Successfully fetched 'http://www.jewfro.org/phpBB-2.0.17/phpBB2/profile.php?mode=viewprofile&u=95487': GET response code 200
    [22-Dec-2010 06:51:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 07:03:09] Got no response code when fetching [url="http://www.totaldvd.net/"]http://www.totaldvd.net/[/url]
    [22-Dec-2010 07:03:09] CURL error (7): couldn't connect to host
    [22-Dec-2010 07:09:44] Successfully fetched 'http://fc-lokomotiv.kz/forum/index.php?action=profile;u=122523': GET response code 200
    [22-Dec-2010 07:40:50] Successfully fetched 'http://trendyheel.com/community/profile.php?id=54882': GET response code 200
    [22-Dec-2010 07:42:57] Successfully fetched 'http://www.legionpharma.com/': GET response code 200
    [22-Dec-2010 08:10:37] Successfully fetched 'http://www.marketmoms.com/forums/memberlist.php?mode=viewprofile&u=142992': GET response code 200
    [22-Dec-2010 08:22:24] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 08:42:00] Successfully fetched 'http://www.moroznik.ru/forum/member.php?u=120942': GET response code 200
    [22-Dec-2010 08:43:22] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 08:56:01] Successfully fetched 'http://f.janek.ru/': GET response code 200
    [22-Dec-2010 08:58:49] Successfully fetched 'http://photoline.org.ua/': GET response code 406
    [22-Dec-2010 09:13:08] Successfully fetched 'http://canewoodgc.com/forums/index.php?action=profile;u=135591': GET response code 200
    [22-Dec-2010 09:15:40] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 09:25:38] Successfully fetched 'http://www.buykamagra.biz/': GET response code 200
    [22-Dec-2010 09:35:12] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 09:42:23] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [22-Dec-2010 09:45:39] Successfully fetched 'http://artline-comics.com/forum/profile.php?mode=viewprofile&u=151052': GET response code 200
    [22-Dec-2010 09:57:54] Successfully fetched 'http://www.niesplaca.pl/': GET response code 200
    [22-Dec-2010 10:09:46] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 10:17:12] Successfully fetched 'http://www.santahamina.fi/foorumi/profile.php?mode=viewprofile&u=86428': GET response code 200
    [22-Dec-2010 10:41:26] Successfully fetched 'http://blackjackonlinebasics.com/': GET response code 200
    [22-Dec-2010 10:47:22] Successfully fetched 'http://www.virtus.01d.ru/forum/profile.php?mode=viewprofile&u=84562': GET response code 200
    [22-Dec-2010 10:52:52] Successfully fetched 'http://www.replicasswiss.com/': GET response code 200
    [22-Dec-2010 10:58:33] Successfully fetched 'http://www.buzzle.com/articles/how-to-play-video-poker-like-a-pro.html': GET response code 200
    [22-Dec-2010 11:11:26] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:16:18] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:20:00] Successfully fetched 'http://brimmer.kiev.ua/for//profile.php?mode=viewprofile&u=82365': GET response code 200
    [22-Dec-2010 11:22:13] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [22-Dec-2010 11:33:20] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 11:40:53] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:45:51] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 11:52:16] Successfully fetched 'http://gadgetstoget.com/Forum/index.php?action=profile;u=99392': GET response code 200
    [22-Dec-2010 12:22:39] Successfully fetched 'http://www.ecazorla.com/insomnio/foros/profile.php?mode=viewprofile&u=181259': GET response code 200
    [22-Dec-2010 12:47:24] Got no response code when fetching [url="http://www.libertytraffic.ru/billing/order.php?type=shop&group=1"]http://www.libertytraffic.ru/billing/order...hop&group=1[/url]
    [22-Dec-2010 12:47:24] CURL error (6): Couldn't resolve host 'www.libertytraffic.ru'
    [22-Dec-2010 12:49:33] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 12:49:48] Successfully fetched 'http://bazafile.ru/': GET response code 200
    [22-Dec-2010 12:54:58] Successfully fetched 'http://spinelessfiction.com/forum/index.php?action=profile;u=149601': GET response code 200
    [22-Dec-2010 13:07:52] Successfully fetched 'http://najtanszeocac.net/': GET response code 200
    [22-Dec-2010 13:11:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 13:13:44] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 13:25:22] Successfully fetched 'http://performersparadise.com/paradise/forum/profile.php?mode=viewprofile&u=242443': GET response code 200
    [22-Dec-2010 13:35:55] Successfully fetched 'http://www.ojosymas.com/usefull-info-about-diflucan/': GET response code 200
    [22-Dec-2010 13:56:04] Successfully fetched 'http://selenagomez-fanclub.com/forum/index.php?action=profile;u=119109': GET response code 200
    [22-Dec-2010 14:19:29] Successfully fetched 'http://bestaltimeterwatch.com/': GET response code 200
    [22-Dec-2010 14:28:43] Successfully fetched 'http://www.eddjss.com/forum/member.php?u=149810': GET response code 406
    [22-Dec-2010 14:35:06] Successfully fetched 'http://peter2124morley.insanejournal.com/1100.html': GET response code 200
    [22-Dec-2010 14:42:01] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 14:51:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 14:53:33] Successfully fetched 'http://www.bibliotecka.ru/': GET response code 200
    [22-Dec-2010 15:01:56] Successfully fetched 'http://www.visitwarsaw.viapolonia.pl/forum/profile.php?id=125347': GET response code 200
    [22-Dec-2010 15:19:18] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [22-Dec-2010 15:33:34] Successfully fetched 'http://www.winkeyelash.com/board/index.php?action=profile;u=126259': GET response code 200
    [22-Dec-2010 16:04:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 16:04:56] Successfully fetched 'http://www.neuralstatic.com/phpBB2/profile.php?mode=viewprofile&u=93808': GET response code 200
    [22-Dec-2010 16:08:56] Successfully fetched 'http://vividhust.110mb.com/': GET response code 200
    [22-Dec-2010 16:33:57] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 16:37:57] Successfully fetched 'http://www.hatunca.net/forum/index.php?action=profile;u=58153': GET response code 200
    [22-Dec-2010 16:44:35] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:47:36] Successfully fetched 'http://casino.ru/group/poker/poker_game/blog': GET response code 200
    [22-Dec-2010 16:58:40] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:58:42] Successfully fetched 'http://internetmarketing-software.com/': GET response code 200
    [22-Dec-2010 17:00:43] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 17:09:24] Successfully fetched 'http://furfag.com/forums/profile.php?mode=viewprofile&u=128686': GET response code 200
    [22-Dec-2010 17:36:24] Successfully fetched 'http://livero.pl/': GET response code 200
    [22-Dec-2010 17:39:58] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 17:42:28] Successfully fetched 'http://www.pullwithbothhands.com/phpBB2/profile.php?mode=viewprofile&u=107200': GET response code 200
    [22-Dec-2010 17:56:50] Successfully fetched 'http://www.abercrombiefitchuk.net/': GET response code 200
    [22-Dec-2010 18:03:10] Successfully fetched 'http://www.rus-dom.net/': GET response code 200
    [22-Dec-2010 18:16:15] Successfully fetched 'http://static.atlanticmasters.org/msc//profile.php?mode=viewprofile&u=160636': GET response code 200
    [22-Dec-2010 18:21:01] Successfully fetched 'http://www.pachi-park.com/': GET response code 200
    [22-Dec-2010 18:27:29] Successfully fetched 'http://latesthostgatorcoupons.com/promo-codes-for-hostgator': GET response code 200
    [22-Dec-2010 18:48:48] Successfully fetched 'http://www.prologon.se/forum/index.php?action=profile;u=116162': GET response code 200
    [22-Dec-2010 18:51:00] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 18:59:47] Successfully fetched 'http://www.myrosebags.com/': GET response code 200
    [22-Dec-2010 19:05:37] Successfully fetched 'http://mistapikavippi.com/': GET response code 200[/size][/font][/color]

    What they were doing – I think – is using the OpenID authentication form and putting in the site they wanted to increase traffic to as the authority / verification site. OpenID would then try to verify them. The transaction would fail of course, but not before registering a hit on the fake verification site.
    I shudder to think at how many porn and gambling sites now have my site in their log files. It's no wonder I've been getting a huge increase in spam lately. Sigh.
    Needless to say, OpenID comments are no longer allowed here.
    (There could of course be other problems, but this was definitely not helping. Since I've turned it off, the server seems much more snappy.)
  8. Like
    NIM got a reaction from mikdik in windows 8 ATI graphics card drivers are out!   
    @Muffy
    In the past two couple of days ASUS upgraded drivers for their MBO's
    For my Asus P8Z77-V LE Plus MBO all drivers are now stable and out of beta. As I can see I only miss USB 3.0 drivers for now.
    Check the Asus site, stable drivers for your MBO are probably already released.
    Nik
  9. Like
    NIM got a reaction from Legolash2o in Model falls and news anchor laugh their asses off   
  10. Like
    NIM got a reaction from trial in Greetings to everyone :)   
    HI trial, welcome!
  11. Like
    NIM got a reaction from Pink_Freud in The Animals House of the Rising Sun Old School Computer Remix   
    <iframe width="560" height="315" src="http://www.youtube.com/embed/w68qZ8JvBds" frameborder="0" allowfullscreen></iframe>
  12. Like
    NIM got a reaction from monkee in Boot Windows 7 from VHD - an amazing concept, Here's how to do it   
    1. Install Windows 7 to VHD from DVD
    -----------------------------------------------------
    With Windows 7, you now have the option to boot the OS from a VHD, a virtual disk file, instead of a partition. This way, you don't have to reconfigure your hard drive partitions.
    Limitations: Hibernate is not supported.
    Here are the simplified instructions:
    1) Start Windows 7 installation from DVD.
    2) Press Shift+F10 to start the command prompt.
    3) Start diskpart.
    4) Use the "create vdisk file=D:\Win7.vhd maximum=xxxxx" to create a virtual hard disk. Choose your drive and filename accordingly. xxxxx is in MB.
    5) Type "select vdisk file=D:\Win7.vhd".
    6) Type "attach vdisk". You will get a confirmation that it was attached.
    7) Type "exit" to exit diskpart. And then close the command prompt.
    8) Click on "Install Now" and install as you would normally by clicking on "Custom Install". Choose your attached vdisk as the location.
    The installation takes care of adding the boot option to bcd. You don't have to do anything.
    See Virtual Hard Disk Booting on a tutorial for VHD booting.
    also check this out: Install Windows 7 to a VHD and add boot option to Vista's menu.
    Basically, instead of installing windows 7 to your physical HDD by getting rid of Vista or even dual booting off another partition, you can install to a virtual HDD (in VHD format), and boot off the VHD so you actually get the hardware functionality to play with!!
    Build 7068 does not allow calculation of the WEI score.
    2. Install Existing VHD to Boot Menu of Windows 7
    -------------------------------------------------------------------
    If you already have a VHD that you want to boot from, you can simply add it to the boot menu rather than going through the above steps. If you have a Virtual PC image, for example, you can syprep it, then add it to Windows 7 menu. Vista's boot manager will not work - you have to update it to Windows 7 boot manager if you want this to work.
    First, here how to add the vhd to the boot menu:
    Open elevated command prompt, then type the following commands in sequence:
    CODE
    C:\>bcdedit /copy {current} /d "My New VHD Description"
    C:\>bcdedit /set <guid> device vhd=[driveletter:]\<directory>\<vhd filename>
    C:\>bcdedit /set <guid> osdevice vhd=[driverletter:]\<directory>\<vhd filename>
    C:\>bcdedit /set <guid> detecthal on
    Note: The first command will Return the GUID of the Loader Object that you will use to replace <guid> below
    Note: vhd=[driveletter:]\<directory>\<vhd filename> is the new syntax supported for BCDEdit.exe to locate VHD File and Bootmgr will locate the partition containing the VHD File to boot from.
    Type bcdedit /v to check the bcd store.
    3. How to Boot VHD without Windows 7 Installed
    -----------------------------------------------------------------
    If you have Vista and want to boot a Window 7 VHD, then you need to copy the boot manager of Windows 7 to Vista's partition. You need to copy C:\bootmgr and C:\windows\system32\bcdedit.exe to an external source from Windows 7. You could extract these files from the Windows 7 VHD using WinImage or another program.
    Then, open an elevated command prompt in Vista and unhide bootmgr (attrib -h -r -s bootmgr) and replace it with Windows 7's. Do same for bcdedit. You might consider making backup copies of these files before replacing them.
    Then, add the VHD item to the boot menu using #2 above.
    4. How to Remove
    -------------------------
    To remove, run the following command in a elevated command prompt:
    CODE
    bcdedit /delete {guid} /cleanup
    Delete the vhd file.
    Greets to spacesurfer!
  13. Like
    NIM got a reaction from monkee in Minimum paging file please?   
    If you move the page file from a system drive, system won't be able to create crash dumps in case of a system failure ex. blue screen.
    I would use at least minimum page file on the system drive and use the 1.5X of RAM size on the second drive.
  14. Like
    NIM got a reaction from femolermed in OpenID login method removed!   
    OpenID login methond has been removed from WinCert.net for the reasons mentioned in post on robrohan.com web site:
    This blog has been having some serious uptime problems, but with our move and starting our new jobs, I haven't had time to look into the problem.
    At completely random times the server would just spin out of control as if it was under a denial of service attack. I figured it was just someone's home made, badly written spider, and it would just stop – but it kept happening.
    Finally, I got a chance to sit down and see what might be going on with the box, and it looks like someone – well, several people, actually a lot of people – were using the OpenID plugin on wordpress (and the openid module on drupal (I have both on this server)) to either proxy porn and gambling sites, or to increase hits on their porn and gambling sites.
    The apache error log was full – and I mean full – of things like this (where "…" is some porn or gambling site):

    [color=#555C62][font=arial, helvetica, arial, tahoma, sans-serif][size=2]21-Dec-2010 10:40:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:02:26] Got no response code when fetching [url="http://www.kiralikotolar.org/audi-q7-kiralama.html"]http://www.kiralikotolar.org/audi-q7-kiralama.html[/url]
    [21-Dec-2010 11:02:26] CURL error (6): Couldn't resolve host 'www.kiralikotolar.org'
    [21-Dec-2010 11:10:59] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:23:02] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 11:36:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 11:55:27] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [21-Dec-2010 12:08:47] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 12:23:03] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 12:42:04] Successfully fetched 'http://www.advantagewareny.com/celebrex-in-heart-rhythm/': GET response code 200
    [21-Dec-2010 12:43:02] Successfully fetched 'http://antiagingreviews.iibc.com/': GET response code 200
    [21-Dec-2010 13:03:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:04:07] Successfully fetched 'http://trig.com/ghjgweu/biography': GET response code 200
    [21-Dec-2010 13:23:13] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [21-Dec-2010 13:42:36] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 13:45:30] Successfully fetched 'http://www.pozycjonowanie3.pl/': GET response code 200
    [21-Dec-2010 14:27:50] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:38:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 14:54:53] Successfully fetched 'http://pozycjonowanie-clpik.otobiznes.pl/': GET response code 200
    [21-Dec-2010 14:58:17] Successfully fetched 'http://www.myrosebags.com/': GET response code 503
    [21-Dec-2010 15:20:42] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 15:33:15] Successfully fetched 'http://goarticles.com/article/How-to-Get-Your-Ex-Back-Learn-From-My-Experiences-and-Avoid-the-Pain-That-I-Felt/2437656': GET response code 200
    [21-Dec-2010 15:47:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:26:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 16:29:13] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [21-Dec-2010 16:30:20] Successfully fetched 'http://www.truckers.chicagocleaningservices.us/cleaning-service-chicago.html': GET response code 406
    [21-Dec-2010 16:38:04] Successfully fetched 'http://www.braceletpandora.com/': GET response code 200
    [21-Dec-2010 16:52:26] Successfully fetched 'http://www.goingpublic.us/': GET response code 200
    [21-Dec-2010 16:53:27] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 17:44:12] Successfully fetched 'http://www.seomarketingservicesonline.com/': GET response code 200
    [21-Dec-2010 17:48:35] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 18:39:30] Successfully fetched 'http://www.avazo.com/': GET response code 200
    [21-Dec-2010 18:52:29] Successfully fetched 'http://www.webzanacka.ru/': GET response code 200
    [21-Dec-2010 18:53:46] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 19:56:57] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [21-Dec-2010 20:05:13] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 20:11:35] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [21-Dec-2010 20:26:04] Successfully fetched 'http://casino.ru/online/poker': GET response code 200
    [21-Dec-2010 21:27:48] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 21:55:06] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [21-Dec-2010 22:28:45] Got no response code when fetching [url="http://www.problemsquealworld.nl/"]http://www.problemsquealworld.nl/[/url]
    [21-Dec-2010 22:28:45] CURL error (52): Empty reply from server
    [21-Dec-2010 22:30:12] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [21-Dec-2010 22:40:37] Successfully fetched 'http://iphones-4you.ru/': GET response code 200
    [21-Dec-2010 23:31:13] Successfully fetched 'http://seoplotki.pl/': GET response code 200
    [21-Dec-2010 23:33:01] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 00:11:14] Successfully fetched 'http://4etag.kiev.ua/zamer-okon.html': GET response code 200
    [22-Dec-2010 00:42:38] Successfully fetched 'http://hosting-blog.edu.pl/': GET response code 200
    [22-Dec-2010 01:14:47] Successfully fetched 'http://www.tophotonline.info/sitemap.html': GET response code 200
    [22-Dec-2010 01:25:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 01:54:38] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:05:22] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 02:10:30] Successfully fetched 'http://www.flyingloans.com/loan-with-bad-credit.htm': GET response code 200
    [22-Dec-2010 02:14:18] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 02:26:14] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 02:26:46] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 02:31:59] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 02:36:47] Successfully fetched 'http://www.arizonahomespecialists.com/': GET response code 200
    [22-Dec-2010 03:13:38] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 03:18:44] Successfully fetched 'http://oxparuerthe.edublogs.org/': GET response code 200
    [22-Dec-2010 03:38:39] Successfully fetched 'http://riva.san-ta-maria.org/search.php?q=tramadol': GET response code 200
    [22-Dec-2010 03:44:25] Successfully fetched 'http://ukraineindependentescorts.com/': GET response code 200
    [22-Dec-2010 03:58:44] Successfully fetched 'http://www.padeelshare.com/': GET response code 200
    [22-Dec-2010 04:00:47] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 04:19:44] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 04:32:02] Successfully fetched 'http://www.trendandcoffee.pl/index.php': GET response code 200
    [22-Dec-2010 04:40:20] Successfully fetched 'http://www.uhrenreplica.com/': GET response code 200
    [22-Dec-2010 04:42:50] Successfully fetched 'http://study.one-it.tk/': GET response code 200
    [22-Dec-2010 05:10:58] Successfully fetched 'http://www.canon500d.net/': GET response code 200
    [22-Dec-2010 06:04:09] Successfully fetched 'http://www.pussinen.fi/forum/profile.php?mode=viewprofile&u=88251': GET response code 200
    [22-Dec-2010 06:17:41] Successfully fetched 'http://forexgurudroid.com/': GET response code 200
    [22-Dec-2010 06:19:56] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 06:34:40] Successfully fetched 'http://www.jewfro.org/phpBB-2.0.17/phpBB2/profile.php?mode=viewprofile&u=95487': GET response code 200
    [22-Dec-2010 06:51:17] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 07:03:09] Got no response code when fetching [url="http://www.totaldvd.net/"]http://www.totaldvd.net/[/url]
    [22-Dec-2010 07:03:09] CURL error (7): couldn't connect to host
    [22-Dec-2010 07:09:44] Successfully fetched 'http://fc-lokomotiv.kz/forum/index.php?action=profile;u=122523': GET response code 200
    [22-Dec-2010 07:40:50] Successfully fetched 'http://trendyheel.com/community/profile.php?id=54882': GET response code 200
    [22-Dec-2010 07:42:57] Successfully fetched 'http://www.legionpharma.com/': GET response code 200
    [22-Dec-2010 08:10:37] Successfully fetched 'http://www.marketmoms.com/forums/memberlist.php?mode=viewprofile&u=142992': GET response code 200
    [22-Dec-2010 08:22:24] Successfully fetched 'http://www.articlesofinfo.com/': GET response code 200
    [22-Dec-2010 08:42:00] Successfully fetched 'http://www.moroznik.ru/forum/member.php?u=120942': GET response code 200
    [22-Dec-2010 08:43:22] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 08:56:01] Successfully fetched 'http://f.janek.ru/': GET response code 200
    [22-Dec-2010 08:58:49] Successfully fetched 'http://photoline.org.ua/': GET response code 406
    [22-Dec-2010 09:13:08] Successfully fetched 'http://canewoodgc.com/forums/index.php?action=profile;u=135591': GET response code 200
    [22-Dec-2010 09:15:40] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 09:25:38] Successfully fetched 'http://www.buykamagra.biz/': GET response code 200
    [22-Dec-2010 09:35:12] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 09:42:23] Successfully fetched 'http://amazingteenbabes.com/': GET response code 200
    [22-Dec-2010 09:45:39] Successfully fetched 'http://artline-comics.com/forum/profile.php?mode=viewprofile&u=151052': GET response code 200
    [22-Dec-2010 09:57:54] Successfully fetched 'http://www.niesplaca.pl/': GET response code 200
    [22-Dec-2010 10:09:46] Successfully fetched 'http://www.v7em.com/': GET response code 200
    [22-Dec-2010 10:17:12] Successfully fetched 'http://www.santahamina.fi/foorumi/profile.php?mode=viewprofile&u=86428': GET response code 200
    [22-Dec-2010 10:41:26] Successfully fetched 'http://blackjackonlinebasics.com/': GET response code 200
    [22-Dec-2010 10:47:22] Successfully fetched 'http://www.virtus.01d.ru/forum/profile.php?mode=viewprofile&u=84562': GET response code 200
    [22-Dec-2010 10:52:52] Successfully fetched 'http://www.replicasswiss.com/': GET response code 200
    [22-Dec-2010 10:58:33] Successfully fetched 'http://www.buzzle.com/articles/how-to-play-video-poker-like-a-pro.html': GET response code 200
    [22-Dec-2010 11:11:26] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:16:18] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:20:00] Successfully fetched 'http://brimmer.kiev.ua/for//profile.php?mode=viewprofile&u=82365': GET response code 200
    [22-Dec-2010 11:22:13] Successfully fetched 'http://onlinealibabamovie.tk/': GET response code 200
    [22-Dec-2010 11:33:20] Successfully fetched 'http://confeccionesorquidea.com/': GET response code 200
    [22-Dec-2010 11:40:53] Successfully fetched 'http://gamecheatshack.com/': GET response code 200
    [22-Dec-2010 11:45:51] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 11:52:16] Successfully fetched 'http://gadgetstoget.com/Forum/index.php?action=profile;u=99392': GET response code 200
    [22-Dec-2010 12:22:39] Successfully fetched 'http://www.ecazorla.com/insomnio/foros/profile.php?mode=viewprofile&u=181259': GET response code 200
    [22-Dec-2010 12:47:24] Got no response code when fetching [url="http://www.libertytraffic.ru/billing/order.php?type=shop&group=1"]http://www.libertytraffic.ru/billing/order...hop&group=1[/url]
    [22-Dec-2010 12:47:24] CURL error (6): Couldn't resolve host 'www.libertytraffic.ru'
    [22-Dec-2010 12:49:33] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 12:49:48] Successfully fetched 'http://bazafile.ru/': GET response code 200
    [22-Dec-2010 12:54:58] Successfully fetched 'http://spinelessfiction.com/forum/index.php?action=profile;u=149601': GET response code 200
    [22-Dec-2010 13:07:52] Successfully fetched 'http://najtanszeocac.net/': GET response code 200
    [22-Dec-2010 13:11:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 13:13:44] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 13:25:22] Successfully fetched 'http://performersparadise.com/paradise/forum/profile.php?mode=viewprofile&u=242443': GET response code 200
    [22-Dec-2010 13:35:55] Successfully fetched 'http://www.ojosymas.com/usefull-info-about-diflucan/': GET response code 200
    [22-Dec-2010 13:56:04] Successfully fetched 'http://selenagomez-fanclub.com/forum/index.php?action=profile;u=119109': GET response code 200
    [22-Dec-2010 14:19:29] Successfully fetched 'http://bestaltimeterwatch.com/': GET response code 200
    [22-Dec-2010 14:28:43] Successfully fetched 'http://www.eddjss.com/forum/member.php?u=149810': GET response code 406
    [22-Dec-2010 14:35:06] Successfully fetched 'http://peter2124morley.insanejournal.com/1100.html': GET response code 200
    [22-Dec-2010 14:42:01] Successfully fetched 'http://promocjebukmacherskietop10.com/': GET response code 200
    [22-Dec-2010 14:51:59] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 14:53:33] Successfully fetched 'http://www.bibliotecka.ru/': GET response code 200
    [22-Dec-2010 15:01:56] Successfully fetched 'http://www.visitwarsaw.viapolonia.pl/forum/profile.php?id=125347': GET response code 200
    [22-Dec-2010 15:19:18] Successfully fetched 'http://www.kravmagabootcamp.com/': GET response code 200
    [22-Dec-2010 15:33:34] Successfully fetched 'http://www.winkeyelash.com/board/index.php?action=profile;u=126259': GET response code 200
    [22-Dec-2010 16:04:10] Successfully fetched 'http://www.evdenevenakliyatt.org/': GET response code 200
    [22-Dec-2010 16:04:56] Successfully fetched 'http://www.neuralstatic.com/phpBB2/profile.php?mode=viewprofile&u=93808': GET response code 200
    [22-Dec-2010 16:08:56] Successfully fetched 'http://vividhust.110mb.com/': GET response code 200
    [22-Dec-2010 16:33:57] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 16:37:57] Successfully fetched 'http://www.hatunca.net/forum/index.php?action=profile;u=58153': GET response code 200
    [22-Dec-2010 16:44:35] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:47:36] Successfully fetched 'http://casino.ru/group/poker/poker_game/blog': GET response code 200
    [22-Dec-2010 16:58:40] Successfully fetched 'http://www.israguides.com/': GET response code 200
    [22-Dec-2010 16:58:42] Successfully fetched 'http://internetmarketing-software.com/': GET response code 200
    [22-Dec-2010 17:00:43] Successfully fetched 'http://www.sms-flirtkontakte.com/': GET response code 200
    [22-Dec-2010 17:09:24] Successfully fetched 'http://furfag.com/forums/profile.php?mode=viewprofile&u=128686': GET response code 200
    [22-Dec-2010 17:36:24] Successfully fetched 'http://livero.pl/': GET response code 200
    [22-Dec-2010 17:39:58] Successfully fetched 'http://www.bespy.be/': GET response code 200
    [22-Dec-2010 17:42:28] Successfully fetched 'http://www.pullwithbothhands.com/phpBB2/profile.php?mode=viewprofile&u=107200': GET response code 200
    [22-Dec-2010 17:56:50] Successfully fetched 'http://www.abercrombiefitchuk.net/': GET response code 200
    [22-Dec-2010 18:03:10] Successfully fetched 'http://www.rus-dom.net/': GET response code 200
    [22-Dec-2010 18:16:15] Successfully fetched 'http://static.atlanticmasters.org/msc//profile.php?mode=viewprofile&u=160636': GET response code 200
    [22-Dec-2010 18:21:01] Successfully fetched 'http://www.pachi-park.com/': GET response code 200
    [22-Dec-2010 18:27:29] Successfully fetched 'http://latesthostgatorcoupons.com/promo-codes-for-hostgator': GET response code 200
    [22-Dec-2010 18:48:48] Successfully fetched 'http://www.prologon.se/forum/index.php?action=profile;u=116162': GET response code 200
    [22-Dec-2010 18:51:00] Successfully fetched 'http://www.evdenevenakliyatt.net/': GET response code 200
    [22-Dec-2010 18:59:47] Successfully fetched 'http://www.myrosebags.com/': GET response code 200
    [22-Dec-2010 19:05:37] Successfully fetched 'http://mistapikavippi.com/': GET response code 200[/size][/font][/color]

    What they were doing – I think – is using the OpenID authentication form and putting in the site they wanted to increase traffic to as the authority / verification site. OpenID would then try to verify them. The transaction would fail of course, but not before registering a hit on the fake verification site.
    I shudder to think at how many porn and gambling sites now have my site in their log files. It's no wonder I've been getting a huge increase in spam lately. Sigh.
    Needless to say, OpenID comments are no longer allowed here.
    (There could of course be other problems, but this was definitely not helping. Since I've turned it off, the server seems much more snappy.)
  15. Like
    NIM got a reaction from Legolash2o in Big thank you to Lego   
    Agreed, I would also like to thank Lego for his kind support to this forums and commitment to WinKit development.
    All the best!
    Nik
  16. Like
    NIM reacted to deema in Splinter - Anything Can Be Anything   
    Splinter is the next generation desktop interface / visual medium / imagery based programming "language". It allows for any image to be placed anywhere, open to any location, and be hotlinked to anything. Below are screenshots, videos, and the 100% free direct download link.
    Icon-ic Edition Splinter Promo Image

    The 3 Branches of Splinter

    Icon-ic Edition Splinter Page 9

    Icon-ic Edition Splinter Menu Page

    Arkham Edition Menu Page

    Splinter Features, Functionalities, and Usages

    Icon-ic Edition Promo Vid
    http://www.youtube.com/watch?v=dXZkaNQX7Ho
    Splinter installer 32 and 64bit (only used for folder path creation. Use portable if have any issues)
    http://www.deviantar...don-d4qcwqt.zip
    Splinter Portable
    http://www.deviantar...don-d4p7jfq.zip
    Icon-ic Edition - the splinterface download
    http://www.deviantar...don-d4urs1h.zip
  17. Like
    NIM reacted to Legolash2o in Windows 7 Toolkit Question (name change)   
    Damn also 'WinToolkit' is free.
  18. Like
    NIM reacted to ricktendo in Windows 7 Toolkit Question (name change)   
    WinKit
  19. Like
    NIM reacted to ricktendo in Windows 7 Toolkit Question (name change)   
    Windows Metro Toolkit (just give it a metro look and feel like MetroTwit)
    Windows Deployment Toolkit
    Windows Administrative Toolkit
    Windows Toolkit
  20. Like
    NIM reacted to Eric666 in Windows 7 Toolkit Question (name change)   
    I like the current name, but it is easy to think of some alternatives:
    - WIT: Windows Integration Toolkit
    - WIM: Windows Installation Manager
    - WISM: Windows Installation Source Modifier
    or any combination of used terms...
    Regards, Eric666
    Edit:
    - WISE: Windows Installation Source Enhancer
  21. Like
    NIM got a reaction from Birmalage in OpenID login method removed!   
    Is it just me, or this site is really loading faster now?
  22. Like
    NIM got a reaction from Claighfrielia in Server Maintenance notice!   
    Dear visitors,
    we are informing you about some upcoming scheduledmaintenance.
    We are going to be taking our server down for some time toreplace failed disks and preform a few diagnostics regarding our issues we've been experiencing lately.
    We will be starting this at approximately 20:00 CST and expect the server tobe offline until approximately 21:00 CST.
    Thank you for your patience and understanding.
  23. Like
    NIM got a reaction from hemeokrmer in OpenID login method removed!   
    Is it just me, or this site is really loading faster now?
  24. Like
    NIM got a reaction from Abnolermed in OpenID login method removed!   
    Is it just me, or this site is really loading faster now?
  25. Like
    NIM reacted to dareckibmw in A lovely discussion...   
    ... good Ol' days!

×
×
  • Create New...